diff --git a/Manifest.files.gz b/Manifest.files.gz index 0b82b58fccf6..0dc8f95c5d48 100644 Binary files a/Manifest.files.gz and b/Manifest.files.gz differ diff --git a/app-admin/Manifest.gz b/app-admin/Manifest.gz index 1ddaf3efd842..ddd33eeaf5e8 100644 Binary files a/app-admin/Manifest.gz and b/app-admin/Manifest.gz differ diff --git a/app-admin/aerospike-amc-community/files/amc.init2 b/app-admin/aerospike-amc-community/files/amc.init2 deleted file mode 100644 index 3e3bdd9920a3..000000000000 --- a/app-admin/aerospike-amc-community/files/amc.init2 +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -config_file=${config_file:-/etc/amc/config/gunicorn_config.py} -run_dir=${run_dir:-/run} - -command="/usr/bin/gunicorn" -command_args="--daemon --config ${config_file} flaskapp:app" -command_progress="true" -retry='TERM/30/KILL/5' -pidfile=${run_dir}/${SVCNAME}.pid -user=${user:-root} -group=${group:-root} -start_stop_daemon_args="--user ${user} --group ${group}" -required_files="${config_file}" - -depend() { - use net -} - -start_post() { - ewaitfile 60 "${pidfile}" -} diff --git a/app-admin/graylog/Manifest b/app-admin/graylog/Manifest index 0020ac241a18..9ee1d46d882e 100644 --- a/app-admin/graylog/Manifest +++ b/app-admin/graylog/Manifest @@ -1,2 +1,2 @@ DIST graylog-3.3.8.tgz 129314297 BLAKE2B 21eaf45b396b11ad5c42efad790390b643505ac7ecc24332813784443ba3b5aeed911fae07beb270f598341d577469f9a5fdbe92101e64939e6646884b7f7fc8 SHA512 feda3dafc3af249e54e8240ea20a8fd4e96c80901b45842cf8ec4ee7a5b33646a391a19a23a06b0e5fb4bf29c0d1c8d7cb87f2ee169ef17ac5b38fbd00682ead -DIST graylog-4.0.0_rc2.tar.gz 163146127 BLAKE2B a2b80110927ddad94e17ee20aa620564dd71b060a1a6332c6491e82b54c962971f6626f6161a479e7d3d7d2483b6d66b0fbf0d4c4534b12a721fb543cdc8977d SHA512 48260976c2167ebf36141df7d0cf219c1281dbeb7f5033d3976865c1d360b179519466696d8690f9d9c1a377888774db9775eec6a05857159fad7689d8e81d4f +DIST graylog-4.0.0.tgz 163267939 BLAKE2B 354cb24d4a0ac87378d94eeb2ed0f770a8d2acea9678677f795484edaa329cc0072d0151a0a53e5242a8e334ed6de81eedc8f17d0c61741729cabb96f62bf0c3 SHA512 426dc3ca393308b9d173f9956799f74b46bdb845f74f400555d388c4090777c7862d16bfd6c701a1fdec7a76a901fdd801f18fd19a73db80e855dd1fb44de4d4 diff --git a/app-admin/graylog/graylog-4.0.0_rc2.ebuild b/app-admin/graylog/graylog-4.0.0.ebuild similarity index 90% rename from app-admin/graylog/graylog-4.0.0_rc2.ebuild rename to app-admin/graylog/graylog-4.0.0.ebuild index 27a8a1c01f2a..4112c68bb70e 100644 --- a/app-admin/graylog/graylog-4.0.0_rc2.ebuild +++ b/app-admin/graylog/graylog-4.0.0.ebuild @@ -3,15 +3,13 @@ EAPI=7 -MY_PV="4.0.0-rc.2" - DESCRIPTION="Free and open source log management" HOMEPAGE="https://www.graylog.org" -SRC_URI="https://downloads.graylog.org/releases/graylog/graylog-${MY_PV}.tgz -> ${P}.tar.gz" +SRC_URI="https://downloads.graylog.org/releases/graylog/${P}.tgz" LICENSE="GPL-3" SLOT="0" -#KEYWORDS="~amd64 ~ppc64 ~x86" +KEYWORDS="~amd64 ~ppc64 ~x86" RESTRICT="strip" RDEPEND="!app-admin/graylog2 @@ -20,15 +18,13 @@ RDEPEND="!app-admin/graylog2 >=virtual/jdk-1.8:*" DOCS=( - COPYING README.markdown UPGRADING.rst + README.markdown UPGRADING.rst ) GRAYLOG_DATA_DIR="/var/lib/graylog" GRAYLOG_INSTALL_DIR="/usr/share/graylog" QA_PREBUILT="${GRAYLOG_INSTALL_DIR}/lib/sigar/libsigar*" -S="${WORKDIR}/graylog-${MY_PV}" - src_prepare() { default diff --git a/app-admin/puppet-agent/files/puppet.initd2 b/app-admin/puppet-agent/files/puppet.initd2 new file mode 100644 index 000000000000..90ebd0481701 --- /dev/null +++ b/app-admin/puppet-agent/files/puppet.initd2 @@ -0,0 +1,29 @@ +#!/sbin/openrc-run +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +PUPPET_PID_DIR="${PUPPET_PID_DIR:-/run/puppet}" + +pidfile="${PUPPET_PID_DIR}/puppet.pid" +PUPPET_LOG_DIR="/var/log/puppetlabs/puppet" + +command="/usr/bin/puppet" +extra_started_commands="reload" + +command_args="agent --pidfile ${pidfile} --confdir /etc/puppetlabs/puppet ${PUPPET_EXTRA_OPTS}" + +depend() { + need localmount + use dns logger puppetserver netmount nfsmount +} + +start_pre() { + checkpath --directory --owner puppet:puppet "${PUPPET_PID_DIR}" + checkpath --directory --owner puppet:puppet --mode 750 ${PUPPET_LOG_DIR} +} + +reload() { + ebegin "Reloading $RC_SVCNAME" + start-stop-daemon --signal HUP --pidfile "${pidfile}" + eend $? +} diff --git a/app-admin/puppet-agent/puppet-agent-6.19.1.ebuild b/app-admin/puppet-agent/puppet-agent-6.19.1-r1.ebuild similarity index 93% rename from app-admin/puppet-agent/puppet-agent-6.19.1.ebuild rename to app-admin/puppet-agent/puppet-agent-6.19.1-r1.ebuild index d2a6b4ff967b..71f2744a5a5e 100644 --- a/app-admin/puppet-agent/puppet-agent-6.19.1.ebuild +++ b/app-admin/puppet-agent/puppet-agent-6.19.1-r1.ebuild @@ -61,10 +61,10 @@ src_install() { doins -r opt/* fperms 0750 /opt/puppetlabs/puppet/cache # init - newinitd "${FILESDIR}/puppet.initd" puppet + newinitd "${FILESDIR}/puppet.initd2" puppet systemd_dounit lib/systemd/system/puppet.service systemd_dounit lib/systemd/system/pxp-agent.service - systemd_newtmpfilesd "${FILESDIR}/puppet-agent.conf.tmpfilesd" puppet-agent.conf + systemd_newtmpfilesd usr/lib/tmpfiles.d/puppet-agent.conf puppet-agent.conf # symlinks chmod 0755 -R "${D}/opt/puppetlabs/puppet/bin/" chmod 0755 "${D}//opt/puppetlabs/puppet/lib/virt-what/virt-what-cpuid-helper" diff --git a/app-admin/r10k/Manifest b/app-admin/r10k/Manifest index 707c5c1be918..0143c5caf1c3 100644 --- a/app-admin/r10k/Manifest +++ b/app-admin/r10k/Manifest @@ -1 +1 @@ -DIST r10k-3.4.1.gem 210944 BLAKE2B 7e4df4786a332264738f3483b9f2e14739cde2a9c1cf33788692ecf6f783b956856cefeb603f3d29338104bc9a89b0a6773e922189a412e01131cf7c77b58823 SHA512 b8d214cd6b6bc9ce00b9de22c706213be4c480cdf293b4fb47c0ff0e0dafcb3e16fe2b1ceb8d3abd22810630c4163919ded80ff697dff728b165821de61502f8 +DIST r10k-3.7.0.gem 217600 BLAKE2B 03af5829d027cf4e84c6a04a3977a4fe97c030c1668f6b77792553fbb23265684232215b4fad1b48282bf55fcc14afe65906ca745722bf14436d27a294b47cc6 SHA512 31d96b69db34e79439a25b83bae73011b81b0e2eb412f944fc68ef4d087f4715ba30e3821c2a12b79fadf01b95a6922bc7cb5c0ed1c3f6ae8e29785d180925ad diff --git a/app-admin/r10k/r10k-3.4.1.ebuild b/app-admin/r10k/r10k-3.7.0-r2.ebuild similarity index 76% rename from app-admin/r10k/r10k-3.4.1.ebuild rename to app-admin/r10k/r10k-3.7.0-r2.ebuild index ab8b11160cc8..0d4f8948a754 100644 --- a/app-admin/r10k/r10k-3.4.1.ebuild +++ b/app-admin/r10k/r10k-3.7.0-r2.ebuild @@ -9,6 +9,7 @@ RUBY_FAKEGEM_RECIPE_DOC="none" RUBY_FAKEGEM_RECIPE_TEST="rspec3" RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" +RUBY_FAKEGEM_EXTRAINSTALL=locales inherit ruby-fakegem @@ -21,9 +22,11 @@ KEYWORDS="~amd64" IUSE="+git" ruby_add_rdepend " - ~dev-ruby/colored-1.2 + ~dev-ruby/colored2-3.1.2 >=dev-ruby/cri-2.15.10:0 >=dev-ruby/gettext-setup-0.24:0 + >=dev-ruby/fast_gettext-1.1:0 + >=dev-ruby/ruby-gettext-3.0.2:0 ~dev-ruby/log4r-1.1.10 >=dev-ruby/multi_json-1.10:0 =dev-ruby/puppet_forge-2.3* @@ -36,7 +39,10 @@ ruby_add_bdepend "test? ( RDEPEND="${RDEPEND} git? ( >=dev-vcs/git-1.6.6 )" all_ruby_prepare() { - sed -i -e '/s.files/d' ${RUBY_FAKEGEM_GEMSPEC} || die + sed -e '/s.files/d' \ + -e '/fast_gettext/ s/1.1.0/1.1/' \ + -e "/gettext/ s/'< 3.3.0'//" \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die # Avoid specs for unpackaged rugget git provider rm -rf spec/unit/git_spec.rb spec/unit/git/rugged || die diff --git a/app-admin/syslog-ng/Manifest b/app-admin/syslog-ng/Manifest index f2c908834389..77b7e1de5549 100644 --- a/app-admin/syslog-ng/Manifest +++ b/app-admin/syslog-ng/Manifest @@ -1,3 +1,4 @@ DIST syslog-ng-3.26.1.tar.gz 5040993 BLAKE2B 235971547c8febe61191014d971b9e5d71560f51ebc3a74fbae1c95b86653f1de8d0b99788f5b00cc75926dc67e7a80f650e9d2d12f191a4400c5b8edbbd01b7 SHA512 2cf6a8bd70addec3bef0888539f4a4686c30655698835d0c211ea929a0cae91a6f3dc9903f29fe717fd9d48b5cdc9918796f196ca84af6f5733bedff09ffab5a DIST syslog-ng-3.28.1.tar.gz 5149671 BLAKE2B bfc33f2a595cb4fbcc5a69b60d283673922873434b21ca8ce9685a0f54b355f162b11242704419349a561f412573c84df30a49a4dc0cc95699e98720e3e65247 SHA512 d70b435a6c9d1d0d22ecebc051dc294b6e7f841159edabf229c772c40342a28014ea1599b2277f0514236f545bac63c9879988fd85d634e9ab4fe4f079c984cb DIST syslog-ng-3.29.1.tar.gz 5111614 BLAKE2B 1dba62290d6354d0cda7d43783327a19f69e05963c6d2e75f42c61c30984d49d28f1c6474e68ccdd806f38022bf6799e69e12f2444da391b2bccb736ca597c72 SHA512 c8ec6527cab9e46effe23aaa1306b5bde1e13c3e62a092a62af630a744cc41e81d861e6e2ebfbaad8a9199d3b75ba4ac5fb4b4215d03f80a41f57a2e7a074a49 +DIST syslog-ng-3.30.1.tar.gz 5707042 BLAKE2B 3e6ee58b3732ae4863de43c7d22799a74074e94dbbf735368c09c11382b641a5554a4a25ad836b4ac25c8a4f64781dbfb1d9ddd6961ba3aa70c4213cfec81bfd SHA512 ac7ed4978c6db9464add30aa7aeb71a646f841593b02884c8d4ad34c0508c8d3243bcbe6ee98e81c04698895305334eadd9e624ba71e510c14d79155723efb52 diff --git a/app-admin/syslog-ng/syslog-ng-3.30.1.ebuild b/app-admin/syslog-ng/syslog-ng-3.30.1.ebuild new file mode 100644 index 000000000000..a9abc617c791 --- /dev/null +++ b/app-admin/syslog-ng/syslog-ng-3.30.1.ebuild @@ -0,0 +1,172 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) +inherit autotools python-single-r1 systemd + +MY_PV_MM=$(ver_cut 1-2) +DESCRIPTION="syslog replacement with advanced filtering features" +HOMEPAGE="https://syslog-ng.com/open-source-log-management" +SRC_URI="https://github.com/balabit/syslog-ng/releases/download/${P}/${P}.tar.gz" + +LICENSE="GPL-2+ LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="amqp caps dbi geoip2 http ipv6 json kafka libressl mongodb pacct python redis smtp snmp test spoof-source systemd tcpd" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-libs/glib-2.10.1:2 + >=dev-libs/ivykis-0.42.4 + >=dev-libs/libpcre-6.1:= + !dev-libs/eventlog + amqp? ( >=net-libs/rabbitmq-c-0.8.0:=[ssl] ) + caps? ( sys-libs/libcap ) + dbi? ( >=dev-db/libdbi-0.9.0 ) + geoip2? ( dev-libs/libmaxminddb:= ) + http? ( net-misc/curl ) + json? ( >=dev-libs/json-c-0.9:= ) + kafka? ( >=dev-libs/librdkafka-1.0.0:= ) + mongodb? ( >=dev-libs/mongo-c-driver-1.2.0 ) + python? ( ${PYTHON_DEPS} ) + redis? ( >=dev-libs/hiredis-0.11.0:= ) + smtp? ( net-libs/libesmtp ) + snmp? ( net-analyzer/net-snmp:0= ) + spoof-source? ( net-libs/libnet:1.1= ) + systemd? ( sys-apps/systemd:= ) + tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= )" +DEPEND="${RDEPEND} + test? ( dev-libs/criterion )" +BDEPEND=" + sys-devel/flex + virtual/pkgconfig" + +DOCS=( AUTHORS NEWS.md CONTRIBUTING.md contrib/syslog-ng.conf.{HP-UX,RedHat,SunOS,doc} + contrib/syslog2ng "${T}/syslog-ng.conf.gentoo.hardened" + "${T}/syslog-ng.logrotate.hardened" "${FILESDIR}/README.hardened" ) +PATCHES=( + "${FILESDIR}"/${PN}-3.28.1-net-snmp.patch +) + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_prepare() { + local f + + use python && python_fix_shebang . + + # remove bundled libs + rm -r lib/ivykis || die + + # drop scl modules requiring json + if use !json; then + sed -i -r '/cim|elasticsearch|ewmm|graylog2|loggly|logmatic|netskope|nodejs|osquery|slack/d' scl/Makefile.am || die + fi + + # drop scl modules requiring http + if use !http; then + sed -i -r '/slack|telegram/d' scl/Makefile.am || die + fi + + # use gentoo default path + if use systemd; then + sed -e 's@/etc/syslog-ng.conf@/etc/syslog-ng/syslog-ng.conf@g;s@/var/run@/run@g' \ + -i contrib/systemd/syslog-ng@default || die + fi + + for f in syslog-ng.logrotate.hardened.in syslog-ng.logrotate.in; do + sed \ + -e "s#@GENTOO_RESTART@#$(usex systemd "systemctl kill -s HUP syslog-ng@default" \ + "/etc/init.d/syslog-ng reload")#g" \ + "${FILESDIR}/${f}" > "${T}/${f/.in/}" || die + done + + for f in syslog-ng.conf.gentoo.hardened.in \ + syslog-ng.conf.gentoo.in; do + sed -e "s/@SYSLOGNG_VERSION@/${MY_PV_MM}/g" "${FILESDIR}/${f}" > "${T}/${f/.in/}" || die + done + + default + eautoreconf +} + +src_configure() { + local myconf=( + --disable-docs + --disable-java + --disable-java-modules + --disable-riemann + --enable-manpages + --localstatedir=/var/lib/syslog-ng + --sysconfdir=/etc/syslog-ng + --with-embedded-crypto + --with-ivykis=system + --with-module-dir=/usr/$(get_libdir)/syslog-ng + --with-pidfile-dir=/var/run + --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" + $(use_enable amqp) + $(usex amqp --with-librabbitmq-client=system --without-librabbitmq-client) + $(use_enable caps linux-caps) + $(use_enable dbi sql) + $(use_enable geoip2) + $(use_enable http) + $(use_enable ipv6) + $(use_enable json) + $(use_enable kafka) + $(use_enable mongodb) + $(usex mongodb --with-mongoc=system "--without-mongoc --disable-legacy-mongodb-options") + $(use_enable pacct) + $(use_enable python) + $(use_enable redis) + $(use_enable smtp) + $(use_enable snmp afsnmp) + $(use_enable spoof-source) + $(use_enable systemd) + $(use_enable tcpd tcp-wrapper) + ) + + econf "${myconf[@]}" +} + +src_install() { + default + + # Install default configuration + insinto /etc/default + doins contrib/systemd/syslog-ng@default + + insinto /etc/syslog-ng + newins "${T}/syslog-ng.conf.gentoo" syslog-ng.conf + + insinto /etc/logrotate.d + newins "${T}/syslog-ng.logrotate" syslog-ng + + newinitd "${FILESDIR}/syslog-ng.rc" syslog-ng + newconfd "${FILESDIR}/syslog-ng.confd" syslog-ng + keepdir /etc/syslog-ng/patterndb.d /var/lib/syslog-ng + find "${D}" -name '*.la' -delete || die + + use python && python_optimize +} + +pkg_postinst() { + # bug #355257 + if ! has_version app-admin/logrotate ; then + elog "It is highly recommended that app-admin/logrotate be emerged to" + elog "manage the log files. ${PN} installs a file in /etc/logrotate.d" + elog "for logrotate to use." + fi + + if use systemd; then + ewarn "The service file for systemd has changed to support multiple instances." + ewarn "To start the default instance issue:" + ewarn "# systemctl start syslog-ng@default" + fi +} diff --git a/app-arch/Manifest.gz b/app-arch/Manifest.gz index e8b3f5eb9d28..7b811b8dd082 100644 Binary files a/app-arch/Manifest.gz and b/app-arch/Manifest.gz differ diff --git a/app-arch/innoextract/Manifest b/app-arch/innoextract/Manifest index 149c2f7dd31a..6bf2e9dbdd77 100644 --- a/app-arch/innoextract/Manifest +++ b/app-arch/innoextract/Manifest @@ -1,2 +1 @@ -DIST innoextract-1.7.tar.gz 195123 BLAKE2B 5dffb49da7ec3f8e48a70d0809e059179e84610dd50397b8ca472b9f5a96a5edd0cf36898f0e513b3f70685829e2b8edbd7d7932c9f1b47706c2929f596867e5 SHA512 5e92625a411a4351dd4639d4b63e8664519c6697122a0679c010412e94a1e5da95324c33be16211f91c2b25b8cea40fe4ba4da5e19c12d0c27a4916159465ca4 -DIST innoextract-1.8.tar.gz 205553 BLAKE2B 223f0997ae00f2a854912befca25595b275ece8e0fe4f4451d6aa3db14ad1ed98474a19c919c56d958e99c0175be647d3eb3c14d7869504405a7bf6db3a35957 SHA512 2c68009333f02a8a677c084e9c95c835d84a73e60c9b0c70fee5f23fd9a7a640cf2aa7e0476c55579774ac7079498fa24668f9388493bbc13415ff5a5b06ac9c +DIST innoextract-1.9.tar.gz 206931 BLAKE2B 1d5f0d13a7cd52262b277263f061ecab85a3419197bceb22938a0d10000578603cc2c2b972a45474027cfea8e43b8bf89d680035034785210842477b147811fa SHA512 2b18f7bb7f50744bcb1bdcd25e57e0760193b179c77b55e0f63c537e55afc98de3b0380da3cae470ce97660ed41a7ffbb48c8c25329c9ce9b3811d9aec74bcde diff --git a/app-arch/innoextract/files/innoextract-1.9-fix-linkage.patch b/app-arch/innoextract/files/innoextract-1.9-fix-linkage.patch new file mode 100644 index 000000000000..79ecd805f49d --- /dev/null +++ b/app-arch/innoextract/files/innoextract-1.9-fix-linkage.patch @@ -0,0 +1,17 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index be9f08f..f7ce42a 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -316,12 +316,6 @@ if(NOT MSVC) + + endif() + +-if($ENV{PORTAGE_REPO_NAME} MATCHES "gentoo") +- # Meh +- unset(LIBRARIES) +-endif() +- +- + # All sources: + + set(DOCUMENTATION 0) # never build these diff --git a/app-arch/innoextract/innoextract-1.7.ebuild b/app-arch/innoextract/innoextract-1.7.ebuild deleted file mode 100644 index de8c21556274..000000000000 --- a/app-arch/innoextract/innoextract-1.7.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils - -DESCRIPTION="A tool to unpack installers created by Inno Setup" -HOMEPAGE="http://constexpr.org/innoextract/" -SRC_URI="http://constexpr.org/innoextract/files/${P}.tar.gz" - -LICENSE="ZLIB" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug +iconv +lzma" - -RDEPEND=" - dev-libs/boost:= - iconv? ( virtual/libiconv ) - lzma? ( app-arch/xz-utils )" -DEPEND="${RDEPEND}" - -DOCS=( README.md CHANGELOG ) - -src_configure() { - local mycmakeargs=( - -DDEBUG=$(usex debug) - -DSET_OPTIMIZATION_FLAGS=OFF - -DSTRICT_USE=ON - -DUSE_LZMA=$(usex lzma) - -DWITH_CONV=$(usex iconv iconv builtin) - ) - - cmake-utils_src_configure -} diff --git a/app-arch/innoextract/innoextract-1.8.ebuild b/app-arch/innoextract/innoextract-1.9.ebuild similarity index 85% rename from app-arch/innoextract/innoextract-1.8.ebuild rename to app-arch/innoextract/innoextract-1.9.ebuild index 5cf62179ba29..31ff8072913f 100644 --- a/app-arch/innoextract/innoextract-1.8.ebuild +++ b/app-arch/innoextract/innoextract-1.9.ebuild @@ -11,15 +11,19 @@ SRC_URI="https://constexpr.org/innoextract/files/${P}.tar.gz" LICENSE="ZLIB" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="debug +iconv +lzma" RDEPEND=" - dev-libs/boost:= + dev-libs/boost:=[bzip2,zlib] iconv? ( virtual/libiconv ) lzma? ( app-arch/xz-utils )" DEPEND="${RDEPEND}" +PATCHES=( + "${FILESDIR}/${PN}-1.9-fix-linkage.patch" +) + src_configure() { local mycmakeargs=( -DDEBUG=$(usex debug) diff --git a/app-backup/Manifest.gz b/app-backup/Manifest.gz index ddb50277f4a9..66b38d7603a5 100644 Binary files a/app-backup/Manifest.gz and b/app-backup/Manifest.gz differ diff --git a/app-backup/borgmatic/Manifest b/app-backup/borgmatic/Manifest index 4f5713fb2652..1760b0e2d71f 100644 --- a/app-backup/borgmatic/Manifest +++ b/app-backup/borgmatic/Manifest @@ -1,2 +1,2 @@ DIST borgmatic-1.5.10.tar.gz 71743 BLAKE2B b2b5f9135a15730ca7ddddeaa7f621f82207f1dcf383c3be7459eb39dbffc85a310184a4ddce3fb0bd47aa213cb588eb3f3e2f73418659330a421b7da5b87698 SHA512 52436535810ce42f5ab30ae8a4705005e8c7a5d91d52520aab4160320215196cdc088dfae1a21a0d65d0161fb2bb3c9b984cfe2cb5204f7b9bd0ed27c3a38c5b -DIST borgmatic-1.5.9.tar.gz 71857 BLAKE2B c30c2629e327168ee81e9ecc26c811c5bab7369063f5711cd79567922f21d4e5c0980fe34021340d94923cea85ab0c307f9f348268c3f2063d084d0360e5fdfa SHA512 a1ea62ffdc1457fc1e7b964a474bc25d2b2d3d153ba2026018d5081011acf8d6d1329a440c2616e201ebf0351bf2f12a1e37ec2477a6f5da44de315ec3bb0c3a +DIST borgmatic-1.5.11.tar.gz 72985 BLAKE2B fac7e403a4338fc46955d3b82e12e0fc983a11edbb51dc74dcfb6c28818a655b50f7445b28033a966e7e27e2998b062967df97a51f4c362f0d7eac83a19386de SHA512 a945d19bf2fbd617e7de5827d75c8a69f5902c6dfa5d33344b61e680e97636c4a5337d759a372a70b6d2c792a1e7fbc168eedef5e1ae64cac702d313329bca9e diff --git a/app-backup/borgmatic/borgmatic-1.5.9.ebuild b/app-backup/borgmatic/borgmatic-1.5.11.ebuild similarity index 92% rename from app-backup/borgmatic/borgmatic-1.5.9.ebuild rename to app-backup/borgmatic/borgmatic-1.5.11.ebuild index e1682b5e20da..7ded25f08aac 100644 --- a/app-backup/borgmatic/borgmatic-1.5.9.ebuild +++ b/app-backup/borgmatic/borgmatic-1.5.11.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6..8} ) +PYTHON_COMPAT=( python3_{7..9} ) DISTUTILS_SINGLE_IMPL=1 DISTUTILS_USE_SETUPTOOLS="rdepend" @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="amd64" +KEYWORDS="~amd64" # Fails due to problems with dev-python/flexmock-0.10.4; see Bug #740128 RESTRICT="test" @@ -28,12 +28,12 @@ RDEPEND="app-backup/borgbackup dev-python/requests[${PYTHON_USEDEP}] - hydrapolic@gmail.com - Tomáš Mózes - - - proxy-maint@gentoo.org - Proxy Maintainers + conikost@gentoo.org + Conrad Kostecki - Enable libaio support + Add support for AIO. + Add support for AttachSQL. + Add support for Drizzles. + Add support for large files. akopytov/sysbench diff --git a/app-benchmarks/sysbench/sysbench-1.0.19.ebuild b/app-benchmarks/sysbench/sysbench-1.0.19.ebuild deleted file mode 100644 index bad79a67a164..000000000000 --- a/app-benchmarks/sysbench/sysbench-1.0.19.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools pax-utils - -DESCRIPTION="System performance benchmark" -HOMEPAGE="https://github.com/akopytov/sysbench" -SRC_URI="https://github.com/akopytov/sysbench/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="aio mysql postgres test" -RESTRICT="!test? ( test )" - -RDEPEND="aio? ( dev-libs/libaio ) - mysql? ( dev-db/mysql-connector-c:= ) - postgres? ( dev-db/postgresql:= ) - dev-lang/luajit:2" -DEPEND="${RDEPEND} - dev-libs/concurrencykit - dev-libs/libxslt - test? ( dev-util/cram )" -BDEPEND="sys-devel/libtool - virtual/pkgconfig" - -src_prepare() { - default - - # remove bundled libs - rm -r third_party/luajit/luajit third_party/concurrency_kit/ck third_party/cram || die - - eautoreconf -} - -src_configure() { - local myeconfargs=( - $(use_enable aio) - $(use_with mysql) - $(use_with postgres pgsql) - --without-attachsql - --without-drizzle - --without-oracle - --with-system-luajit - --with-system-ck - ) - - econf "${myeconfargs[@]}" -} - -src_test() { - emake check test -} - -src_install() { - default - - pax-mark m "${ED}"/usr/bin/${PN} -} diff --git a/app-benchmarks/sysbench/sysbench-1.0.20-r100.ebuild b/app-benchmarks/sysbench/sysbench-1.0.20-r100.ebuild new file mode 100644 index 000000000000..7926abfdf9a3 --- /dev/null +++ b/app-benchmarks/sysbench/sysbench-1.0.20-r100.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( luajit ) +PYTHON_COMPAT=( python3_{6..9} ) + +inherit autotools lua-single python-single-r1 + +DESCRIPTION="A scriptable multi-threaded benchmark tool based on LuaJIT" +HOMEPAGE="https://github.com/akopytov/sysbench" +SRC_URI="https://github.com/akopytov/sysbench/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+aio attachsql drizzle +largefile mysql postgres test" +REQUIRED_USE=" + ${LUA_REQUIRED_USE} + ${PYTHON_REQUIRED_USE} +" +RESTRICT="!test? ( test )" + +RDEPEND=" + aio? ( dev-libs/libaio ) + mysql? ( dev-db/mysql-connector-c:= ) + postgres? ( dev-db/postgresql:= ) + test? ( ${PYTHON_DEPS} ) + ${LUA_DEPS} +" +DEPEND=" + dev-libs/concurrencykit + dev-libs/libxslt + test? ( + $(python_gen_cond_dep ' + dev-util/cram[${PYTHON_USEDEP}] + ') + ) + ${RDEPEND} +" +BDEPEND=" + sys-devel/libtool + virtual/pkgconfig +" + +pkg_setup() { + lua-single_pkg_setup + use test && python-single-r1_pkg_setup +} + +src_prepare() { + default + + rm -r third_party/{concurrency_kit/ck,cram,luajit/luajit} || die + + eautoreconf +} + +src_configure() { + # Current versions of 'dev-db/oracle-instantclient' aren't supported. + # See: https://github.com/akopytov/sysbench/issues/390. + local myeconfargs=( + --disable-rpath + $(use_enable aio) + $(use_enable largefile) + $(use_with attachsql) + $(use_with drizzle) + $(use_with mysql) + $(use_with postgres pgsql) + --with-system-ck + --with-system-luajit + --without-oracle + LUAJIT_CFLAGS="$(lua_get_CFLAGS)" + LUAJIT_LIBS="$(lua_get_LIBS)" + ) + + econf "${myeconfargs[@]}" +} + +src_test() { + emake check test +} diff --git a/app-benchmarks/sysbench/sysbench-1.0.20.ebuild b/app-benchmarks/sysbench/sysbench-1.0.20.ebuild new file mode 100644 index 000000000000..3d882dede761 --- /dev/null +++ b/app-benchmarks/sysbench/sysbench-1.0.20.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit autotools python-single-r1 + +DESCRIPTION="A scriptable multi-threaded benchmark tool based on LuaJIT" +HOMEPAGE="https://github.com/akopytov/sysbench" +SRC_URI="https://github.com/akopytov/sysbench/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="+aio attachsql drizzle +largefile mysql postgres test" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-lang/luajit:2 + aio? ( dev-libs/libaio ) + mysql? ( dev-db/mysql-connector-c:= ) + postgres? ( dev-db/postgresql:= ) + test? ( ${PYTHON_DEPS} ) +" +DEPEND=" + dev-libs/concurrencykit + dev-libs/libxslt + test? ( + $(python_gen_cond_dep ' + dev-util/cram[${PYTHON_USEDEP}] + ') + ) + ${RDEPEND} +" +BDEPEND=" + sys-devel/libtool + virtual/pkgconfig +" + +src_prepare() { + default + + rm -r third_party/{concurrency_kit/ck,cram,luajit/luajit} || die + + eautoreconf +} + +src_configure() { + # Current versions of 'dev-db/oracle-instantclient' aren't supported. + # See: https://github.com/akopytov/sysbench/issues/390. + local myeconfargs=( + --disable-rpath + $(use_enable aio) + $(use_enable largefile) + $(use_with attachsql) + $(use_with drizzle) + $(use_with mysql) + $(use_with postgres pgsql) + --with-system-ck + --with-system-luajit + --without-oracle + ) + + econf "${myeconfargs[@]}" +} + +src_test() { + emake check test +} diff --git a/app-benchmarks/sysbench/sysbench-9999.ebuild b/app-benchmarks/sysbench/sysbench-9999.ebuild deleted file mode 100644 index 20702594cf13..000000000000 --- a/app-benchmarks/sysbench/sysbench-9999.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools git-r3 pax-utils - -DESCRIPTION="System performance benchmark" -HOMEPAGE="https://github.com/akopytov/sysbench" -EGIT_REPO_URI="https://github.com/akopytov/sysbench.git" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="" -IUSE="aio mysql postgres test" -RESTRICT="!test? ( test )" - -RDEPEND="aio? ( dev-libs/libaio ) - mysql? ( dev-db/mysql-connector-c:= ) - postgres? ( dev-db/postgresql:= ) - dev-lang/luajit:=" -DEPEND="${RDEPEND} - dev-libs/concurrencykit - dev-libs/libxslt - sys-devel/libtool - virtual/pkgconfig - test? ( dev-util/cram )" - -src_prepare() { - default - - # remove bundled libs - rm -r third_party/luajit/luajit third_party/concurrency_kit/ck third_party/cram || die - - eautoreconf -} - -src_configure() { - local myeconfargs=( - $(use_enable aio) - $(use_with mysql) - $(use_with postgres pgsql) - --with-system-luajit - --with-system-ck - ) - - econf "${myeconfargs[@]}" -} - -src_test() { - emake check test -} - -src_install() { - default - - pax-mark m "${ED}"/usr/bin/${PN} -} diff --git a/app-cdr/Manifest.gz b/app-cdr/Manifest.gz index 705429c3f4fb..e64341f8e2a2 100644 Binary files a/app-cdr/Manifest.gz and b/app-cdr/Manifest.gz differ diff --git a/app-cdr/bchunk/bchunk-1.2.2.ebuild b/app-cdr/bchunk/bchunk-1.2.2.ebuild index fac20a0e3c24..2ad0cacac6f3 100644 --- a/app-cdr/bchunk/bchunk-1.2.2.ebuild +++ b/app-cdr/bchunk/bchunk-1.2.2.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit toolchain-funcs + DESCRIPTION="Convert CD images from bin/cue to iso+wav/cdr" HOMEPAGE="http://he.fi/bchunk/" SRC_URI="http://he.fi/bchunk/${P}.tar.gz" @@ -13,6 +15,13 @@ KEYWORDS="amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-maco DOCS=( "${PN}.spec" README ChangeLog ) +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS}" \ + LD="$(tc-getCC)" +} + src_install() { dobin "${PN}" doman "${PN}.1" diff --git a/app-cdr/bchunk/metadata.xml b/app-cdr/bchunk/metadata.xml index 9807a3e2fa77..8b0ea11bac68 100644 --- a/app-cdr/bchunk/metadata.xml +++ b/app-cdr/bchunk/metadata.xml @@ -1,7 +1,16 @@ - -binchunker converts a CD image in a ".bin / .cue" format -(sometimes ".raw / .cue") to a set of .iso and .cdr tracks. + + alexey+gentoo@asokolov.org + Alexey Sokolov + + + proxy-maint@gentoo.org + Proxy Maintainers + + + binchunker converts a CD image in a ".bin / .cue" format + (sometimes ".raw / .cue") to a set of .iso and .cdr tracks. + diff --git a/app-crypt/Manifest.gz b/app-crypt/Manifest.gz index a6ebfb0a9c77..05bfc90a5129 100644 Binary files a/app-crypt/Manifest.gz and b/app-crypt/Manifest.gz differ diff --git a/app-crypt/swtpm/Manifest b/app-crypt/swtpm/Manifest index 3a8b2fa15a37..f4465c11d3c8 100644 --- a/app-crypt/swtpm/Manifest +++ b/app-crypt/swtpm/Manifest @@ -1 +1 @@ -DIST swtpm-0.5.0.tar.gz 309011 BLAKE2B 3977acef1e68adca82ed5b51adb5f8787f6eb874ee16768b5b4bbbb13b043f8a39f534b2aa99ef92fb1608f0c4c805b51bb8fbc83297b71afcec2d99faff03d9 SHA512 ba7dafc9a9ddd28252615028a45fe3e68efd12df948c1e8ec938caabb840406a7a1935e1e4a6e1b6b8848bee08450673138dc5a0d63f0447f5e0e07350e4aed7 +DIST swtpm-0.5.1.tar.gz 309464 BLAKE2B 630a9add9a17e016f0158666bd3f4eafa773b7a2645820346d5f2847023310f8df4c2491184c5f5d02a83aa2bb53f8c266e5f2a6b07ab92502f08c7f1fa697ea SHA512 8a034b1da916797b9869a4ff478a4c7093b1343ce2556054d2228214520f0e2a63a1d69709bf2cc62fe45710dd9a41c0eee488af9396e8baf8099e697593638c diff --git a/app-crypt/swtpm/swtpm-0.5.0.ebuild b/app-crypt/swtpm/swtpm-0.5.1.ebuild similarity index 89% rename from app-crypt/swtpm/swtpm-0.5.0.ebuild rename to app-crypt/swtpm/swtpm-0.5.1.ebuild index eb05b36e0f16..9c7f465f8e40 100644 --- a/app-crypt/swtpm/swtpm-0.5.0.ebuild +++ b/app-crypt/swtpm/swtpm-0.5.1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7,8,9} ) inherit autotools distutils-r1 @@ -15,7 +15,6 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" IUSE="fuse gnutls libressl seccomp test" - RESTRICT="!test? ( test )" COMMON_DEPEND=" @@ -26,7 +25,7 @@ COMMON_DEPEND=" gnutls? ( dev-libs/libtasn1:= >=net-libs/gnutls-3.1.0[tools] - ) + ) !libressl? ( dev-libs/openssl:0= dev-libs/libtpms[-libressl] @@ -61,7 +60,6 @@ src_prepare() { use test || eapply "${FILESDIR}/${PN}-0.5.0-disable-test-dependencies.patch" default eautoreconf - eautomake } src_configure() { @@ -75,7 +73,7 @@ src_configure() { } src_compile() { -# We want the default src_compile, not the version distutils-r1 exports + # We want the default src_compile, not the version distutils-r1 exports default } @@ -89,6 +87,6 @@ src_install() { } src_test() { -# We want the default src_test, not the version distutils-r1 exports + # We want the default src_test, not the version distutils-r1 exports default } diff --git a/app-crypt/tpm2-pkcs11/Manifest b/app-crypt/tpm2-pkcs11/Manifest index 0fb5a91d657f..244978e5b0d1 100644 --- a/app-crypt/tpm2-pkcs11/Manifest +++ b/app-crypt/tpm2-pkcs11/Manifest @@ -1,2 +1 @@ -DIST tpm2-pkcs11-1.3.2.tar.gz 1260000 BLAKE2B 219af608db4c72b9bd6c471af9499a4e78a4c9ba6afff72681830cd2f6ce174bc684b9b33c16d263bd6069f0f17f3c92afc56b03779aea38236f36232cd0e5ce SHA512 cca15ace5e6c576591c3432eabb0de98f276a334785b021aa28601c9a77686737c23702fd0ac384feeaf71c8966eccc0006ba428b400de58f811848538ffa978 -DIST tpm2-pkcs11-1.4.0.tar.gz 1334539 BLAKE2B 7f165fab37577903da98c5d3c134fe22e0f630e9494061fe8ced3293b96e2c830650090d8aa349c8ce57fea74c07774415279ef5fbde8db628c8607f2b3203cf SHA512 b271500c7aab256edf4b9e070e700bbc8162db070cd8dfe49289db60d8c4527b8e54c794beb8c97fda0d989e095ac6cb790898912993db1906b7139942c87ffb +DIST tpm2-pkcs11-1.5.0.tar.gz 1355121 BLAKE2B 9c00deb62bf30e22ef346bcdf951252913709f6c953f45e68df35cea434e55f79a960fea16aaa46794650c0cceaf979f4250af8cc835e48f34aca5b2306f2685 SHA512 999adf3ea031dfbb0eadefbd6b2c5457bff738bad231efa70218032f851fe5ba466e37bdf47b5bce380c378b97e88b2a76c9b59a264db5c5f380a9ba3cce58a0 diff --git a/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.3.2.ebuild b/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.3.2.ebuild deleted file mode 100644 index 6c4b3e11cd0a..000000000000 --- a/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.3.2.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8} ) -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_REQ_USE="sqlite" - -inherit autotools distutils-r1 - -DESCRIPTION="A PKCS#11 interface for TPM2 hardware" -HOMEPAGE="https://tpm2-software.github.io/" -SRC_URI="https://github.com/tpm2-software/tpm2-pkcs11/releases/download/${PV}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64" - -# Test requires the IBM TPM simulator that's not in portage -RESTRICT="test" - -RDEPEND="app-crypt/p11-kit - app-crypt/tpm2-abrmd - app-crypt/tpm2-tools - app-crypt/tpm2-tss - dev-db/sqlite:3 - dev-libs/openssl - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/pyasn1[${PYTHON_USEDEP}] - dev-python/pyasn1-modules[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}]" - -DEPEND="${RDEPEND}" -BDEPEND="sys-devel/autoconf-archive - virtual/pkgconfig" - -PATCHES=( - "$FILESDIR/${PN}-1.3.2-Remove-WError.patch" -) - -src_prepare() { - default - eautoreconf -} - -src_configure() { -# we need the default version of src_configure, not the one exported -# by distutils-r1 - default -} - -src_compile() { - default - cd "${S}/tools" || die - BUILD_DIR="${S}/tools" python_foreach_impl distutils-r1_python_compile -} - -src_install() { - default - cd "${S}/tools" || die - BUILD_DIR="${S}/tools" python_foreach_impl distutils-r1_python_install - dobin "${S}/tools/tpm2_ptool" - find "${D}" -name '*.la' -delete || die -} diff --git a/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.4.0.ebuild b/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.5.0.ebuild similarity index 81% rename from app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.4.0.ebuild rename to app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.5.0.ebuild index c41eb8817ed0..37841aeebeb0 100644 --- a/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.4.0.ebuild +++ b/app-crypt/tpm2-pkcs11/tpm2-pkcs11-1.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7,8,9} ) DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_REQ_USE="sqlite" @@ -19,20 +19,21 @@ KEYWORDS="~amd64" IUSE="fapi" -# Test requires the IBM TPM simulator that's not in portage +# python-pkcs11 is required but not in Portage. python-pkcs11 in turn requires +# aenum which is ALSO not in portage. Futhermore, aenum has a dead homepage. RESTRICT="test" RDEPEND="app-crypt/p11-kit app-crypt/tpm2-abrmd app-crypt/tpm2-tools[fapi?] !fapi? ( app-crypt/tpm2-tss ) - fapi? ( >=app-crypt/tpm2-tss-3.0.0[fapi] ) + fapi? ( >=app-crypt/tpm2-tss-3.0.1[fapi] ) dev-db/sqlite:3 - dev-libs/openssl + dev-libs/openssl:= dev-python/cryptography[${PYTHON_USEDEP}] dev-python/pyasn1[${PYTHON_USEDEP}] dev-python/pyasn1-modules[${PYTHON_USEDEP}] - dev-python/pyyaml[${PYTHON_USEDEP}]" + dev-python/pyyaml[${PYTHON_USEDEP}] " DEPEND="${RDEPEND}" BDEPEND="sys-devel/autoconf-archive diff --git a/app-crypt/tpm2-tools/Manifest b/app-crypt/tpm2-tools/Manifest index 9f9afbc73bf0..23b297edef55 100644 --- a/app-crypt/tpm2-tools/Manifest +++ b/app-crypt/tpm2-tools/Manifest @@ -1 +1,2 @@ DIST tpm2-tools-4.3.0.tar.gz 881544 BLAKE2B 0415f30845658e84e97a964abebc3082e45fb880c10bec405cd89c7bfa373ace10b669c4af78e7e47f2d2bb62fc7cc34b2e54e392a95c8f9b8956b8c92af6aee SHA512 4e622bbc8642ba7fd93a7343900560fe3779cba03e363d16f391fc8929724a11913d238e3986de06982cbced27c3c2ca8c7e73d75796407b8646c101ccf393a8 +DIST tpm2-tools-5.0.tar.gz 990855 BLAKE2B 5d39bbef0bc6f0d84f37c64c697260343a9f9e134bce015a6b529176195adb907672f35b85382b0a4785e40e368030ac347083086c3799bdfe86dced1ac69848 SHA512 ea57a28a61e28b78cae7067ff58facd8754fafab7a2689fd93f8b3374073b6ac30301a75f8ff5c654800ab469ee6604d0b8a86c310631b9545b816ecaa05968e diff --git a/app-crypt/tpm2-tools/tpm2-tools-5.0.ebuild b/app-crypt/tpm2-tools/tpm2-tools-5.0.ebuild new file mode 100644 index 000000000000..3252b0db14e7 --- /dev/null +++ b/app-crypt/tpm2-tools/tpm2-tools-5.0.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Tools for the TPM 2.0 TSS" +HOMEPAGE="https://github.com/tpm2-software/tpm2-tools" +SRC_URI="https://github.com/tpm2-software/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="+fapi libressl" + +# Integration test are now run as part of the testing suite, which will fail +# because none of the supported TPM emulators are in Portage. In a future +# version of tpm2-tools, swtpm will be supported and the tests can be run. +RESTRICT="test" + +RDEPEND="net-misc/curl:= + >=app-crypt/tpm2-tss-3.0.1:=[fapi?] + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" +PATCHES=( + "${FILESDIR}/${PN}-4.2.1-libressl.patch" + "${FILESDIR}/${PN}-4.3.0-Remove-WError.patch" +) + +src_prepare() { + eautoreconf + default +} + +src_configure() { + econf \ + $(use_enable fapi) \ + $(use_enable !libressl hardening) +} diff --git a/app-crypt/tpm2-tss/files/tpm2-tss-3.0.1-Fix-underquoting-in-configure-ac.patch b/app-crypt/tpm2-tss/files/tpm2-tss-3.0.1-Fix-underquoting-in-configure-ac.patch new file mode 100644 index 000000000000..a593716c97ea --- /dev/null +++ b/app-crypt/tpm2-tss/files/tpm2-tss-3.0.1-Fix-underquoting-in-configure-ac.patch @@ -0,0 +1,22 @@ +diff --git a/configure.ac b/configure.ac +index ff59dd7c..3049032b 100755 +--- a/configure.ac ++++ b/configure.ac +@@ -285,7 +285,7 @@ AC_ARG_ENABLE([integration], + [build and execute integration tests])],, + [enable_integration=no]) + AS_IF([test "x$enable_integration" = "xyes"], +- AS_IF([test "$HOSTOS" = "Linux"], ++ [AS_IF([test "$HOSTOS" = "Linux"], + [ERROR_IF_NO_PROG([ss])], + [ERROR_IF_NO_PROG([sockstat])]) + ERROR_IF_NO_PROG([echo]) +@@ -335,7 +335,7 @@ AS_IF([test "x$enable_integration" = "xyes"], + [AC_MSG_ERROR([No simulator executable found in PATH for testing TCTI.])]) + AC_SUBST([INTEGRATION_TCTI], [$integration_tcti]) + AC_SUBST([INTEGRATION_ARGS], [$integration_args]) +- AC_SUBST([ENABLE_INTEGRATION], [$enable_integration])) ++ AC_SUBST([ENABLE_INTEGRATION], [$enable_integration])]) + AM_CONDITIONAL([ENABLE_INTEGRATION],[test "x$enable_integration" = "xyes"]) + # + # sanitizer compiler flags diff --git a/app-crypt/tpm2-tss/tpm2-tss-3.0.1.ebuild b/app-crypt/tpm2-tss/tpm2-tss-3.0.1.ebuild index 0eb03051233b..824c52730cf3 100644 --- a/app-crypt/tpm2-tss/tpm2-tss-3.0.1.ebuild +++ b/app-crypt/tpm2-tss/tpm2-tss-3.0.1.ebuild @@ -32,6 +32,7 @@ BDEPEND="virtual/pkgconfig PATCHES=( "${FILESDIR}/${PN}-3.0.0-Dont-run-systemd-sysusers-in-Makefile.patch" + "${FILESDIR}/${P}-Fix-underquoting-in-configure-ac.patch" ) pkg_setup() { diff --git a/app-doc/Manifest.gz b/app-doc/Manifest.gz index d3afc0f243db..4fe9aefbdf04 100644 Binary files a/app-doc/Manifest.gz and b/app-doc/Manifest.gz differ diff --git a/app-doc/gnucash-docs/Manifest b/app-doc/gnucash-docs/Manifest index d2f640faf8e1..78b78705394a 100644 --- a/app-doc/gnucash-docs/Manifest +++ b/app-doc/gnucash-docs/Manifest @@ -1,4 +1 @@ -DIST gnucash-docs-3.8b.tar.gz 71058053 BLAKE2B 0a69db02faf6487f2ecc1b5f9a788fb50cec65ff7db53ca9ec6048510156f094c0ce457d1abb4a9a6694060f68780c0336de41dbd0736ad93055cce81b3a66ab SHA512 3c30e88412e17960006517fb7c341220159c45760ca28c79c27c66551451c8ec14e000757f4d9a78c923e10d437351e38dbedaf0a1f3b11bbf5b87d80cb230fe -DIST gnucash-docs-4.0.tar.gz 62498230 BLAKE2B 39d711267a7ec0d45915659db8557fd2871c295aba82601c34878f56c5a24b0f56ffa68a4597e464050e3e59f62411ae6f5efc0870bea2fa46f313f58ed3826b SHA512 4aa4510b86a6bf3a217c9809b73166c0ce777b9f5a506c15f51ca80a0aa45b93e774e1b7c07571ceb0aad6b6df67a4f268d5498874d23653cb0c94620f491d1d -DIST gnucash-docs-4.1.tar.gz 62496616 BLAKE2B c1868c5a639c12fbc77dd8c46d504d9aa66574d577068c781f5c652ac3b385bffb61aede88953f0c9e89369b71d92ee94c7aa553b91e0adcfbb99b43244ce8b4 SHA512 dc63650ed989eec273ab720f802bdcbfdd3041bc4f6bedd02a4575cbc337eb2f264aa05986ecc99e4c7d3007827b213a0f306e3ae38821950dee17bb21b10615 DIST gnucash-docs-4.2.tar.gz 62497632 BLAKE2B 764387cbbc1d072ac3e245a86b78eb484cfa05371dcf4c17d0441bf08e00f85523975c50a88ecde24e9d949572228a723d53fcce7df397553b0e50145be28686 SHA512 e54082dcd7f92d7ca3f31cea5968ecd4167dc9e1e12f23d8684af3e2af4c696d8afed3cf477df771bb11da125ee5887d09ead1edff961ca4bedfb58fd61efdf2 diff --git a/app-doc/gnucash-docs/gnucash-docs-3.8b.ebuild b/app-doc/gnucash-docs/gnucash-docs-3.8b.ebuild deleted file mode 100644 index 8547f41b9a73..000000000000 --- a/app-doc/gnucash-docs/gnucash-docs-3.8b.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools gnome2 optfeature - -DESCRIPTION="Documentation package for GnuCash" -HOMEPAGE="http://www.gnucash.org/" -SRC_URI="https://github.com/Gnucash/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2 FDL-1.1" -KEYWORDS="amd64 ~ppc ~ppc64 x86" -LOCALES=( de it ja pt ru ) -IUSE="${LOCALES[*]/#/l10n_}" - -DEPEND=" - app-text/docbook-xml-dtd - app-text/docbook-xsl-stylesheets - app-text/rarian - dev-libs/libxml2 - dev-libs/libxslt -" - -src_prepare() { - default - eautoreconf -} - -src_compile() { - : -} - -src_install() { - local doc_type my_lang - - for doc_type in help guide; do - for my_lang in C ${L10N}; do - case $my_lang in - # Both help and guides translated - C|de|it|pt) ;; - ru|ja) # Only guides translated - if [[ ${doc_type} = "help" ]] ; then - elog "Help documentation hasn't been translated for $my_lang" - elog "Will do English instead." - continue - fi - ;; - *) - die "Invalid locale: $my_lang" - ;; - esac - - emake -C "${doc_type}/${my_lang}" DESTDIR="${D}" install - done - done - - einstalldocs -} - -pkg_postinst() { - gnome2_pkg_postinst - optfeature "You need dev-java/fop to generate pdf files." dev-java/fop - optfeature "You need gnome-extra/yelp to view the docs." gnome-extra/yelp -} diff --git a/app-doc/gnucash-docs/gnucash-docs-4.0.ebuild b/app-doc/gnucash-docs/gnucash-docs-4.0.ebuild deleted file mode 100644 index ccc9207cc0e9..000000000000 --- a/app-doc/gnucash-docs/gnucash-docs-4.0.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools gnome2 optfeature - -DESCRIPTION="Documentation package for GnuCash" -HOMEPAGE="http://www.gnucash.org/" -SRC_URI="https://github.com/Gnucash/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2 FDL-1.1" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -LOCALES=( de it ja pt ru ) -IUSE="${LOCALES[*]/#/l10n_}" - -DEPEND=" - app-text/docbook-xml-dtd - app-text/docbook-xsl-stylesheets - app-text/rarian - dev-libs/libxml2 - dev-libs/libxslt -" - -src_prepare() { - default - eautoreconf -} - -src_compile() { - : -} - -src_install() { - local doc_type my_lang - - for doc_type in help guide; do - for my_lang in C ${L10N}; do - case $my_lang in - # Both help and guides translated - C|de|it|pt) ;; - ru|ja) # Only guides translated - if [[ ${doc_type} = "help" ]] ; then - elog "Help documentation hasn't been translated for $my_lang" - elog "Will do English instead." - continue - fi - ;; - *) - die "Invalid locale: $my_lang" - ;; - esac - - emake -C "${doc_type}/${my_lang}" DESTDIR="${D}" install - done - done - - einstalldocs -} - -pkg_postinst() { - gnome2_pkg_postinst - optfeature "You need dev-java/fop to generate pdf files." dev-java/fop - optfeature "You need gnome-extra/yelp to view the docs." gnome-extra/yelp -} diff --git a/app-doc/gnucash-docs/gnucash-docs-4.1.ebuild b/app-doc/gnucash-docs/gnucash-docs-4.1.ebuild deleted file mode 100644 index c52b5e0830b3..000000000000 --- a/app-doc/gnucash-docs/gnucash-docs-4.1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools gnome2 optfeature - -DESCRIPTION="Documentation package for GnuCash" -HOMEPAGE="http://www.gnucash.org/" -SRC_URI="https://github.com/Gnucash/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2 FDL-1.1" -KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86" -LOCALES=( de it ja pt ru ) -IUSE="${LOCALES[*]/#/l10n_}" - -DEPEND=" - app-text/docbook-xml-dtd - app-text/docbook-xsl-stylesheets - app-text/rarian - dev-libs/libxml2 - dev-libs/libxslt -" - -src_prepare() { - default - eautoreconf -} - -src_compile() { - : -} - -src_install() { - local doc_type my_lang - - for doc_type in help guide; do - for my_lang in C ${L10N}; do - case $my_lang in - # Both help and guides translated - C|de|it|pt) ;; - ru|ja) # Only guides translated - if [[ ${doc_type} = "help" ]] ; then - elog "Help documentation hasn't been translated for $my_lang" - elog "Will do English instead." - continue - fi - ;; - *) - die "Invalid locale: $my_lang" - ;; - esac - - emake -C "${doc_type}/${my_lang}" DESTDIR="${D}" install - done - done - - einstalldocs -} - -pkg_postinst() { - gnome2_pkg_postinst - optfeature "You need dev-java/fop to generate pdf files." dev-java/fop - optfeature "You need gnome-extra/yelp to view the docs." gnome-extra/yelp -} diff --git a/app-editors/Manifest.gz b/app-editors/Manifest.gz index a85d78791dd6..80899b632b4b 100644 Binary files a/app-editors/Manifest.gz and b/app-editors/Manifest.gz differ diff --git a/app-editors/mousepad/Manifest b/app-editors/mousepad/Manifest index 9da862b189c6..f7966813b6ef 100644 --- a/app-editors/mousepad/Manifest +++ b/app-editors/mousepad/Manifest @@ -1 +1,2 @@ DIST mousepad-0.4.2.tar.bz2 696014 BLAKE2B 2591f177b59147e01502329939365c5f18031f3dc9100baa29cb1da04afbff26cc91cc612ea1e5ebbc2d15754375da6afbd4ae9d96399f41cf06191d7d8d7082 SHA512 f3266018ce61683dc62b6866649f3674cc363ea652de04d3f087341c61cf24fb5eb730411948e354d085792f88b59e3dba7e7712715d92711f750b33d8bfb69a +DIST mousepad-0.4.90.tar.bz2 808320 BLAKE2B 5a639001663d24a9d0ae126f672adb5d3a72825893e0f0d90e263596f214d76f973e0743248efee8562dc04afb09c0519ed649ca5d36b9221569490e289d687f SHA512 e839584782b09ee9d485ca4dcf05e22afb459cba269b3a15fe2dc0e3f3240bc15b1a8d7db92160b735d97d7293e67b0484b50ac3e72946b499dc65ac1097390b diff --git a/app-editors/mousepad/mousepad-0.4.90.ebuild b/app-editors/mousepad/mousepad-0.4.90.ebuild new file mode 100644 index 000000000000..8d5d963fcc26 --- /dev/null +++ b/app-editors/mousepad/mousepad-0.4.90.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnome2-utils xdg-utils + +DESCRIPTION="GTK+-based editor for the Xfce Desktop Environment" +HOMEPAGE="https://git.xfce.org/apps/mousepad/about/" +SRC_URI="https://archive.xfce.org/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +RDEPEND=">=dev-libs/glib-2.45.8:2= + >=xfce-base/xfconf-4.12:= + >=x11-libs/gtk+-3.20:3= + x11-libs/gtksourceview:3.0=" +DEPEND="${RDEPEND} + dev-lang/perl + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" + +pkg_postinst() { + gnome2_schemas_update + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + gnome2_schemas_update + xdg_desktop_database_update + xdg_icon_cache_update +} diff --git a/app-emacs/Manifest.gz b/app-emacs/Manifest.gz index 4ba19ef28364..dc24df852dc5 100644 Binary files a/app-emacs/Manifest.gz and b/app-emacs/Manifest.gz differ diff --git a/app-emacs/yaml-mode/Manifest b/app-emacs/yaml-mode/Manifest index a78242d97dd3..1f9055c44bdb 100644 --- a/app-emacs/yaml-mode/Manifest +++ b/app-emacs/yaml-mode/Manifest @@ -1,2 +1,3 @@ DIST yaml-mode-0.0.13.tar.gz 14446 BLAKE2B c80750aa78cc10342c5873d5227a2e2b7e0a1d9bdd9ee20f9c5a596e3b43a3344f9a0746eb77cc0cff4da2731cba41c5b52c8dd045d2376ee195d8103bbb7e19 SHA512 10876dfe576045bde363f62880ab3c91894d965c9dc1b7ff2b86783d31c05ab844c0abd77bcb1f7b5346d99969d69833ff4e5dc1b5700f7856fbd3dc4eebd5ef DIST yaml-mode-0.0.14.tar.gz 15005 BLAKE2B 5361cc0c8b4716905b57f7cb67898606bb85541232bdbb81d613c30e2a4ff49295fa0f0c3ec511442a05e07ac55e77834eec2f09252e498cbbfd3727fe21b07d SHA512 65bf1c308c13c2666c9a30ff66ad35c8a79d88d968e3b008aaabd61a06b083b62c9cc606a8b429c4f5bda218803022efe17d631c4282e5c6c35cc3f9ae1902ba +DIST yaml-mode-0.0.15.tar.gz 15873 BLAKE2B b025a670b39c720d64723707be08b32fff4bc4cc83b22c57c314d2886d0039ed034de03ee5162ffd814f2529b69aad5e22d9bc30003c3670aeda118d68fd2b6e SHA512 1fd8a4b6949bdffe15a9beb2119538da48bac2dbbd662ebdf0be87d92da0e94683de19d4c90bf3d05fb516e26d078d7dba9c8d340d956ab1a1cdf29827fd174d diff --git a/app-emacs/yaml-mode/yaml-mode-0.0.15.ebuild b/app-emacs/yaml-mode/yaml-mode-0.0.15.ebuild new file mode 100644 index 000000000000..7a5cbf8da5fd --- /dev/null +++ b/app-emacs/yaml-mode/yaml-mode-0.0.15.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit elisp + +DESCRIPTION="A major mode for GNU Emacs for editing YAML files" +HOMEPAGE="https://github.com/yoshiki/yaml-mode" +SRC_URI="https://github.com/yoshiki/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +#S="${WORKDIR}/${PN}-release-${PV}" +DOCS="README Changes" +SITEFILE="50${PN}-gentoo.el" diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index fd5cdc385e7c..8c0a5b37bddc 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/lxc/lxc-4.0.5.ebuild b/app-emulation/lxc/lxc-4.0.5.ebuild index 5b2fa2cc8dfa..2613f38a5180 100644 --- a/app-emulation/lxc/lxc-4.0.5.ebuild +++ b/app-emulation/lxc/lxc-4.0.5.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://linuxcontainers.org/ https://github.com/lxc/lxc" SRC_URI="https://linuxcontainers.org/downloads/lxc/${P}.tar.gz verify-sig? ( https://linuxcontainers.org/downloads/lxc/${P}.tar.gz.asc )" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86" LICENSE="LGPL-3" SLOT="0" diff --git a/app-emulation/open-vm-tools/files/11.0.1-udev-complaints.patch b/app-emulation/open-vm-tools/files/11.0.1-udev-complaints.patch deleted file mode 100644 index b34e06d1a227..000000000000 --- a/app-emulation/open-vm-tools/files/11.0.1-udev-complaints.patch +++ /dev/null @@ -1,60 +0,0 @@ -From f1dab8ded45aaaa4b6993a4d96d0aefc700f1796 Mon Sep 17 00:00:00 2001 -From: Oliver Kurth -Date: Mon, 28 Oct 2019 16:12:42 -0700 -Subject: [PATCH] stop systemd-243 udev complaints #371 - -Address issues from pull request #371 on github: -- fix substiution variables for systemd-243 -- fix permissions of rules file -See https://github.com/vmware/open-vm-tools/pull/371 ---- - open-vm-tools/AUTHORS | 4 ++++ - open-vm-tools/udev/99-vmware-scsi-udev.rules | 6 +++--- - open-vm-tools/udev/Makefile.am | 4 ++-- - 3 files changed, 9 insertions(+), 5 deletions(-) - -diff --git a/open-vm-tools/AUTHORS b/open-vm-tools/AUTHORS -index 08cc28ef2..026de07e6 100644 ---- a/open-vm-tools/AUTHORS -+++ b/open-vm-tools/AUTHORS -@@ -49,3 +49,7 @@ Josh Paetzel Additional changes to vmmemctl.ko for FreeBSD 12.0 API changes. - - Haruki Tsurumoto Fix Asianux identification - - https://github.com/vmware/open-vm-tools/pull/325 -+ -+MilhouseVH stop systemd-243 udev complaints -+ - https://github.com/vmware/open-vm-tools/pull/371 -+ -diff --git a/open-vm-tools/udev/99-vmware-scsi-udev.rules b/open-vm-tools/udev/99-vmware-scsi-udev.rules -index 053b59706..fb4ed6844 100644 ---- a/open-vm-tools/udev/99-vmware-scsi-udev.rules -+++ b/open-vm-tools/udev/99-vmware-scsi-udev.rules -@@ -1,7 +1,7 @@ --# Copyright (C) 2016 VMware, Inc. All rights reserved. -+# Copyright (C) 2016,2019 VMware, Inc. All rights reserved. - # - # This file is part of open-vm-tools - --ACTION=="add", SUBSYSTEMS=="scsi", ATTRS{vendor}=="VMware*", ATTRS{model}=="Virtual disk*", ENV{DEVTYPE}=="disk", RUN+="/bin/sh -c 'echo 180 >/sys$DEVPATH/device/timeout'" --ACTION=="add", SUBSYSTEMS=="scsi", ATTRS{vendor}=="VMware*", ATTRS{model}=="VMware Virtual S", ENV{DEVTYPE}=="disk", RUN+="/bin/sh -c 'echo 180 >/sys$DEVPATH/device/timeout'" -+ACTION=="add", SUBSYSTEMS=="scsi", ATTRS{vendor}=="VMware*", ATTRS{model}=="Virtual disk*", ENV{DEVTYPE}=="disk", RUN+="/bin/sh -c 'echo 180 >/sys$env{DEVPATH}/device/timeout'" -+ACTION=="add", SUBSYSTEMS=="scsi", ATTRS{vendor}=="VMware*", ATTRS{model}=="VMware Virtual S", ENV{DEVTYPE}=="disk", RUN+="/bin/sh -c 'echo 180 >/sys$env{DEVPATH}/device/timeout'" - -diff --git a/open-vm-tools/udev/Makefile.am b/open-vm-tools/udev/Makefile.am -index 68fbc3e27..c3baadf16 100644 ---- a/open-vm-tools/udev/Makefile.am -+++ b/open-vm-tools/udev/Makefile.am -@@ -1,5 +1,5 @@ - ################################################################################ --### Copyright (C) 2016 VMware, Inc. All rights reserved. -+### Copyright (C) 2016,2019 VMware, Inc. All rights reserved. - ### - ### This program is free software; you can redistribute it and/or modify - ### it under the terms of version 2 of the GNU General Public License as -@@ -17,5 +17,5 @@ - - install-data-local: - $(INSTALL) -d $(DESTDIR)$(UDEVRULESDIR) -- $(INSTALL) $(srcdir)/99-vmware-scsi-udev.rules $(DESTDIR)$(UDEVRULESDIR) -+ $(INSTALL) -m 644 $(srcdir)/99-vmware-scsi-udev.rules $(DESTDIR)$(UDEVRULESDIR) - diff --git a/app-emulation/wine-staging/Manifest b/app-emulation/wine-staging/Manifest index f33fd589d844..d8fca9b7a39e 100644 --- a/app-emulation/wine-staging/Manifest +++ b/app-emulation/wine-staging/Manifest @@ -1,9 +1,9 @@ DIST gentoo-wine-patches-20200523.tar.xz 59740 BLAKE2B 951d7f305a6e5b3759c8095629d48de4830b8a0c9558de859a9e02d9824fe85553fda2bc0820ca97022a0ca63ac28473dadfe827821220445dbf1a7fd15c7c98 SHA512 46eea45c982b475e3ff444cbd87c6a0a235fc8dcaf3d83d89655a10ed8841a9ddb09e5a638a05803f3bf2c3bd34165c16067aba561efa4c183ee396dc31cdf75 DIST wine-5.18.tar.xz 24160316 BLAKE2B 4f359b6e869707a514d2198d2b8ba810b8552ea53ff3f37cbc7c23b732152db0fa5c0c909d2c16a03f6b0ff122435c92f8a9b8b462577aa50a39b2dcfa7bcd05 SHA512 70565fbea61b78580ca86443fcb4c10c7814c1dffcfa49ee38746fef21a52a00f2e040d9d2515892fed4021e7868720cc22b650d18872656838e4610d4d4e823 -DIST wine-5.19.tar.xz 24201860 BLAKE2B 34233747a58e2cf6c9b6b328cb8c0af5707479e02d20365da07d039163757c6557d25ec8136933fd9bd5a7aeb360d96e44c41c34fffb26a23f9e3ea137f03120 SHA512 b91eb1cb1225ac8abe26f5c5dd74fb376e6489b460035c70e6c7890595086e99273497741b6a736ef4884ae7bacc44482d2e3e8ba7e8d85c78c571bd4b133d8a DIST wine-5.20.tar.xz 24177960 BLAKE2B 50169bc00497feef91f5cf7fd56bce8f7784f70d2a24776494d0ab98cdb70b4387a92dece4571b2b22b15c42d82672595f39079a0678e551331f2bee4460f0f8 SHA512 30299287857376a827579335ba410d0575379df300860c8fdd50473f3eec074372d3602e5027f9e75fb13e272f28f51950ec652109839573a168aed23ba9c8f4 DIST wine-5.21.tar.xz 24178740 BLAKE2B 9d6b2766536fb019d69dbffc8dbae0004eeb6d5b3d3f57d0577b4952159b9a5388d1f767d982b3837d713175ac7baec47c7b017e21f4fb586d3d97707491066e SHA512 0879e4edeca60880799736ac831f8ae28c6e5156dde161685aa84a5d8bd20c4f3a51a178fa2b130a9e8af44432bb239160a04829fcef5d8332e2bbf829d2bc18 +DIST wine-5.22.tar.xz 24214812 BLAKE2B 7bc093501cb20fbe52e277aadb867e4f55abc9898ae570aebf3496c2f7938129498e6ad8b6de7f8efe28ccffee734c94754da703e0c5d6bad6c1293cefb42c0e SHA512 9e86a1f74a142513121c155ffa5e1dd863ecc00092952878f44185725e81793fd7291e0e3c93275cd0d083d17af99eb1d8feba1c96e8607f44919b9045737271 DIST wine-staging-5.18.tar.gz 10357038 BLAKE2B 07df0de55d1bfa36d3492498a48d8f1402dffa161f3b02f3326185d524bea9a2f0893b85a70650797bf1b74c06f5814ddc09cb184a5977cfacb968921020aee1 SHA512 75911ac4d5aaf6cfef41aa487290369d714f153b1fba2279daca75d6c5cbc7e7de9d3f8ef55eb7c311a05b86a212163e2b81ff685c1527fb0e90f223ec23dcab -DIST wine-staging-5.19.tar.gz 10348478 BLAKE2B 4c23d3f488fc7dcbd98abea0593767401711ac0ed533cba144e82fd38f1349ba557aeedf6faac898de107d2b55ba41030cde111272f63ebb7ba25952bf9824d9 SHA512 4335ce48437641bbfd8b882cc92cd2970493586f4ac6501ffb94a0f2dcd38ec632d6afabf71d2c1ab1806a5cf594c2988f94a86c508fcd24a7d42078c662add9 DIST wine-staging-5.20.tar.gz 10378427 BLAKE2B 75910b198ca5b79f41f4aa115a962cb01a4dd208512feffc2ef9bc327d9c82d0c0babd543ea011917257c5dfd7c5f2f2815dae81d553dd4b239b627bafba1635 SHA512 64913c3af44890a959593c610c713113f068811a8fe79e234a61f262af963d194d1d71d336361c6a473ad0f3f64fc5a88cee36facdc0824cea6856fc74da9634 DIST wine-staging-5.21.tar.gz 10362610 BLAKE2B 41f40c33b7d0853c63b81da863145f242b640a0e491b3ee92e1c687d33b85344676e764ae93921f00643b4bd3247e9c9aef4ba92cf80aa43785db1f762eac8cc SHA512 079a7fccd66d886b3498c45057b1bb215d3897e44e0c8d6afb56174fad583e8a578ea888d70d62a18da1566bb9649fdefd08227efecd21fc71b0b3d739dab636 +DIST wine-staging-5.22.tar.gz 10342905 BLAKE2B 9f59a0d8c06f29b52fec71cc09915c8a7a23a1ad9945cedeced179657645970048846517f4eced051989b0ef1ee555c9f8176de073a66b3633f3fe1fd90e0836 SHA512 0ce0314b470e90c741fd02ede522b6dd754fb69595b527e3ad5ac62d944bc7eca43eca88aa2b85d99a9945fbad05872cdcd2ac87ed809dcd41a9ce56bfcc1147 diff --git a/app-emulation/wine-staging/wine-staging-5.19.ebuild b/app-emulation/wine-staging/wine-staging-5.22.ebuild similarity index 100% rename from app-emulation/wine-staging/wine-staging-5.19.ebuild rename to app-emulation/wine-staging/wine-staging-5.22.ebuild diff --git a/app-emulation/wine-vanilla/Manifest b/app-emulation/wine-vanilla/Manifest index a2af665e7be9..de064dee91d6 100644 --- a/app-emulation/wine-vanilla/Manifest +++ b/app-emulation/wine-vanilla/Manifest @@ -5,7 +5,7 @@ DIST wine-4.0.3.tar.xz 21680420 BLAKE2B a7caf4b82fa2594f77e31f29b2a3da59c08bb58f DIST wine-5.0.1.tar.xz 22476496 BLAKE2B 8fd7729812c0144b6c9ec7f28ecc25bca5bc7801d9927346928f43fc46ca0be89ecb4caefb7a93cf2f3365e088d11e6bd53a028ea8cc9e170ef864ff63f21a5a SHA512 d9756f0a74417ea9e05d08a94ff29b83ebff3db3a3cbaa90979d5312754371ddfcab6bded73a246ef980252b908d8a26e93de2779b766c4bff92c91f8c315d98 DIST wine-5.0.2.tar.xz 22484932 BLAKE2B 93253a86605b32dc8f7c79a16336643e6f84937094f8c96ea336289c2076a4d9f759fc1ad128f7b1a009da5eb2ed25cdc893da99e338093608bf5fc0ef1a85fc SHA512 9ff902ff929d9ac8c81843eea141c96446d26b14f70781a40a3ea1fdef5f412ca4c87374a5a3af9b42b52236159645e55d6e54f8b06178a4d210a72fb1d5358e DIST wine-5.0.3.tar.xz 22495496 BLAKE2B 459399b940111fb573d3060e74c17423ff43b510a196d70eadb5d57e7d57b44c990f8c9bb69eb258a76515c2d50fb756f82229a1a7cd391a32c407bedc1e9f14 SHA512 3217cc8a91e898e15130314fb7ebc2cdd93e2a4e88a46d3778ff4790a635b28e951ba974b83a56414d387b710da21a998e519f1df0cde636ff5fffdceff7f652 -DIST wine-5.18.tar.xz 24160316 BLAKE2B 4f359b6e869707a514d2198d2b8ba810b8552ea53ff3f37cbc7c23b732152db0fa5c0c909d2c16a03f6b0ff122435c92f8a9b8b462577aa50a39b2dcfa7bcd05 SHA512 70565fbea61b78580ca86443fcb4c10c7814c1dffcfa49ee38746fef21a52a00f2e040d9d2515892fed4021e7868720cc22b650d18872656838e4610d4d4e823 DIST wine-5.19.tar.xz 24201860 BLAKE2B 34233747a58e2cf6c9b6b328cb8c0af5707479e02d20365da07d039163757c6557d25ec8136933fd9bd5a7aeb360d96e44c41c34fffb26a23f9e3ea137f03120 SHA512 b91eb1cb1225ac8abe26f5c5dd74fb376e6489b460035c70e6c7890595086e99273497741b6a736ef4884ae7bacc44482d2e3e8ba7e8d85c78c571bd4b133d8a DIST wine-5.20.tar.xz 24177960 BLAKE2B 50169bc00497feef91f5cf7fd56bce8f7784f70d2a24776494d0ab98cdb70b4387a92dece4571b2b22b15c42d82672595f39079a0678e551331f2bee4460f0f8 SHA512 30299287857376a827579335ba410d0575379df300860c8fdd50473f3eec074372d3602e5027f9e75fb13e272f28f51950ec652109839573a168aed23ba9c8f4 DIST wine-5.21.tar.xz 24178740 BLAKE2B 9d6b2766536fb019d69dbffc8dbae0004eeb6d5b3d3f57d0577b4952159b9a5388d1f767d982b3837d713175ac7baec47c7b017e21f4fb586d3d97707491066e SHA512 0879e4edeca60880799736ac831f8ae28c6e5156dde161685aa84a5d8bd20c4f3a51a178fa2b130a9e8af44432bb239160a04829fcef5d8332e2bbf829d2bc18 +DIST wine-5.22.tar.xz 24214812 BLAKE2B 7bc093501cb20fbe52e277aadb867e4f55abc9898ae570aebf3496c2f7938129498e6ad8b6de7f8efe28ccffee734c94754da703e0c5d6bad6c1293cefb42c0e SHA512 9e86a1f74a142513121c155ffa5e1dd863ecc00092952878f44185725e81793fd7291e0e3c93275cd0d083d17af99eb1d8feba1c96e8607f44919b9045737271 diff --git a/app-emulation/wine-vanilla/wine-vanilla-5.18.ebuild b/app-emulation/wine-vanilla/wine-vanilla-5.22.ebuild similarity index 99% rename from app-emulation/wine-vanilla/wine-vanilla-5.18.ebuild rename to app-emulation/wine-vanilla/wine-vanilla-5.22.ebuild index f411a705130e..226b93efb90f 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-5.18.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-5.22.ebuild @@ -110,7 +110,7 @@ RDEPEND="${COMMON_DEPEND} !app-emulation/wine:0 dos? ( >=games-emulation/dosbox-0.74_p20160629 ) gecko? ( app-emulation/wine-gecko:2.47.1[abi_x86_32?,abi_x86_64?] ) - mono? ( app-emulation/wine-mono:5.1.0 ) + mono? ( app-emulation/wine-mono:5.1.1 ) perl? ( dev-lang/perl dev-perl/XML-Simple diff --git a/app-i18n/Manifest.gz b/app-i18n/Manifest.gz index 5b0b7c29100c..fc78b972442c 100644 Binary files a/app-i18n/Manifest.gz and b/app-i18n/Manifest.gz differ diff --git a/app-i18n/opencc/Manifest b/app-i18n/opencc/Manifest index 1a7d5657573d..a71aa95470f2 100644 --- a/app-i18n/opencc/Manifest +++ b/app-i18n/opencc/Manifest @@ -1 +1,2 @@ DIST opencc-1.0.5.tar.gz 1598354 BLAKE2B a66b32b96dab543d8401960ff0548a4e3f9414606513941426eacf105bca0755a7b364c68b7eb996ef82444e52f849d2f8151353a14fb97a358ad1463fbea2d3 SHA512 3fbefbafe5c3c2491032158577ab97b5a3edf6ea98a03a7250deba082b72c3112ad4a3396d1a469936ec32e1d141f0a2236001c2891ac9c793add2b082596cc1 +DIST opencc-1.0.6.tar.gz 1621561 BLAKE2B d58ee0e04e133fbf6a7632788bcaf0f7891bb74051a970075f6d94b048adfec7bbe4438913933d7dfdd4d58ec2c1a5ec47685415c26532ddd8c13e8abd52cab6 SHA512 67c7bb7432483c1781701dc64ff28e4d5750898ed3d2d41f97d3782918b5f9aa1a49baa1e3a58e4b24cfbd2adcf9ea166a05ad934221fb1cb7afb35e909749e7 diff --git a/app-i18n/opencc/metadata.xml b/app-i18n/opencc/metadata.xml index 377bdc587a2d..b53d22485f11 100644 --- a/app-i18n/opencc/metadata.xml +++ b/app-i18n/opencc/metadata.xml @@ -1,15 +1,19 @@ - - cjk@gentoo.org - Cjk - - - OpenCC is a library for converting characters and phrases between - Traditional Chinese and Simplified Chinese. - - - BYVoid/OpenCC - + + arfrever.fta@gmail.com + Arfrever Frehtes Taifersar Arahesis + + + cjk@gentoo.org + Cjk + + + OpenCC is a library for converting characters and phrases between + Traditional Chinese and Simplified Chinese. + + + BYVoid/OpenCC + diff --git a/app-i18n/opencc/opencc-1.0.5.ebuild b/app-i18n/opencc/opencc-1.0.5.ebuild index 63d6cf51df70..791c79b18315 100644 --- a/app-i18n/opencc/opencc-1.0.5.ebuild +++ b/app-i18n/opencc/opencc-1.0.5.ebuild @@ -1,48 +1,64 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 2010-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI="7" +PYTHON_COMPAT=(python{3_7,3_8,3_9}) -inherit cmake-utils +inherit cmake python-any-r1 if [[ "${PV}" == "9999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/BYVoid/OpenCC" -else - inherit vcs-snapshot - - SRC_URI="https://github.com/BYVoid/${PN^^[oc]}/archive/ver.${PV}.tar.gz -> ${P}.tar.gz" fi -DESCRIPTION="Libraries for conversion between Traditional and Simplified Chinese" +DESCRIPTION="Library for conversion between Traditional and Simplified Chinese characters" HOMEPAGE="https://github.com/BYVoid/OpenCC" +if [[ "${PV}" == "9999" ]]; then + SRC_URI="" +else + SRC_URI="https://github.com/BYVoid/OpenCC/archive/ver.${PV}.tar.gz -> ${P}.tar.gz" +fi -LICENSE="Apache-2.0" +# OpenCC: Apache-2.0 +# deps/darts-clone: BSD-2 +# deps/gtest-1.7.0: BSD +# deps/rapidjson-0.11: MIT +# deps/tclap-1.2.1: MIT +LICENSE="Apache-2.0 BSD-2 MIT test? ( BSD )" SLOT="0/2" KEYWORDS="amd64 arm64 hppa ppc ppc64 sparc x86" IUSE="doc test" RESTRICT="!test? ( test )" -DEPEND="doc? ( app-doc/doxygen )" +BDEPEND="${PYTHON_DEPS} + doc? ( app-doc/doxygen )" +DEPEND="" +RDEPEND="" + +if [[ "${PV}" != "9999" ]]; then + S="${WORKDIR}/OpenCC-ver.${PV}" +fi -DOCS="AUTHORS *.md" PATCHES=( - "${FILESDIR}"/${PN}-test.patch - "${FILESDIR}"/${PN}-stop-copy.patch + "${FILESDIR}/${PN}-test.patch" + "${FILESDIR}/${PN}-stop-copy.patch" ) +DOCS=(AUTHORS NEWS.md README.md) + src_prepare() { - sed -i "s|\${DIR_SHARE_OPENCC}/doc|share/doc/${PF}|" doc/CMakeLists.txt + cmake_src_prepare - cmake-utils_src_prepare + sed -e "s:\${DIR_SHARE_OPENCC}/doc:share/doc/${PF}:" -i doc/CMakeLists.txt || die } src_configure() { local mycmakeargs=( - -DBUILD_DOCUMENTATION=$(usex doc) + -DBUILD_DOCUMENTATION=$(usex doc ON OFF) -DBUILD_SHARED_LIBS=ON - -DENABLE_GTEST=$(usex test) + -DENABLE_GTEST=$(usex test ON OFF) ) - cmake-utils_src_configure + + cmake_src_configure } diff --git a/app-i18n/opencc/opencc-1.0.6.ebuild b/app-i18n/opencc/opencc-1.0.6.ebuild new file mode 100644 index 000000000000..70b4f7a65c7b --- /dev/null +++ b/app-i18n/opencc/opencc-1.0.6.ebuild @@ -0,0 +1,63 @@ +# Copyright 2010-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +PYTHON_COMPAT=(python{3_7,3_8,3_9}) + +inherit cmake python-any-r1 + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/BYVoid/OpenCC" +fi + +DESCRIPTION="Library for conversion between Traditional and Simplified Chinese characters" +HOMEPAGE="https://github.com/BYVoid/OpenCC" +if [[ "${PV}" == "9999" ]]; then + SRC_URI="" +else + SRC_URI="https://github.com/BYVoid/OpenCC/archive/ver.${PV}.tar.gz -> ${P}.tar.gz" +fi + +# OpenCC: Apache-2.0 +# deps/darts-clone: BSD-2 +# deps/gtest-1.7.0: BSD +# deps/rapidjson-0.11: MIT +# deps/tclap-1.2.1: MIT +LICENSE="Apache-2.0 BSD-2 MIT test? ( BSD )" +SLOT="0/2" +KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc test" +RESTRICT="!test? ( test )" + +BDEPEND="${PYTHON_DEPS} + doc? ( app-doc/doxygen )" +DEPEND="" +RDEPEND="" + +if [[ "${PV}" != "9999" ]]; then + S="${WORKDIR}/OpenCC-ver.${PV}" +fi + +PATCHES=( + "${FILESDIR}/${PN}-stop-copy.patch" +) + +DOCS=(AUTHORS NEWS.md README.md) + +src_prepare() { + cmake_src_prepare + + sed -e "s:\${DIR_SHARE_OPENCC}/doc:share/doc/${PF}:" -i doc/CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + -DBUILD_DOCUMENTATION=$(usex doc ON OFF) + -DBUILD_SHARED_LIBS=ON + -DENABLE_GTEST=$(usex test ON OFF) + ) + + cmake_src_configure +} diff --git a/app-i18n/opencc/opencc-9999.ebuild b/app-i18n/opencc/opencc-9999.ebuild index 0b47d39a633a..8a1dbc501c8b 100644 --- a/app-i18n/opencc/opencc-9999.ebuild +++ b/app-i18n/opencc/opencc-9999.ebuild @@ -1,48 +1,64 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 2010-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI="7" +PYTHON_COMPAT=(python{3_7,3_8,3_9}) -inherit cmake-utils +inherit cmake python-any-r1 if [[ "${PV}" == "9999" ]]; then inherit git-r3 EGIT_REPO_URI="https://github.com/BYVoid/OpenCC" -else - inherit vcs-snapshot - - SRC_URI="https://github.com/BYVoid/${PN^^[oc]}/archive/ver.${PV}.tar.gz -> ${P}.tar.gz" fi -DESCRIPTION="Libraries for conversion between Traditional and Simplified Chinese" +DESCRIPTION="Library for conversion between Traditional and Simplified Chinese characters" HOMEPAGE="https://github.com/BYVoid/OpenCC" +if [[ "${PV}" == "9999" ]]; then + SRC_URI="" +else + SRC_URI="https://github.com/BYVoid/OpenCC/archive/ver.${PV}.tar.gz -> ${P}.tar.gz" +fi -LICENSE="Apache-2.0" +# OpenCC: Apache-2.0 +# deps/darts-clone: BSD-2 +# deps/gtest-1.11.0: BSD +# deps/marisa-0.2.5: || ( BSD-2 LGPL-2.1+ ) +# deps/rapidjson-1.1.0: MIT +# deps/tclap-1.2.2: MIT +LICENSE="Apache-2.0 BSD-2 MIT || ( BSD-2 LGPL-2.1+ ) test? ( BSD )" SLOT="0/2" KEYWORDS="" IUSE="doc test" RESTRICT="!test? ( test )" -DEPEND="doc? ( app-doc/doxygen )" +BDEPEND="${PYTHON_DEPS} + doc? ( app-doc/doxygen )" +DEPEND="" +RDEPEND="" + +if [[ "${PV}" != "9999" ]]; then + S="${WORKDIR}/OpenCC-ver.${PV}" +fi -DOCS="AUTHORS *.md" PATCHES=( - "${FILESDIR}"/${PN}-test.patch - "${FILESDIR}"/${PN}-stop-copy.patch + "${FILESDIR}/${PN}-stop-copy.patch" ) +DOCS=(AUTHORS NEWS.md README.md) + src_prepare() { - sed -i "s|\${DIR_SHARE_OPENCC}/doc|share/doc/${PF}|" doc/CMakeLists.txt + cmake_src_prepare - cmake-utils_src_prepare + sed -e "s:\${DIR_SHARE_OPENCC}/doc:share/doc/${PF}:" -i doc/CMakeLists.txt || die } src_configure() { local mycmakeargs=( - -DBUILD_DOCUMENTATION=$(usex doc) + -DBUILD_DOCUMENTATION=$(usex doc ON OFF) -DBUILD_SHARED_LIBS=ON - -DENABLE_GTEST=$(usex test) + -DENABLE_GTEST=$(usex test ON OFF) ) - cmake-utils_src_configure + + cmake_src_configure } diff --git a/app-misc/Manifest.gz b/app-misc/Manifest.gz index 5810b801f1ba..6b716e21da26 100644 Binary files a/app-misc/Manifest.gz and b/app-misc/Manifest.gz differ diff --git a/app-misc/chkcrontab/chkcrontab-1.7-r1.ebuild b/app-misc/chkcrontab/chkcrontab-1.7-r1.ebuild index 7be8fc3cacaf..e5d5ef95ce97 100644 --- a/app-misc/chkcrontab/chkcrontab-1.7-r1.ebuild +++ b/app-misc/chkcrontab/chkcrontab-1.7-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/lyda/chkcrontab/archive/v${PV}.tar.gz -> ${P}.tar.gz LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/app-office/Manifest.gz b/app-office/Manifest.gz index d458a0f79596..9a3bdfb31551 100644 Binary files a/app-office/Manifest.gz and b/app-office/Manifest.gz differ diff --git a/app-office/gnucash/Manifest b/app-office/gnucash/Manifest index 3693e01abc41..2ea7859d92fe 100644 --- a/app-office/gnucash/Manifest +++ b/app-office/gnucash/Manifest @@ -1,4 +1 @@ -DIST gnucash-3.8b.tar.bz2 14285584 BLAKE2B 304d73b04883b61b8a4e174f458206769483ca0f6d28d284c760397e0bc4061dbdb379ff3cca35e80d6736516549a8733bf36895a11c2202fb9f8f25e591e1d9 SHA512 e0529934e9ccafbef2b724f5fca9a0e300c78cf21596f0dcd4b5c11ff300c06a963b68eff1efe00834dc488ced604b86011075bb22480488ddf31d2d4c94ddca -DIST gnucash-4.0.tar.bz2 13978744 BLAKE2B 9718e365e1a3939357fabb98f43a95ed22d4d4ee13bb17a7dda5da8ed2c4fe6c4ec4951eb1b5a66bd71feb3f26a4e896d5cb7a177cd7d1b773ac26e643a24f0a SHA512 29fd61352932ff0962e5c634711bc1ae09020e457bace5d2954b743976b607ad3632ddf6a7024148e989dc8e69769400cb7795eee097f8d88dea3ac8d6b7c7ee -DIST gnucash-4.1.tar.bz2 13994973 BLAKE2B 875ec0d9b2b6b8ec7144ad52f172f6727078746884d8d1d369a4b7535ebe5bcc0c70b4a25f1ba8e3f97d0603a8d511c9911e343f2610b557511b56eafbea8f39 SHA512 caf25d4ca0a950b1aa0c236c801938ff2235dc7c7710065a5b78fd3745904dd5e5103c6ed8abebfe3a4a68c8048372802f856c63cdde8aeaf71840daf2e9ec07 DIST gnucash-4.2.tar.bz2 14225695 BLAKE2B be77c5876cd1720e9b7422c6afbb05f0144a20cf45d7dac0e8bd3362139f4b4d18f47f0edcb6db9db7a2485263d6bff5e0546f5691fe097fe1d4912852bc0ce4 SHA512 f730d2ba5d6b310e0c467767aa4c4e6a153b441b6b9aed948344b9a9b9dee351f3cba9fac1d655385136f5ce4313f8f37ef305e9b93b0ea32c40525d9293b070 diff --git a/app-office/gnucash/gnucash-3.8b-r1.ebuild b/app-office/gnucash/gnucash-3.8b-r1.ebuild deleted file mode 100644 index d39ffce11608..000000000000 --- a/app-office/gnucash/gnucash-3.8b-r1.ebuild +++ /dev/null @@ -1,212 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit cmake-utils gnome2-utils python-single-r1 xdg-utils - -DESCRIPTION="A personal finance manager" -HOMEPAGE="http://www.gnucash.org/" -SRC_URI="https://github.com/Gnucash/${PN}/releases/download/${PV}/${P}.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" - -IUSE="aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres - python quotes -register2 smartcard sqlite test" -RESTRICT="!test? ( test )" - -# Examples doesn't build unless GUI is also built -REQUIRED_USE=" - examples? ( gui ) - python? ( ${PYTHON_REQUIRED_USE} ) - smartcard? ( aqbanking )" - -# libdbi version requirement for sqlite taken from bug #455134 -# -# dev-libs/boost must always be built with nls enabled. -# guile[deprecated] because of SCM_LIST*() use. -# net-libs/aqbanking dropped gtk with v6, so to simplify the dependency, -# we just rely on that. -RDEPEND=" - >=dev-libs/glib-2.46.0:2 - >=dev-libs/libxml2-2.7.0:2 - >=dev-scheme/guile-2.2.0:12=[deprecated,regex] - >=sys-libs/zlib-1.1.4 - dev-libs/boost:=[icu,nls] - dev-libs/icu:= - dev-libs/libxslt - aqbanking? ( - >=net-libs/aqbanking-6[ofx?] - sys-libs/gwenhywfar - smartcard? ( sys-libs/libchipcard ) - ) - gnome-keyring? ( >=app-crypt/libsecret-0.18 ) - gui? ( - >=x11-libs/gtk+-3.14.0:3 - gnome-base/dconf - net-libs/webkit-gtk:4= - aqbanking? ( sys-libs/gwenhywfar[gtk] ) - ) - mysql? ( - dev-db/libdbi - dev-db/libdbi-drivers[mysql] - ) - ofx? ( >=dev-libs/libofx-0.9.1:= ) - postgres? ( - dev-db/libdbi - dev-db/libdbi-drivers[postgres] - ) - python? ( ${PYTHON_DEPS} ) - quotes? ( - >=dev-perl/Finance-Quote-1.11 - dev-perl/Date-Manip - dev-perl/HTML-TableExtract - ) - sqlite? ( - >=dev-db/libdbi-0.9.0 - >=dev-db/libdbi-drivers-0.9.0[sqlite] - ) -" - -DEPEND="${RDEPEND} - >=dev-cpp/gtest-1.8.0 - >=sys-devel/gettext-0.19.6 - dev-lang/perl - dev-perl/XML-Parser - sys-devel/libtool - virtual/pkgconfig -" - -PDEPEND="doc? ( - ~app-doc/gnucash-docs-${PV} - gnome-extra/yelp -)" - -PATCHES=( - "${FILESDIR}"/${PN}-3.2-no-gui.patch - "${FILESDIR}"/${PN}-3.8-examples-subdir.patch - "${FILESDIR}"/${PN}-3.8-exclude-license.patch -) - -S="${WORKDIR}/${PN}-$(ver_cut 1-2)" - -pkg_setup() { - use python && python-single-r1_pkg_setup - xdg_environment_reset -} - -src_prepare() { - cmake-utils_src_prepare - - # Fix tests writing to /tmp - local fixtestfiles=( - "${S}"/gnucash/report/report-system/test/test-commodity-utils.scm - "${S}"/gnucash/report/report-system/test/test-extras.scm - "${S}"/gnucash/report/report-system/test/test-report-html.scm - "${S}"/gnucash/report/report-system/test/test-report-system.scm - "${S}"/libgnucash/backend/xml/test/test-xml-pricedb.cpp - "${S}"/libgnucash/backend/dbi/test/test-backend-dbi-basic.cpp - ) - for x in "${fixtestfiles[@]}"; do - sed -i -e "s|\"/tmp/|\"${T}/|g" "${x}" || die "sed of "${x}" failed" - done -} - -src_configure() { - export GUILE_AUTO_COMPILE=0 - - local sql_on_off="OFF" - if use mysql || use postgres || use sqlite ; then - sql_on_off="ON" - fi - - local mycmakeargs=( - -DCOMPILE_GSCHEMAS=OFF - -DDISABLE_NLS=$(usex !nls) - -DENABLE_REGISTER2=$(usex register2) - -DWITH_AQBANKING=$(usex aqbanking) - -DWITH_OFX=$(usex ofx) - -DWITH_PYTHON=$(usex python) - -DWITH_SQL=${sql_on_off} - -DWITH_GNUCASH=$(usex gui) - ) - - cmake-utils_src_configure -} - -src_test() { - if use python ; then - cp common/test-core/unittest_support.py \ - "${BUILD_DIR}"/common/test-core/ || die - fi - - LOCALE_TESTS= - if type locale >/dev/null 2>&1; then - MY_LOCALES="$(locale -a)" - if [[ "${MY_LOCALES}" != *en_US* || - "${MY_LOCALES}" != *en_GB* || - "${MY_LOCALES}" != *fr_FR* ]] ; then - ewarn "Missing one or more of en_US, en_GB, or fr_FR locales." - else - LOCALE_TESTS=true - fi - else - ewarn "'locale' not found." - fi - - if [[ ! ${LOCALE_TESTS} ]]; then - ewarn "Disabling test-qof and test-gnc-numeric." - echo 'set(CTEST_CUSTOM_TESTS_IGNORE test-qof test-gnc-numeric)' \ - > "${BUILD_DIR}"/CTestCustom.cmake || die - fi - - cd "${BUILD_DIR}" || die - XDG_DATA_HOME="${T}/$(whoami)" eninja check -} - -src_install() { - cmake-utils_src_install - - rm "${ED}"/usr/share/doc/${PF}/*win32-bin.txt - - if use examples ; then - docompress -x /usr/share/doc/${PF}/examples - else - rm -r "${ED}"/usr/share/doc/${PF}/examples - fi - - use aqbanking && dodoc doc/README.HBCI - use ofx && dodoc doc/README.OFX - - if use python ; then - python_optimize - python_optimize "${ED}"/usr/share/gnucash/python - fi -} - -pkg_postinst() { - if use gui ; then - xdg_icon_cache_update - gnome2_schemas_update - fi - xdg_desktop_database_update - xdg_mimeinfo_database_update - - ewarn "Backup all financial files or databases before using GnuCash >=2.7.0!" - ewarn - ewarn "GnuCash 2.7.0 introduced large changes in its file format and database" - ewarn "schema that WILL prevent you from reverting back to GnuCash 2.6." -} - -pkg_postrm() { - if use gui ; then - xdg_icon_cache_update - gnome2_schemas_update - fi - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/app-office/gnucash/gnucash-3.8b.ebuild b/app-office/gnucash/gnucash-3.8b.ebuild deleted file mode 100644 index 50214748c0a3..000000000000 --- a/app-office/gnucash/gnucash-3.8b.ebuild +++ /dev/null @@ -1,207 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit cmake-utils gnome2-utils python-single-r1 xdg-utils - -DESCRIPTION="A personal finance manager" -HOMEPAGE="http://www.gnucash.org/" -SRC_URI="https://github.com/Gnucash/${PN}/releases/download/${PV}/${P}.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc ~ppc64 x86" - -IUSE="aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres - python quotes -register2 smartcard sqlite test" -RESTRICT="!test? ( test )" - -# Examples doesn't build unless GUI is also built -REQUIRED_USE=" - examples? ( gui ) - python? ( ${PYTHON_REQUIRED_USE} ) - smartcard? ( aqbanking )" - -# libdbi version requirement for sqlite taken from bug #455134 -# -# dev-libs/boost must always be built with nls enabled. -# guile[deprecated] because of SCM_LIST*() use. -# net-libs/aqbanking dropped gtk with v6, so to simplify the dependency, -# we just rely on that. -RDEPEND=" - >=dev-libs/glib-2.46.0:2 - >=dev-libs/libxml2-2.7.0:2 - >=dev-scheme/guile-2.2.0:12=[deprecated,regex] - >=sys-libs/zlib-1.1.4 - dev-libs/boost:=[icu,nls] - dev-libs/icu:= - dev-libs/libxslt - aqbanking? ( - >=net-libs/aqbanking-6[ofx?] - >=sys-libs/gwenhywfar-5.1.2 - smartcard? ( sys-libs/libchipcard ) - ) - gnome-keyring? ( >=app-crypt/libsecret-0.18 ) - gui? ( - >=x11-libs/gtk+-3.14.0:3 - gnome-base/dconf - net-libs/webkit-gtk:4= - sys-libs/gwenhywfar[gtk] - ) - mysql? ( - dev-db/libdbi - dev-db/libdbi-drivers[mysql] - ) - ofx? ( >=dev-libs/libofx-0.9.1:= ) - postgres? ( - dev-db/libdbi - dev-db/libdbi-drivers[postgres] - ) - python? ( ${PYTHON_DEPS} ) - quotes? ( - >=dev-perl/Finance-Quote-1.11 - dev-perl/Date-Manip - dev-perl/HTML-TableExtract - ) - sqlite? ( - >=dev-db/libdbi-0.9.0 - >=dev-db/libdbi-drivers-0.9.0[sqlite] - ) -" - -DEPEND="${RDEPEND} - >=dev-cpp/gtest-1.8.0 - >=sys-devel/gettext-0.19.6 - dev-lang/perl - dev-perl/XML-Parser - sys-devel/libtool - virtual/pkgconfig -" - -PDEPEND="doc? ( - ~app-doc/gnucash-docs-${PV} - gnome-extra/yelp -)" - -PATCHES=( - "${FILESDIR}"/${PN}-3.2-no-gui.patch - "${FILESDIR}"/${PN}-3.8-examples-subdir.patch - "${FILESDIR}"/${PN}-3.8-exclude-license.patch -) - -S="${WORKDIR}/${PN}-$(ver_cut 1-2)" - -pkg_setup() { - use python && python-single-r1_pkg_setup - xdg_environment_reset -} - -src_prepare() { - cmake-utils_src_prepare - - # Fix tests writing to /tmp - local fixtestfiles=( - "${S}"/gnucash/report/report-system/test/test-commodity-utils.scm - "${S}"/gnucash/report/report-system/test/test-extras.scm - "${S}"/gnucash/report/report-system/test/test-report-html.scm - "${S}"/gnucash/report/report-system/test/test-report-system.scm - "${S}"/libgnucash/backend/xml/test/test-xml-pricedb.cpp - "${S}"/libgnucash/backend/dbi/test/test-backend-dbi-basic.cpp - ) - for x in "${fixtestfiles[@]}"; do - sed -i -e "s|\"/tmp/|\"${T}/|g" "${x}" || die "sed of "${x}" failed" - done -} - -src_configure() { - export GUILE_AUTO_COMPILE=0 - - local sql_on_off="OFF" - if use mysql || use postgres || use sqlite ; then - sql_on_off="ON" - fi - - local mycmakeargs=( - -DCOMPILE_GSCHEMAS=OFF - -DDISABLE_NLS=$(usex !nls) - -DENABLE_REGISTER2=$(usex register2) - -DWITH_AQBANKING=$(usex aqbanking) - -DWITH_OFX=$(usex ofx) - -DWITH_PYTHON=$(usex python) - -DWITH_SQL=${sql_on_off} - -DWITH_GNUCASH=$(usex gui) - ) - - cmake-utils_src_configure -} - -src_test() { - if use python ; then - cp common/test-core/unittest_support.py \ - "${BUILD_DIR}"/common/test-core/ || die - fi - - LOCALE_TESTS= - if type locale >/dev/null 2>&1; then - MY_LOCALES="$(locale -a)" - if [[ "${MY_LOCALES}" != *en_US* || - "${MY_LOCALES}" != *en_GB* || - "${MY_LOCALES}" != *fr_FR* ]] ; then - ewarn "Missing one or more of en_US, en_GB, or fr_FR locales." - else - LOCALE_TESTS=true - fi - else - ewarn "'locale' not found." - fi - - if [[ ! ${LOCALE_TESTS} ]]; then - ewarn "Disabling test-qof and test-gnc-numeric." - echo 'set(CTEST_CUSTOM_TESTS_IGNORE test-qof test-gnc-numeric)' \ - > "${BUILD_DIR}"/CTestCustom.cmake || die - fi - - cd "${BUILD_DIR}" || die - XDG_DATA_HOME="${T}/$(whoami)" eninja check -} - -src_install() { - cmake-utils_src_install - - rm "${ED}"/usr/share/doc/${PF}/*win32-bin.txt - - if use examples ; then - docompress -x /usr/share/doc/${PF}/examples - else - rm -r "${ED}"/usr/share/doc/${PF}/examples - fi - - use aqbanking && dodoc doc/README.HBCI - use ofx && dodoc doc/README.OFX -} - -pkg_postinst() { - if use gui ; then - xdg_icon_cache_update - gnome2_schemas_update - fi - xdg_desktop_database_update - xdg_mimeinfo_database_update - - ewarn "Backup all financial files or databases before using GnuCash >=2.7.0!" - ewarn - ewarn "GnuCash 2.7.0 introduced large changes in its file format and database" - ewarn "schema that WILL prevent you from reverting back to GnuCash 2.6." -} - -pkg_postrm() { - if use gui ; then - xdg_icon_cache_update - gnome2_schemas_update - fi - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/app-office/gnucash/gnucash-4.0.ebuild b/app-office/gnucash/gnucash-4.0.ebuild deleted file mode 100644 index 71a42926ae21..000000000000 --- a/app-office/gnucash/gnucash-4.0.ebuild +++ /dev/null @@ -1,235 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit cmake gnome2-utils python-single-r1 toolchain-funcs xdg-utils - -DESCRIPTION="A personal finance manager" -HOMEPAGE="http://www.gnucash.org/" -SRC_URI="https://github.com/Gnucash/${PN}/releases/download/${PV}/${P}.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" - -IUSE="aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres - python quotes -register2 smartcard sqlite test" -RESTRICT="!test? ( test )" - -# Examples doesn't build unless GUI is also built -REQUIRED_USE=" - examples? ( gui ) - python? ( ${PYTHON_REQUIRED_USE} ) - smartcard? ( aqbanking )" - -# dev-libs/boost must always be built with nls enabled. -# dev-scheme/guile[deprecated] because of SCM_LIST*() use. -# net-libs/aqbanking dropped gtk with v6. So, to simplify the -# dependency, we just rely on that. -RDEPEND=" - >=dev-libs/glib-2.56.1:2 - >=dev-scheme/guile-2.2.0:12=[deprecated,regex] - >=sys-libs/zlib-1.1.4 - dev-libs/boost:=[icu,nls] - dev-libs/icu:= - dev-libs/libxml2:2 - dev-libs/libxslt - aqbanking? ( - >=net-libs/aqbanking-6[ofx?] - sys-libs/gwenhywfar - smartcard? ( sys-libs/libchipcard ) - ) - gnome-keyring? ( >=app-crypt/libsecret-0.18 ) - gui? ( - >=x11-libs/gtk+-3.22.30:3 - gnome-base/dconf - net-libs/webkit-gtk:4= - aqbanking? ( sys-libs/gwenhywfar[gtk] ) - ) - mysql? ( - dev-db/libdbi - dev-db/libdbi-drivers[mysql] - ) - ofx? ( >=dev-libs/libofx-0.9.1:= ) - postgres? ( - dev-db/libdbi - dev-db/libdbi-drivers[postgres] - ) - python? ( ${PYTHON_DEPS} ) - quotes? ( - >=dev-perl/Finance-Quote-1.11 - dev-perl/Date-Manip - dev-perl/HTML-TableExtract - ) - sqlite? ( - dev-db/libdbi - dev-db/libdbi-drivers[sqlite] - ) -" - -DEPEND="${RDEPEND} - >=dev-cpp/gtest-1.8.0 - >=sys-devel/gettext-0.20 - dev-lang/perl - dev-perl/XML-Parser - sys-devel/libtool -" - -BDEPEND=" - dev-lang/swig - dev-util/cmake - virtual/pkgconfig - || ( - >=sys-devel/gcc-8:* - >=sys-devel/clang-6:* - ) -" - -PDEPEND="doc? ( - ~app-doc/gnucash-docs-${PV} - gnome-extra/yelp -)" - -PATCHES=( - "${FILESDIR}"/${PN}-3.2-no-gui.patch - "${FILESDIR}"/${PN}-3.8-examples-subdir.patch - "${FILESDIR}"/${PN}-3.8-exclude-license.patch -) - -S="${WORKDIR}/${PN}-$(ver_cut 1-2)" - -pkg_pretend() { - if tc-is-gcc; then - if [[ $(gcc-major-version) -lt 8 ]]; then - die "GnuCash needs at least GCC version 8." - fi - elif tc-is-clang; then - if [[ $(clang-major-version) -lt 6 ]]; then - die "GnuCash needs at least clang version 6." - fi - fi -} - -pkg_setup() { - use python && python-single-r1_pkg_setup - xdg_environment_reset -} - -src_prepare() { - cmake_src_prepare - - # Fix tests writing to /tmp - local fixtestfiles=( - gnucash/report/test/test-report-html.scm - gnucash/report/reports/standard/test/test-invoice.scm - gnucash/report/reports/standard/test/test-new-owner-report.scm - gnucash/report/reports/standard/test/test-owner-report.scm - gnucash/report/reports/standard/test/test-transaction.scm - gnucash/report/reports/standard/test/test-portfolios.scm - gnucash/report/reports/standard/test/test-charts.scm - gnucash/report/test/test-report.scm - gnucash/report/test/test-commodity-utils.scm - gnucash/report/test/test-report-extras.scm - libgnucash/backend/dbi/test/test-backend-dbi-basic.cpp - libgnucash/backend/xml/test/test-xml-pricedb.cpp - ) - for x in "${fixtestfiles[@]}"; do - sed -i -e "s|\"/tmp/|\"${T}/|g" "${S}/${x}" || die "sed of "${S}/${x}" failed" - done -} - -src_configure() { - export GUILE_AUTO_COMPILE=0 - - local sql_on_off="OFF" - if use mysql || use postgres || use sqlite ; then - sql_on_off="ON" - fi - - local mycmakeargs=( - -DCOMPILE_GSCHEMAS=OFF - -DDISABLE_NLS=$(usex !nls) - -DENABLE_REGISTER2=$(usex register2) - -DWITH_AQBANKING=$(usex aqbanking) - -DWITH_OFX=$(usex ofx) - -DWITH_PYTHON=$(usex python) - -DWITH_SQL=${sql_on_off} - -DWITH_GNUCASH=$(usex gui) - ) - - cmake_src_configure -} - -src_test() { - if use python ; then - cp common/test-core/unittest_support.py \ - "${BUILD_DIR}"/common/test-core/ || die - fi - - LOCALE_TESTS= - if type locale >/dev/null 2>&1; then - MY_LOCALES="$(locale -a)" - if [[ "${MY_LOCALES}" != *en_US* || - "${MY_LOCALES}" != *en_GB* || - "${MY_LOCALES}" != *fr_FR* ]] ; then - ewarn "Missing one or more of en_US, en_GB, or fr_FR locales." - else - LOCALE_TESTS=true - fi - else - ewarn "'locale' not found." - fi - - if [[ ! ${LOCALE_TESTS} ]]; then - ewarn "Disabling test-qof and test-gnc-numeric." - echo 'set(CTEST_CUSTOM_TESTS_IGNORE test-qof test-gnc-numeric)' \ - > "${BUILD_DIR}"/CTestCustom.cmake || die - fi - - cd "${BUILD_DIR}" || die - XDG_DATA_HOME="${T}/$(whoami)" eninja check -} - -src_install() { - cmake_src_install - - # strip is unable to recognise the format of the input files (*.go) - dostrip -x /usr/$(get_libdir)/guile - - if use examples ; then - docompress -x /usr/share/doc/${PF}/examples - else - rm -r "${ED}"/usr/share/doc/${PF}/examples - fi - - if use python ; then - python_optimize - python_optimize "${ED}"/usr/share/gnucash/python - fi -} - -pkg_postinst() { - if use gui ; then - xdg_icon_cache_update - gnome2_schemas_update - fi - xdg_desktop_database_update - xdg_mimeinfo_database_update - - ewarn "Backup all financial files or databases before using GnuCash >=2.7.0!" - ewarn - ewarn "GnuCash 2.7.0 introduced large changes in its file format and database" - ewarn "schema that WILL prevent you from reverting back to GnuCash 2.6." -} - -pkg_postrm() { - if use gui ; then - xdg_icon_cache_update - gnome2_schemas_update - fi - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/app-office/gnucash/gnucash-4.1.ebuild b/app-office/gnucash/gnucash-4.1.ebuild deleted file mode 100644 index f99092410b21..000000000000 --- a/app-office/gnucash/gnucash-4.1.ebuild +++ /dev/null @@ -1,234 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit cmake gnome2-utils python-single-r1 toolchain-funcs xdg-utils - -DESCRIPTION="A personal finance manager" -HOMEPAGE="http://www.gnucash.org/" -SRC_URI="https://github.com/Gnucash/${PN}/releases/download/${PV}/${P}.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86" - -IUSE="aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres - python quotes -register2 smartcard sqlite test" -RESTRICT="!test? ( test )" - -# Examples doesn't build unless GUI is also built -REQUIRED_USE=" - examples? ( gui ) - python? ( ${PYTHON_REQUIRED_USE} ) - smartcard? ( aqbanking )" - -# dev-libs/boost must always be built with nls enabled. -# net-libs/aqbanking dropped gtk with v6. So, to simplify the -# dependency, we just rely on that. -RDEPEND=" - >=dev-libs/glib-2.56.1:2 - >=dev-scheme/guile-2.2.0:=[regex] - >=sys-libs/zlib-1.1.4 - dev-libs/boost:=[icu,nls] - dev-libs/icu:= - dev-libs/libxml2:2 - dev-libs/libxslt - aqbanking? ( - >=net-libs/aqbanking-6[ofx?] - sys-libs/gwenhywfar - smartcard? ( sys-libs/libchipcard ) - ) - gnome-keyring? ( >=app-crypt/libsecret-0.18 ) - gui? ( - >=x11-libs/gtk+-3.22.30:3 - gnome-base/dconf - net-libs/webkit-gtk:4= - aqbanking? ( sys-libs/gwenhywfar[gtk] ) - ) - mysql? ( - dev-db/libdbi - dev-db/libdbi-drivers[mysql] - ) - ofx? ( >=dev-libs/libofx-0.9.1:= ) - postgres? ( - dev-db/libdbi - dev-db/libdbi-drivers[postgres] - ) - python? ( ${PYTHON_DEPS} ) - quotes? ( - >=dev-perl/Finance-Quote-1.11 - dev-perl/Date-Manip - dev-perl/HTML-TableExtract - ) - sqlite? ( - dev-db/libdbi - dev-db/libdbi-drivers[sqlite] - ) -" - -DEPEND="${RDEPEND} - >=dev-cpp/gtest-1.8.0 - >=sys-devel/gettext-0.20 - dev-lang/perl - dev-perl/XML-Parser - sys-devel/libtool -" - -BDEPEND=" - dev-lang/swig - dev-util/cmake - virtual/pkgconfig - || ( - >=sys-devel/gcc-8:* - >=sys-devel/clang-6:* - ) -" - -PDEPEND="doc? ( - ~app-doc/gnucash-docs-${PV} - gnome-extra/yelp -)" - -PATCHES=( - "${FILESDIR}"/${PN}-3.2-no-gui.patch - "${FILESDIR}"/${PN}-3.8-examples-subdir.patch - "${FILESDIR}"/${PN}-3.8-exclude-license.patch -) - -S="${WORKDIR}/${PN}-$(ver_cut 1-2)" - -pkg_pretend() { - if tc-is-gcc; then - if [[ $(gcc-major-version) -lt 8 ]]; then - die "GnuCash needs at least GCC version 8." - fi - elif tc-is-clang; then - if [[ $(clang-major-version) -lt 6 ]]; then - die "GnuCash needs at least clang version 6." - fi - fi -} - -pkg_setup() { - use python && python-single-r1_pkg_setup - xdg_environment_reset -} - -src_prepare() { - cmake_src_prepare - - # Fix tests writing to /tmp - local fixtestfiles=( - gnucash/report/test/test-report-html.scm - gnucash/report/reports/standard/test/test-invoice.scm - gnucash/report/reports/standard/test/test-new-owner-report.scm - gnucash/report/reports/standard/test/test-owner-report.scm - gnucash/report/reports/standard/test/test-transaction.scm - gnucash/report/reports/standard/test/test-portfolios.scm - gnucash/report/reports/standard/test/test-charts.scm - gnucash/report/test/test-report.scm - gnucash/report/test/test-commodity-utils.scm - gnucash/report/test/test-report-extras.scm - libgnucash/backend/dbi/test/test-backend-dbi-basic.cpp - libgnucash/backend/xml/test/test-xml-pricedb.cpp - ) - for x in "${fixtestfiles[@]}"; do - sed -i -e "s|\"/tmp/|\"${T}/|g" "${S}/${x}" || die "sed of "${S}/${x}" failed" - done -} - -src_configure() { - export GUILE_AUTO_COMPILE=0 - - local sql_on_off="OFF" - if use mysql || use postgres || use sqlite ; then - sql_on_off="ON" - fi - - local mycmakeargs=( - -DCOMPILE_GSCHEMAS=OFF - -DDISABLE_NLS=$(usex !nls) - -DENABLE_REGISTER2=$(usex register2) - -DWITH_AQBANKING=$(usex aqbanking) - -DWITH_OFX=$(usex ofx) - -DWITH_PYTHON=$(usex python) - -DWITH_SQL=${sql_on_off} - -DWITH_GNUCASH=$(usex gui) - ) - - cmake_src_configure -} - -src_test() { - if use python ; then - cp common/test-core/unittest_support.py \ - "${BUILD_DIR}"/common/test-core/ || die - fi - - LOCALE_TESTS= - if type locale >/dev/null 2>&1; then - MY_LOCALES="$(locale -a)" - if [[ "${MY_LOCALES}" != *en_US* || - "${MY_LOCALES}" != *en_GB* || - "${MY_LOCALES}" != *fr_FR* ]] ; then - ewarn "Missing one or more of en_US, en_GB, or fr_FR locales." - else - LOCALE_TESTS=true - fi - else - ewarn "'locale' not found." - fi - - if [[ ! ${LOCALE_TESTS} ]]; then - ewarn "Disabling test-qof and test-gnc-numeric." - echo 'set(CTEST_CUSTOM_TESTS_IGNORE test-qof test-gnc-numeric)' \ - > "${BUILD_DIR}"/CTestCustom.cmake || die - fi - - cd "${BUILD_DIR}" || die - XDG_DATA_HOME="${T}/$(whoami)" eninja check -} - -src_install() { - cmake_src_install - - # strip is unable to recognise the format of the input files (*.go) - dostrip -x /usr/$(get_libdir)/guile - - if use examples ; then - docompress -x /usr/share/doc/${PF}/examples - else - rm -r "${ED}"/usr/share/doc/${PF}/examples - fi - - if use python ; then - python_optimize - python_optimize "${ED}"/usr/share/gnucash/python - fi -} - -pkg_postinst() { - if use gui ; then - xdg_icon_cache_update - gnome2_schemas_update - fi - xdg_desktop_database_update - xdg_mimeinfo_database_update - - ewarn "Backup all financial files or databases before using GnuCash >=2.7.0!" - ewarn - ewarn "GnuCash 2.7.0 introduced large changes in its file format and database" - ewarn "schema that WILL prevent you from reverting back to GnuCash 2.6." -} - -pkg_postrm() { - if use gui ; then - xdg_icon_cache_update - gnome2_schemas_update - fi - xdg_desktop_database_update - xdg_mimeinfo_database_update -} diff --git a/app-office/libreoffice-l10n/Manifest b/app-office/libreoffice-l10n/Manifest index b70893546929..8f66539ca787 100644 --- a/app-office/libreoffice-l10n/Manifest +++ b/app-office/libreoffice-l10n/Manifest @@ -334,3 +334,186 @@ DIST LibreOffice_6.4.7.2_Linux_x86-64_rpm_langpack_xh.tar.gz 292851 BLAKE2B 9480 DIST LibreOffice_6.4.7.2_Linux_x86-64_rpm_langpack_zh-CN.tar.gz 845408 BLAKE2B 0b447f228e543a0007c55eb36521f441c41139d882c40afbd39f6459efbd8f446b7cbc8f7d42141347ac677758487d8019b26ce18d90b6b008ac8a47bee7f32a SHA512 e27f34f9bed04aed3ce50dd4210cdacf7ae9ee5da2208079ee9178b8f3a7e67eae40190aa774a6e85353a9572758920897d4a74a393a75d08e7ab51aa1e39819 DIST LibreOffice_6.4.7.2_Linux_x86-64_rpm_langpack_zh-TW.tar.gz 846108 BLAKE2B 364492d2597538ddf850809393fd0f364f8f8b2e72d54ccfe5685ec8f386a90b672b0592f8f7eba0f4e8e8db14f229195a6a435224f0d45fae01c5a0a36e1c70 SHA512 346f214a3ebdb88063b08f2980ce55a2cf8789135a6776f4e6d1d3e737e3946f5646ccd5c3d5c115a7e86fcb64ccb23d22d9ac1f8cbc9b382db86571f55ba2fb DIST LibreOffice_6.4.7.2_Linux_x86-64_rpm_langpack_zu.tar.gz 323898 BLAKE2B 438447de9dd9ce04b17b99f8c888190eed02588edce028dec7e8f6e412cabba65a2fbb73817b6741fae9fb1d1ae0503e8fd35a2a2f39ea4ba25ea33b51719141 SHA512 efce615c323c5820bc1d3505817c4634379aef37bec35db5e4c9b96c86f664563a9c0d17998d8333db4330a9f8c309650d9d442783f4ed89171c87002b81a2f4 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_am.tar.gz 4041501 BLAKE2B 015b2a3e61ca5c03e9e17480672f3858d70ce29400e83cc0cd24948d5b6643de7347366dfaf0b52f85948623a83c721fb355b71d8b885161c6bb9f0947de5ff4 SHA512 92c5e1fa8333a74c3c276a52e322f3f0cd79d360b6d22e4e0528a420dba908ae3e8b117eedc54e7eeec640ea2fcc26dac7975c31fbd40fd715bda0fc6fe20a30 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ar.tar.gz 3514948 BLAKE2B d6fbe4c54f7076b4b79160f176a9d212f82e7fb44315731d7515b400fe1f713f54424097d66da19ff803da7df7b077e7090dbf1afd4cbf44d281108b1eb9f6a5 SHA512 8c78d1bb57d0cb6ff7e6a61dd15246a325adc96c8a3742faf302bc1207c9bb3d780a7ee020706d9caff731b972feacc0e0efc7d56622d2d268f9994a6457e9dc +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ast.tar.gz 3761832 BLAKE2B f782657e129313f39b86e040a20864cc1479ee464f5d2df7a0d84742d6864ac894cbe68b9ffd6c921e4ce52081e7d0def2fe723a1c5346bcc4ffd2ad37e31d55 SHA512 8fb0ed03f4c3986df6bf26fab3a33c4f26eb06912f9aa8a9e18a31e53260cb6a7d38ef4ce805b38bb34abf74c5bb5e353f7662c28dbdd1add7a94fba762f67e4 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bg.tar.gz 4076906 BLAKE2B 2191be25b1c9991cde4f1a4d7c7199a8a918dadf85e33da9327e0f6fc634a5a638c13306cb6f79605cce7fa81cd6e52ebf13df36094b323bc9d50d53a2e77a06 SHA512 931b397e1566870cee5e1585639ab7d0e5b3143def4d66452be8b9d87d453382355ec2244dd016e9cfe75eb5369cfadce251756c424b59a61aad4dc6e2256aad +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bn-IN.tar.gz 4228370 BLAKE2B 60341e99d379f34ffdb2cadeb1509ee110d3f9135d15d0bee02d3be053906170633450df441c39002dd8db7156d6ac8cba452c6d1df6f32634ab6fa38be31e55 SHA512 0822e401ff727f896399e77be65cdcb2c2db6ef59d275b2a89310b185d37e2ceec64eaa48d13f34711c010825f3a1dc18e812b4f1b1114bc7d5e3a5ac40491c0 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bn.tar.gz 3907182 BLAKE2B 718fcddde69be9cf2706335418b11fd82bb906f206fee955d548b2498446a8f3747a35b38dfceede6abd1d4ac8309373af744312182b81716711d5f6522213fb SHA512 71730e18630d5fb0e6904aa6d1536d53056f3f1d65947d0e04b545d0b66ab635aaa1a1f7af55ee151b3a4dfd45bd1d6756142babb1bfc6c0b418811a20dc2c34 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bo.tar.gz 3916748 BLAKE2B 144c564e5b68158d2e13da0cf657483a48d8bf54a2ccb6726f1373bd77851c0eead90bb016fd4a68c89ef2e81416d0a2fb4df85af362793a54208b73438c5cd3 SHA512 cb340d60b1e04c6bb2341098fccdfa28f811c7af9f492b93bcd67af895f03519a03ac434e00e972ef1d345b8224be6fbcf8091ce99c37ae9b07694b02720b0b3 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bs.tar.gz 3647226 BLAKE2B 846a607056406fd2d340af8f8275a7c903155aacdf6849a5935f23e5e575fcf1ad44662d556fef27815265718b63e1ca8629409a139048100ca6d94b9e466a17 SHA512 4ce135e88291b5d2f7627ad759ea1bd993812f123ea7fd784894ac40fe04c457597fc09b37cfdf44c36b2c787a4a1b3a96e60fb54524eed62ca310b34462ca89 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz 3781241 BLAKE2B 1c3c186fb38f60f6c14f7fd864f3ee269a1bf5afca4178342e84b7dbd48136caaddc4abc21e37d1c7de04191d8c85b7489198b943ae9dfbd34e03e3072cbb4d8 SHA512 491def7c07f730d52dbdf22965453790ed4b9b2fcbdf316067995676494910961c89caea87532b4fe09a6245ae4638d7d54bedd416a0f8c1c681790f01d2b53e +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ca.tar.gz 3770680 BLAKE2B e63aa50f6e0d0b1d3c498ec933437fdcdbd9c8a3c057a10ce94b3b23af9d7b99d6d28f896a317182eba23b7c32bb97f4ca9eb9ea8fbbcf1f02553f531a3b621d SHA512 1357d074cf13c17f5f8886d1bffef2e529ee8bf16f1bc5d2886edef629553f94679a5e95b9e0085b9334ca7a4359ddf8e4e3fa9809a9e68e1afb6386a19ac3b0 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_cs.tar.gz 3801606 BLAKE2B d9f03371e1dbf43d42350ee62e6ccefa05de7c3dbeeeb1ab5eeb89431ebbad0f835fda10f095ce38a7a87316f11d40e0619a4be8b9a25e3069c6dd0f6cfa4071 SHA512 df3ead21b70e9eb82a79a12840d5eb071642b12dfdeb35770682ccd9bc96d9f1d205e723271e5c33ed17ffea077a4b2b6bf3578e09c0538e0e6293ae4af968dc +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_da.tar.gz 3703027 BLAKE2B 0de5a37e1589194cf6e5bcbdaf6f31779b471bbce9573d9c0070ac5ce6a172ed05f4b3e983d40dd0b1cda953626fa8c98f2b8209ffe5933a32ebec56d7d58fad SHA512 5bd3b2a14ae5307b34a6aaa99b719aff051e9d6594b48fc6e5d87b3abe90535c484e83fc5b5f27102bcefea4bbce5c3790532cb535b0d63a7b7da15f1c958e57 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_de.tar.gz 3863940 BLAKE2B edbc158878490f3c12547fc9e32f1395c070e7ce7ca2fbdfadd89744f1af26e9893edc752e3641f12b29846fe4fafe6e3724a69b074849ce6635d24654a1d488 SHA512 35b50d2db9dea9f84aec8681171b5aa6be9d903d93915ac75ecaece40fe6653b1eee17c02900b8b04e84133faf89fc6a6a1b4ebe81bdd78ead710c61141e91e1 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_dz.tar.gz 4063956 BLAKE2B 544000c9f5e9ec3f758b9de461cf9d81ef416aa9e5674ee33ce637d54e74942ea1cf7df38627d1733b51a22e1ab545cb6015745d150e95ff70d5d2196605f800 SHA512 cb3a5527802c6e152f0b7bd86a4692682c00d9a625cfee037f47e7b3512cbf1248215553cfc8cec4fd0877762ff7a324f7e160ea14a5adba6e91ed26da111c81 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_el.tar.gz 4497789 BLAKE2B df0cc643d5f588bf84d2c84e3aa8955f9fac5f47880fbcc1d46d281cb87c68e5f4506544fd9b76e1a9f321e004999b397b53a9dc3579471fa8822d87200bbe9e SHA512 62c83733f65e1711bf10b5283e4eb4270b72902b0d12d5866474d7f793f81ae2bef53300233f24ae4fad7c9f17b5dc5bbbf6fcce65653ccdb379f480d596a057 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-GB.tar.gz 3534537 BLAKE2B 0eff2b71748bf237e0b99f7aba927834b000fc530f993a724394e60c8ccc8efd2d720bdf6bc8fde961729ec78740aac3ccd1853b9c85abc41c58173583f69a09 SHA512 5da4c9acc27ad4ca15a04173cc67682efcfe01c8d2e76e15986aedcc9d192f5530a9f9568629d8a8894e57ae6265a30184ce2de441263a6161e0016d9c7fe18e +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-US.tar.gz 2225161 BLAKE2B ac8d339fde0f7011e10c97e3ab8a4b219f25aacce8111d7ede2d39318ab907ef7c8152a8269156c4be5cd46edfce85b34cc31862a472e8f112bb31eb42e484c5 SHA512 fd2a38a0d9d81126daacc8e72716fdaedba0f5e326b59f5fd9eb8928746fba3a3a2f92f42692637fddfef2c7feef63a5cae7cd723e1990943ed1a5289a29bb12 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-ZA.tar.gz 3526320 BLAKE2B e208ca92538594fda18e6958a02102d64963208992e659fbaf9d6b15d61d7a12bd67f16756e46b68e1a1a30e707ac0d941a1d0dd43f18344e44cb7e6ba39c43f SHA512 88077badab08e5fb7674a3d0b98be991db573ac25eb06e1b4b1a7c9d8da9d1cd4e660855bfb175331ce443bef691586eea1a602a04a462e67a3d9ae05acbb715 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_eo.tar.gz 3620135 BLAKE2B 82f1312cac914f736a22db7bf70fb6790be711656efb7a071cc40c359f78592ddc961cae4dfd90d550bc9494beb27cc4f4ddaab7f95f251d4c6f6fcead6b420e SHA512 e6741556f81c7b5163dd12ef12c71a9b08cde612adae864585d7bcbd7e102f6f98fd11ad2805fd4083e189186b23a0ea1930ff74f7ba0c1b3161bf19289690e7 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_es.tar.gz 3813750 BLAKE2B 00915f323a7c4ca3b02c6982edc93f63b28a9fbe4a984d3e9389a47405b8e7e942e726c9146bb7ec504e057352421893bef5bab8f2ddb76e100cfd401a328ab7 SHA512 c15216f1265717b0ab767a6241ddc61e1422d0bdbc15e542abc392f17afe7a8bff6103f0fb4bad7f337860b1b0be770f698d8faecdb7964e13a16ae03f5267c4 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_et.tar.gz 3664131 BLAKE2B 102171afcc591d432c128587b22414611716f0a304bf5ece26f15ab6d0673cc7858eea7133198a49758cc937e7515f682e78ca83c0c9d8fe1bee581b38584089 SHA512 770749ba0413b331abd61300368a994b182daa8fae76b218d989d8e3b4990570201b14201bfbcf1c424e6773e616377ee848b7484fc0370c6661dc0f4c6d06e0 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_eu.tar.gz 3650717 BLAKE2B 012697bad8d682120393ecb89f9353e8620984c77e43d5fdfb2d99f933ad5e9901868954a61c1a84a8d3280ff145180be588b25ec6a4fa4759a8a6630f450396 SHA512 493acf8696a066d0b95cfdf8f37a8d960fee3a56d0ced2c62ccf79d5138c90f12385084ff01034f4f204a9906e503a8746a0b48b0d5ce1db179f50f336e5f497 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_fi.tar.gz 3674165 BLAKE2B 34be2386e6398c1a6c21f80913dd1e68f5241fdb210ba2b0ba2a2126282e5e46a488ff2f5951d8d59658885708a0d47d90b8848701c8039ffd21614c11afcd88 SHA512 3dd30ca5b2ec7aef73a1bdb703fb6b4563e84caf3d716895b077868ec023024c6137acdba0f071844005cd4b8935031e7e63a8014b7ddb28451e8187c60e33bf +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_fr.tar.gz 3797995 BLAKE2B b76cea3b18f402fb5d0986d0ef0cdfce37662bb3a0364864ef374e06114ec87fa8e64c9c00688530ba7b044e6f848ed798516d02bd259a1a16f0d5e1f71af10f SHA512 a764e719fde0a8bdc50d4569f7ae5b2b7433789b1c1addd93749a3e52123037fe602964194584ec0c23c9de644af5774c4e4f127485e3f58427788fb67cad7a6 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_gl.tar.gz 3757068 BLAKE2B 49d155df10afc4e0855369b165a67caec4ed9ac3833824d7fb12e44cfe137c0f862a67dcb58c869364a924b14f682f24577a166696f6138725e2ccac7a942d99 SHA512 a575242213276178c9a44719fc728a41296884a5bde851a8938046e92e69ca55974ab6c05e56a502749e7717b3d9a6d4896d46d1b8ebc08df56974985cc1d691 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_gu.tar.gz 3614384 BLAKE2B df940be1c01583ba78080685128fff4dd9f24285699a63280d847e78ebd514cab0654b5021d34b355f55d1b1da370819dc0ec314a00cb9fdad451b487aa2790e SHA512 f2378550279b30bfa8692a83c06b290bc5042c40dbb9f937d71676c0e8f73bb0d6b5cd15460236d79f20de413aa7a9c7a34c53a034ad8979e7bddf447b202b5a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_he.tar.gz 3385460 BLAKE2B 33b265e2eaa75da1d1eecf67c1db125f00a59319d6d2689a8d5405b16e7424b2f7e28d5e9058f06779072e24601b38faf97944eb35aa22853d7f3ab1ef1cf4cf SHA512 0d443d2e408d858cc0f7892beb3dcf5e8c16e16c1cb27015b7ffc280752e74ff57615c0a82253200491dc5ea1d48f82516c29020d48d63282422882606b748db +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hi.tar.gz 3739191 BLAKE2B 8f065802ec83e8ce9fa32f3b7d8606cea08f008c887482b18b60c8b6f37a2de698d180d30f211c95ba88487be7c6665a084efcd9892fd968f2729e479a49d839 SHA512 9c6f60aaba39472f40c24deb6c4fa5e78bca5973c10330e84b4fdabc4ec220c397edf640b360a001bb5f64064322319035f35bff63c70929e1046aa3a5c846c3 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hr.tar.gz 3653193 BLAKE2B 4fbce1b0fd4a339b60a717fd670ba16e2815280637dc787b952b9905b8d1035491f29c4b906bdf87edf70208a052560b7f3a444a3d2df332adf8eb83a787ebbf SHA512 2dac04594ec45ee9bd283c34d59a8f55de551585717d84bb7b4eab9949fe4e1ba5420fa971567b5b6e69db9ab1fdf072b02232d3ad31e3cdd5da967d4df984a5 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hu.tar.gz 3922693 BLAKE2B 500b451c7ca71de52d8f481fdaccf37cbb8c347bc6fc968e6fa876695b62ec317bc887f89109660e3f8599a5491f54edc71d29abc3001cdd8504fd6254ebc3d4 SHA512 c5f80969dd1c81b01e4b56c69141d12bcf088d317b3c89bd59ff0a4ffe9159d33ef3aa5615e70c1dabbed631c0803219971976165a4670f46fbd2796e467c32e +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_id.tar.gz 3596722 BLAKE2B b4a906b57a17986f42b1c912ec8e7f4de8c65b444baa1418d3d523b8b4670bfa1a880a3ebbb08d87cad39a6e68945fb1e43fcf84bfb8e8e084e179224890300f SHA512 6fcc56ab561221a95d9ab8159ee5d623fb105759b4ed60c38988535c7fbdc0810a6ade23becbe2757aaee45cf6f069c29848cfe92642865d38f7449990c9e896 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_is.tar.gz 3670047 BLAKE2B 4dc53002af6d9c541a2a074e6cdf9e45fd90b200008311dbaba6e01f121673412be9f464c7dd784c7e1025400980ddc4f257994fdf2ba1e8ddc78d3f188cd91c SHA512 c867fa530d7acd65d1c272116cdbe3f2967092341dd034623c0ff574c546a8319b99e605d502b9058798dbae26e1bcf19ea314e2dac0b09cd9ab3b8f840a3996 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_it.tar.gz 3725522 BLAKE2B ecd68c75de5079f15208738e94a020a322c93f2bb831df99919b823d1e3f6aba4556702b4b8f94d49279d238b46436826f813ff08e385b6ea9991d4762625503 SHA512 f921a4af2c14b649c698ef2fbb784e2a10bab96dbd112e6eae88a18e791a8c8151257ba98fc32302f2fde9606d9ec7e1c24cb3fb07afa9d361b69f5f46bcacce +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ja.tar.gz 4380585 BLAKE2B f7ef3b48a5c816a5eac940fd871c42e5cc9ad39e2d570f6050f020a7a8ee93597df02bbd48b0642735e44444621ca8eacee5b98ea1d42a16539dfe7d3638e422 SHA512 5c7f6445ceaf38e6ea3bed6efb24afab9ffa53ecf928b47feb6fc84fa294bd5f595277a6823b75ae7780683fa35a4f950b55e4541183b5a210468806e2fc15f2 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ka.tar.gz 3858183 BLAKE2B 2ddeb845d332f7bb0a4b2a70002284677f4bf0eb16671814ff260215afd0f52b649228203082cc253bb157913ad0e2929ab558a451a9f112c95d0a6cc58fc213 SHA512 d349d9d0e94fc91201b5217d5085cd2bd63805c28b462a6c7fbf638b4af40da62dfaecd985cc69a99f52505d37455b7f554f00041ceb106cc754595a4d579f67 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_km.tar.gz 4189542 BLAKE2B 53526fd58fabe92517e7ca4b21befc114d64a52ae742845839919d64d00499c672f678d33a9388bf1a4d5212302070ef25e9cd161dc36f1cdbcfccca15ed88f0 SHA512 5e80c93f3706c9b870af4a3c71a243dbc199a8086304a1d17f28d9547301e27b129cc72a78b5a10db35b951c4132b961431e514b059f740ddd43771153a0257d +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ko.tar.gz 3884707 BLAKE2B 8ecc80f52395ea13fa0211302e9aa550ec146a870c66e2bd123d2be62a000401f6ffe67f7ba7373cd2b57aa182ebf7c822dc8dee83ef17f5a6a01945e5c395dd SHA512 d59f5b73ebd6533da642d3aa246ef390e95ddefa33f8e044c37dbc4bc38fd41c8314250d8f63b5180c21e4c040396b14f020fc971382b95d182a78cb2c3bc18c +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lo.tar.gz 3609845 BLAKE2B 90ec6e7b9e7057a3dc85c4372b67c1e84e3d615ddd70b2224c01f28385269f42dfc9c13df43dc74aade0c6492225b81bd0a10c62d03137d79d6bda4f6c87d396 SHA512 137964dc6fcc9e5d5c78f6c5c8852a135442a69f4910db9b6c4c9d262d995abbeda1bd3097bcb5a7c1d54768f5ee437e65a04fc5ad48a96538528590850b25e9 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lt.tar.gz 3806321 BLAKE2B b09f9e16770f7b4f1e7325940b0ebff29cfee014de2a3a33b8dbcad5403f23158796523d5707e5d3c81be7d24147bd48e2fd7e271afb798419f71edf97f51bc8 SHA512 8ccea1ee99f65cd16786256a866a1b7a7e2b2c6054dacc921196dee7a71003f21160028843e1279b05491d10f21839aa0059e87b4e134829ee9d948ac62cebbb +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lv.tar.gz 3667034 BLAKE2B 9073e9c8097c97fc3a72cf82f26209c88c9e1f000a53f8781040ef27f4c16631377bd9245afd321355d28ee52dbdb62804914ebf2cc5f0bf8c07d19602320956 SHA512 f89c49c66579194d9b851d5b4bd6693beb67795d4d94dbe24ac0702222aef7c0e6e0a711a1999f5261a9370ba9777e15e074d06336c214039abe50a55241a14b +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_mk.tar.gz 3707285 BLAKE2B 64781f70f187a296de4e3a990b9298f98f1eb6ffa88e91fb5b262b093ab88e422cb058ae9a92870f277f6ade3e8d80d480e4385bfa185c6d6f29fc1703d0d6d1 SHA512 be62c54e4f22103f9fc96a17adf89a41e1ce59bafecf7371e5a9354639c015d903a3689812c6832df157430c85ee35e539c2f964c02b642feaa41e8c3e8fbfe1 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nb.tar.gz 3657338 BLAKE2B 55a233d6dddae54273c46ad65eb0fa8526e08984ecf3a8e0eea4a024cd70e4a6a41741d0b5f47730417fc45d3ecbf1e98e875aa96e74310985d34fdb512e7d11 SHA512 c0caf58652a8e4765f6de152a0df95b30130d569e0c9b3294c8b332d16fc568fa6dd45bbcbc6610e2ff75283768800303eb5a6428a283e6830db343116aacb2a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ne.tar.gz 3945964 BLAKE2B 57c99ee951a73d11bc83d7806a2253742f317a87270cb7fd416589f5f1132b3db61af23f729600f9e3da65bf87fb16e8b53a133ec7c02bd2b60d082a814e3eaf SHA512 bedfe077f5127e3f4095a6af442d805b6319e208e24699ebbfef19cde6272174ec66965929cf7ce8cfb484e00084a64bae2ed2497bde46d3109242208e05155c +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nl.tar.gz 3780047 BLAKE2B 9681569c11bb37dcb010aa2a0d96bc73a6a68bc825b94f55d2c5aa6863c41799cb53a49e5f9f88b19d8b510e47838d46051f3f0c5b4beecf5aee0adeeab7c811 SHA512 23a521c30e7301a3a6dd4b2181e200e79cd7dce2e06ea6c78e2992ebb6358ebd7209ad2d52a69d3a2b703a7d1302c5ba4a8e73c5bc7ed99e495a0374a7b1ff3a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nn.tar.gz 3815500 BLAKE2B c133137156918ade9012c55c95b876fa6819ca9ee7b6d67c1658e12fd6e41f023b5bee93ca64613d770b1593445fdc526396a7a227d2bf0310f511868b982c51 SHA512 eec8992900441ad73cf68658abc0061d49803f34754076b0112e50c6c14a7d693ff715cfc005587c40d9e9ab9a0e451629f943cfab39b43902d1ecd20135fa6a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_om.tar.gz 3712687 BLAKE2B 0444f86ccb9c13df62a9952f246f0af50345499df7867ab853ff6623ec6814e469d2e211dafd8e63f7a58892f65a90d212eb123a5895bc143683c6ffea33bdcd SHA512 858bc49122d91ef8d9bc4158f1be72904044d1d46b942773930283f0c1d06e5fa4620f1ee1c3019f63ee59491f7f6fe3bd33b93d6171115e45c902d2051a842b +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pl.tar.gz 3956055 BLAKE2B 8de3736233bb66cd2043a51a161985a745901159d7eac0ec078854668aa8cdcbaebc762b37f7d0a49fcaad9b231e0e2bffe9445eceaaeabac1e94ac0e3d68037 SHA512 0dbc50903277dcdabe26416bde2bb3bf015901ce092f36f75d8397d3d874a3fcadf51764e701014480421211e3b85eb0f042d25e2edfd36c78d3055cf372f67c +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pt-BR.tar.gz 3767143 BLAKE2B d2385f2bf09e015bfa39aa1e3d80e0dbcd8641068ad4b117705576025860c819d1a5c78ec6bb50195f6c2a2d75818380fe0b138340a65b11942caaececda3898 SHA512 6193b7d2a05f98b411a2ee2b4756ac48d25c29f2aff2cacce7e816d378da1ac069f58e5ed03de6100d209b10cfe8072cfc2267b3b4e60f62d6326f9e9e45d922 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pt.tar.gz 3746823 BLAKE2B 2996cabf174085bd9c4ab7690da023d45677a0f75c108fd5f4e24bbbe4e3ee6fae83ae567fd0ea8052543401bd29f47f5d7a1e2f19efe5d400a7b5d30785318a SHA512 60c572a5c4b3b0648f0a8b9964a03c11895dd6814fcf440d559d5c5acbc86f32546f3aff607ca4f9b7b31f3b56e1a62657ba327c136dbccd5fc64a26f7ab1776 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ro.tar.gz 3559891 BLAKE2B 078f596b78e2790ac5d08faf4db251bbc30c011f0ce58994d0e07dbee011f5ae98233a2f8485519e11a5aa912bdac49e0386752332f1c6a14608130b51a066af SHA512 ff297b881474c594f76de11dbd57a368df02e4d818d91995e91ce4e723598e611f29e10d6f169e92ff2695e15a001f5a637f11ab33289cdb985f4a9f73f3a123 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ru.tar.gz 4107355 BLAKE2B 6419be8cf6d36ed97b22328111e1e22d2cafd9fa21d4f730ce5c2b65a68380c666f7c2e06fb744aeb287b7b8ef1831ad4c23508e65aa847969bdc8aaecedc47d SHA512 a7ef4446feaa9f96ed50d3141babc3509b82a1ef7760463ea1218ca7c3e58137501c7da4813586117f1af37926a202024753afb0e2e811ad375500940366baed +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_si.tar.gz 3840329 BLAKE2B 910f6287babbf9d9edbfc44b1aebf999d8790ac5fc2e3f7340755403af8604f52a2de5eb390f035e1222513983edd611e5208210467f9ba46dd447ac9417bfcd SHA512 bd47642d43a268b32a8180c5d4851ac701b174f766b9e746a3ad0d095da4f8da11c43663221bdcd8da8cf79dbe5699490964af4e2edf431ad1a2c51e97ea9625 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sid.tar.gz 3702958 BLAKE2B 6dbcc1c64a2652aa30e3c77a67486c4db239b3f8f4dc9695d8e9303df20a07b2ffb11222d7f36c790d6df107c5070c4f4f60ad0458c4e71ac33a55229fde73cc SHA512 9180c141f331d9c612139c2d733ef5bb6de7afc11c9d497cf03c8c7406dfb5271850f7b0ea15c2757797a54d8c143d20534c57f1907aec4b84ba636bcd7798ec +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sk.tar.gz 3840477 BLAKE2B 00475124156354880da4db5b7a98eb011766b4a4b456bf91023bb925a4f11bbedb4b08fa64c41d4ddd5ac1fc6b0b955f759774d6e32da9d1df740cfc5da4f629 SHA512 e663eefb989bf7f8ae2d79cb1590c908c8bc9737604a2cb5c60835cdf135b9ac03308c1cec2832d3374f6c838c50275e2b8c14471fae161d4d7cefae4e3d742e +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sl.tar.gz 3715623 BLAKE2B 6db72e3d0b3facad0e3357a71e9f2143608740e249bfe4500af64fea3f0660365a7f3822db85862d848a882536f6b8ae8a8cfb553399ea97688114852decffed SHA512 9c7fea9794ae3901644d388285d4e7ccf0818620bf58aefd9dd0c0125f1e49f8b4562f8b588083b0142cc66f7091a0ed9bd58cdde05f36fd991febc6792e4de9 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sq.tar.gz 3622774 BLAKE2B 14a61e414cf72cd119db9a909c65ed7eba70baf2ad5bac7e20b6d189d0047c5f8e01455f0039790b20f78bd3fa9a4554d99fdb54a61aaf116bdd6bb23e8b2d94 SHA512 c09e7341d1be6faf847d5cd3cf83aadbfb2d6fe48461824f5e4869067f58085f399a7905e209cb7c3d2e666752120d8e9926da306f5b09a7d4c36c568bff5bea +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sv.tar.gz 3704931 BLAKE2B 7d2621f0770b2f1b6173f2db828d698bd86d15d15f3fbffc2092e35428a0446582916dbaff99f14bb90951a48224c48f4d87a5f6bf91d187c992ddc3eeacec23 SHA512 c5abff05ae55b66447491a647d6daf6fd7086b020d5c6b054bb08a46bf4d15029aab6080848f95253e679c774e3e1f5ba36b189d77d2c815242d35d5cfe55045 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ta.tar.gz 4054532 BLAKE2B cb128b04a4ecee3f6eac4326e44bf55dd255286f2456a8da8fb6642cae96a911ed2f1f44d41c48829404965863554043942a1657b844455cc78d986de84546f4 SHA512 19e74cfbf2f107bdfe39359193c2e109e25b83d2c9d26b4545dc7f1536b1e064110623ef6084d81054bc1ea00c45095aa42f2226a7c41b4f68bf56f134531dfe +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_tg.tar.gz 3672581 BLAKE2B 704a0e8faca3dc50077e70706f78711e26e8f2302c891da473ac6ed3315f51c6b33cd0896afe9d9617867b54beaf57df3e321bdd188c23d674ddc808152afc2a SHA512 0a795694e23686835650796e8a551ef380461aeaf8dfc8eec154bcb99bb4f00b2cc6bcfdf59b028fb74232732579b3cb1b534f830d23c9996b9be39aa7b5e581 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_tr.tar.gz 3763648 BLAKE2B a36336e62938cf256a441ecb9a2480b5da6a89aa00627acaaa11ad4f8f9221b8617bfddfd137a4b781adbdb548182fde252884c4978b18d8d40d4acfafd9758f SHA512 204b6ce0c8d57349c1005d6b7055ac33c608c103ccde43bc71d5d7deda0ac252b486b0fcdf96ce0458b356ef97c857460548696cc4907084479eb638d304ea47 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ug.tar.gz 3782373 BLAKE2B 62997add59faf6ab0c1e5f106aeb23e7ab57eaf9a63ac66743fb45ea3961be841760038b31477bb7e67adcc1f214969d2693f5b27f23460e63cbde63ea87fc24 SHA512 18fd728bb15316fa326882df7baf65717c37d21ba79c1e4fb14fd50b513015017ccb3b9b997b2acb6b81361401a7290aeb9c904282d98d2651f8f53cb7daeea1 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_uk.tar.gz 4085694 BLAKE2B cce360a5a48b36178c4d1abbd174adb5f62f57a39e4ebbfa0bbb6bd6415f822ac48361046efb54e2c0dbd849cf217608b1934354d3c4c7719853ac7855dca02d SHA512 69b3062822216385bbbe0172ef5a3d5707325fa9246d3800022a8c4f18e8147f67900d37b6f82e7d13ed7f7dd59905219e95c7b5ae14cca93521d863825d292a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_vi.tar.gz 3745074 BLAKE2B 748e87418f0f71f8416bd91e48c165ac5c6ef2885e22176493b9251f239b1eef734f27f3196b5f7196942bafe3340e1815f54d0312956a9e15c7438de64f7e06 SHA512 71152261a46acc4c5b3be81a85ea8af49f1ec9e873efac43718d38ed890505356487c50815a0eedc50560124492fb932c813cda22d26469649a93ca881f40057 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_zh-CN.tar.gz 3995146 BLAKE2B 555981ab7f554dc3ca6ef090c488eb1515ae277d6cf2433e3fe6cfc62b8a62dbdba2ead908227386f9afc33101ae04076a1e7f0971a621bb09c014784bd3678e SHA512 2556c23de87336222c32f45c848987c4751f5708c4e8846d7c74164dacc84601f962eeb81f1159aaa09c153b39dfed1650ede1aee31d4d23dee79dd14e46b149 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_zh-TW.tar.gz 4127692 BLAKE2B 30804e7d7d199a32edc4542ba7f2a8af612d7daf77fab4534d3958016aa8662d7379e4e1b0a9113a1723d202351c3473d7a9555767a5c998adf0b19d0e69d072 SHA512 4a2b6f1dbe02a919ed50d4bac8513787433b88174811af7ac19f069aa6dca58bfd59f3d162d7098aac0e5b3aeac32e7aa571cf4194f10fcc2d0960cae60e6457 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_af.tar.gz 1216736 BLAKE2B 1e3e71533b8c6364cd5c19806cf18a62e25ce64536f7c2967050eb7ecedc61cf35fec3fc63e77b5ab2aa316e447060a66add6862bcdfdf4453f675096b7b1edb SHA512 43f99f681c6fa173b581afd52953630fb39bcb78fbb6d58f1e6f6e28e730f5402c79dac14d70e4adb0ebd9fc4db62f650d6bf755456489e3f1ee24f06c9a7a34 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_am.tar.gz 756973 BLAKE2B e8999d0b865d939de61d1f1a3b2c30d8b75b29b27b44eaf7e711b45cf45857599f72605b9f2207c3aab9c0ae09ecd37b46591a5f0f70b6d870e1c25757dcd496 SHA512 d33b96214b66c424d2e8fcf85c6f6fc76ceb7ab86545a2d847393fedcce73561797fa1122d91b21c06bb6a6bd2162d40ed9f534b495047f1bde077383fc589f4 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ar.tar.gz 2403399 BLAKE2B de6554482278c43caa70aec00a0303dc40872c91993ee52a7c0db356b021502e643510c8cc7d9fe59d33bfdab6c8299d11143dc74334c348fdec7d2143892eb9 SHA512 b38da660e1fde282992fb28b6d9b32a8a17cf1f3ad887e43fd9306cf23b6fe6b0621dee6a88b8bacee7580f7f7558bde3a380453a815494f3645f6188980073c +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_as.tar.gz 524609 BLAKE2B 061e2cd2ec191363fe3886ad69dcdbab3e955ca8457f04e061c161d58b629ba997f4c6009af17c6dc9e8aef3beb0b3f027d61848d2c06a46dca4e5bbcb79b6a2 SHA512 82c9c8f3f1dae1941fae24181d5c2d428e2c8450b298be5b787d59f93e5f5e45da8d0e4a91f022a51c9b5a44af4338c25c875ba198c5ebea743f6f3a74baf322 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ast.tar.gz 487780 BLAKE2B dbbc672a99bcd0084e1683ecad57878644df71dbaedeb5e41281b10f12d0e2ce3951bbf507e0c408c2f807c71ee285a9c24dda140fbf157930bb68c9a2f1703d SHA512 faad0706328f874364967a616d006bd09d72314feda9c84811bf51e75def0f868d590889ed22f3e14bda8dc717192b1b8388bb333600b60b8a8798a52b18eef0 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_be.tar.gz 1054662 BLAKE2B 74ea0e77379884bafc1c54e86c9db91c3bba2eaa7349bb7ca0fcdf2191a218d81e0703f03bec0c2fbc859458c397a2345cbb79fe9ca50495301a2640857747d1 SHA512 d1fb174f0696031572889525231346ae78742dc36cc9c4f29fc76035355be570477a76404d63fb434895b83898023131ed5b0205292c2f1dd8a0c076eaebb4bf +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bg.tar.gz 2489954 BLAKE2B 7d56c6ffece42c5298f4104557ce90f24d6353434fce4bae8c43ca22caa92e702b7cd7b63f5788510a43b01ae759f76858574a0fd3aefb7465b744e80f4ec843 SHA512 e26a1624db4f1ad00d1057b1894be65882807dc01cbc5693f16b4073ad3959e0209eb5cb4167fdfa94728a01f4c40dcfb49892ffb38bbff9eec7678925abdeb1 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bn-IN.tar.gz 635098 BLAKE2B 376954684b6062928fdc8f48fe136a79941ecc79ec753be46a379334679f71170ea6f938d8ad2f10dc5caad228f309565de72645c8eacce1c8b4e0d35db88077 SHA512 0f303743ffaed2f40ecc5dbd50c6045c53deded1a6fe3f2f6ee6ac42fb1766f528677bf305435b20411503bc322798d77559d0c2a19a6543a26750c068a7b7b7 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bn.tar.gz 786127 BLAKE2B d5b8f0212a27db75e643bf0828f9ebaf766d9a844dd55804d74b5bf4357357e6ca7b39f6f60decf6bbd2bdbd8acaef5024dae5304daaf47e5ba961055e4c53e9 SHA512 e76079d23336fd74131d31759947f9121ca7658d69e2bf79e8460359a440eb4370aa7f269a3597b53e99bb08af5255caef17c399c777ecf0b00ed448350a8c51 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bo.tar.gz 378797 BLAKE2B fcf2bef48c5ac82518df29a2e39f9a13e050a643ee46621e344b3b20a88d29be9a9052a43cdebb9b7f74309cbc02ff0a9b7f605b8637012d8fac257a18a83b6e SHA512 398a6e77682bfc4ad5cbf10bdfc2b5ccfa0a62c943d12dfb52fe7c82dec13c3e66dba43487f51b271264aa90fcd655e6ced63d64d3d413ef964a7f8a718f706b +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_br.tar.gz 1523330 BLAKE2B 99453e244185919e5935e0077bfe8835b5c1f3ef9677a74d52faae5d2371002cb2c6c23f82338135b4cfd470e1e78100d2b3dd6737ce28092767d1c88a9b83d6 SHA512 e46aa3c9fe3d55c0a4ebd8d31632e65d71801b7a8671563ff9e6e2db62465d1e6037194111e9abc2c57e61e681a51e9867341ef26a578a679a82354df1e46ab5 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_brx.tar.gz 337260 BLAKE2B 7a54775ca268231a4f3e6091e50ed94c3fc367c8dddf26456c67d0df57fadda06b57ca7e6ba20f7072211c689f17c9ce348b06b628af4709f6f7d3b10c6c0d0a SHA512 5cc74a5829ac06e908c71592dfd1b5177dc0a3e5d0a3c637daaf0262538941bfe5303973c6a98c316cd60792003a10f2eaa4df89b78e8268cc0faf1c77256358 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bs.tar.gz 628883 BLAKE2B 9d4bc080961a73bc792acb9768319cda309bd25f0b09560782170db27222fc144cb74c2c052e7748e9ad286d3e7768193d712bb1be945fe0c18b43f8f8774fca SHA512 3c3bfd8e163bf58daf202a5be00fc88f3ccf50535bdc4618a5d9690b266a54fc07b2104d929a46d5d9e4a6822c4f636594877ed1c7e93db2cbdda5ecb5bec760 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz 2477853 BLAKE2B db327dd70ad46409e452c5dadeba3915e26c47da0944dbb3e2cabafabddb0f284b5ba75817a5067c8b3efac420837988ce45c2e2bf79e2e4bc887728f984e450 SHA512 c86f316636aaa9e6cd527d795a57440589fe51df377783d863b2eea045a301706d5c1f3aac7e3d277c0c47f922cfcb8893ca32b6ea565b351734ca48afceefd3 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ca.tar.gz 2480544 BLAKE2B 5590bd494dda5ea16b4d15e21092e06c76df795d8154dc63bac2f46dde743c364ba2132f4eb19ef61cf12dcb0b1034f5289c83906fcb1c42bd28c3f79959e318 SHA512 0b7f02dd38dd05983ea1550ee219ed9761c703a101fb062f99a385d38382b5189096469a36ee1ae64c554c9014e688a763d6fe3c39da55d04c630313e8419ee2 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ckb.tar.gz 366784 BLAKE2B b390d937a370a9536ed1dac525535445fab85a177a2696ae86213c4e216be62388c7c5010a327bc5b55d89bf76f65cf0dfb067afc1f994d3eb78002ba9210b8a SHA512 6b3c7a59a2941ad385b5c7fafdc7db8917037878b05d5798a217b494cbe0a1dce8aafaa438b4bf2c9478baa34ffee8af438496163f23021c291eab3a94667168 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_cs.tar.gz 3229804 BLAKE2B c695e2b444e67be4e0e0809081d63718c6283046a3f4f9da233f89f152212bc091e7717dfd7cd01caf1d5f7dc41a5f641d1d8b7c8c26f98d81427a64d0e47225 SHA512 cb85508b9cc07f8a52001ebc876497dca3a50f8bfeb2388629a98df51354f3a1e483b1a4f53ad76b967341642241dffa2d2844edd3e03e8564ea1307866b1f35 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_cy.tar.gz 769586 BLAKE2B fb6e9e9cfa62209adfcd8bb1b60c11771ff89e733d40d60401264563364d538519785ef8bc7dc82bb93adb99e544b89e80127aa6e7645c3117c8d791b57edebd SHA512 a67b005f3bb49c9d0c8e8b9b92ec3cebdaaa429ee636c73ac5069dacfe08df8dc9fff4da0debde7a6ceef2a804ca2b43ef92d85ab736673d1e8fce2c5877202d +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_da.tar.gz 2867352 BLAKE2B ef2893fdae5526a594d69b2a31de198fdb38468cb241ef68a602636ede8b6304f8a148011a9e72355e81f77979be01e0fba2750c1aebf399d49678ce8e516ecf SHA512 63b62ebceeae785fc150f2793d8032bf1fbdfeb7f0dc7afa881e6fd105981e99f1ff11e8a53e2dc9e32dcadab0131254668c110daafa284dbbe4bd342151e875 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_de.tar.gz 21797165 BLAKE2B 34a435dbab7a5567797c6028bb64b693dadc84024de0527288561aa4d765747d04852969b22ff4fd191a34831ff7cc4fbfa3f3d406a1ad23423d42f5e7d82a1f SHA512 c4a8f1390c49d8da675a95865c1d5cf44ef5713fdbafbd9f63db7ac2489c29e5b154283e224ccbb1184048b7679c46906ae8beba1e32f10f21756c4c993652cf +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dgo.tar.gz 435629 BLAKE2B 4050cf605dca8f121c6d987fb9c68aeef2e5504383f41c8370a0afc425c9a27a27aacac9f256c07f40fcb45de27c7f407fc84eedf9f588bbadf98a580489d876 SHA512 581f2a468fe5da6cec21152552e352f2bbfc7879392f1705ac4ab9e69ec8aa18aa407f7624343ca7b9ea167225cf7b25be7dc615db6a4f0d0eaa1acee4490d92 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dsb.tar.gz 792418 BLAKE2B 803febeee66d17dc9e45bd9a76b1d8dd6c7a33ba8df250a437abd48749bf658caceb8a2bdac1f6d458e2df017185af1e81cb253b0312c362165a0c2b844a25e5 SHA512 9a17ae8766bca314fa04c7599f79c0cef97a3ac28b3cb7b8448cea060f3ba81816191c20ba683fbab2aa349c6f0314903564a49b8ffe9a395586014c39977387 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dz.tar.gz 366376 BLAKE2B 9f8682c0a4ce49bb164c4c1fcc5e27b5b7d9613a218269eabff4a806920eade63e212294295dbdba2c621fde3e150a86a8fd65e947378ddac8f882773365c20c SHA512 c38ff33ba1b711045cd278a92aaa5dac15859ed36e2ffe7c749dc68b093807883a86c5446ed30d9e074cead48caa42dbabfdbe5cadf845f3b98474ff4408badf +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_el.tar.gz 2877677 BLAKE2B b8e8036ed95752bc13b256a255b03058e33c27b0c62c2f6546c9af5a642cff9badeaa6e5e57e41f522a7d086a3cae06b5421c95efbb5dac8a7804a10feecb3ca SHA512 35196c6953336dab178a0d88da40576e0cc7df46aeda661a8310f973c687badd80c9b675ab41f51a5c146438b6e566eaf79c5469a188adc198f3ab265c3b7526 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_en-GB.tar.gz 7388597 BLAKE2B d46f68f2a83e6eb8744787c230641b3f9a09fd6cc09bcc5c42e9b0baf4f6480ac2e238d3f0e5bd7d719e8f7c542a72cedcd224e183c4c976ba45cddbfb7d057a SHA512 74d4d42fea228d60cdbf6a79ef2de20350d40dfe2e4627fd5895dc6f6a011b9baaeb8bd9a530953d56b4a5c26d71712c987f902651f16118e29a94505491dff7 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_en-ZA.tar.gz 6934590 BLAKE2B 25b70ba7a1d8f4f8c771eb39a1534f1e85ad03dfc640c930e563d059f865e9ea9a55e72e903ef20632aaa93538b8c7f9ea7686cdc852383c6daa78659fc84e40 SHA512 f4827511a20804cadba05adf8beffdb6f59493a00653c97257d3c4eb1eaafae416dcf105655e4d3d482189ab80a10200155ae8e3d62797e1d8bdc529bbad9a45 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_eo.tar.gz 765081 BLAKE2B 44f87447beca856b7ff70c536119915a28371f4b8b1fdf70179ed75d0095050ed125d65005481569bb32de71f03bf28cfb36728cae3b355c2cb5c8b32cbf0525 SHA512 3cc73e4ae19718cd5c551ebf8972d18e97ed60d2b6ec3e1fc92d8dd809d9c35436c835da3d61ae744dc4c1007709341010c096123a2ae65cacc2c7a295b84808 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_es.tar.gz 2278013 BLAKE2B 326252af461a5d8da552298cb60c3df9ee02078bff07fa5819d34eaa48f7417f3c4a78cdec063b2b6db724869711423869e29a62c1f068bd9a3507db01ab133c SHA512 fac229e91ec77b2850a003dbeff50c111ff251f3ce01e2ca7a67fa35b7171bc0d0fc05e3f163d82995ff22a2a0e08e77032b3e14ada1ccaf8ff2683047fae426 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_et.tar.gz 1681694 BLAKE2B 7ac7d3b8075e01500308b1e52b4cfa010ce135cd0139c256180e7c0bb7ee4732b13ea45074b22410766d90924e274986bf547d345f3845ceab1307f301bce059 SHA512 d1f6cece346007527dbecd4f572fcc87ab2c2cee57002866f76a706e0db6caa7b432382a41e4f9142abd7cec5a4a258c1c359d4d4d621740cca2f8825fd8747e +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_eu.tar.gz 774337 BLAKE2B a93f046a920d9e0f1ae16af8f09cd0f563575f502b8d7df94c53b982b619e07eb94b6ffaf895378c43c4de545cf0b7ff2b7f3a1a26e4da03dd91b40422434f34 SHA512 db68f0fcd15639dc518c8ffc7d996050b1d732806c66e9beb03006dc36c8dece1cf2c31f27726b78aeec474844f5ac34b8f33872f4f1482b456d696d20aaf4be +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fa.tar.gz 337114 BLAKE2B daf43a3e77e354ce2c5086272428792063afb63dd47884bf61adafe1175a0174386eb617b1d8d5438c162cfcc4bcbe1aff9876f82978a82106030d22b69b5f6c SHA512 397a6530e6c20fb8e9f7252d60f356d4f4731dc93ff264ec001349009c71797a09c02b0f63a6e3ec7daef43bf6a622edb969ea81f107a4ed92c204adc5a56c09 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fi.tar.gz 744450 BLAKE2B cc42ba763644a7e97e3baa52dc6db2f9abcd5931544e2eb29e1af28f826468cf93f723b7e10ab232dd621053084e729428dfaf10856d64f71f578968e9cc2a9c SHA512 674890821abc2a0f10f3ff9cb7b1ee77d3ad940fec6b108e591c6485818cd5f6c3829039560f83e94646d5fc8897afcf8553536bbc8d9e7343960605c5ca8e6f +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fr.tar.gz 3076633 BLAKE2B 50347be590d02c05120bd593b45b62ecab234ce20e3f898ee9bbec52d3b3e5ec08c00f94677c92cfb1a757670c51eee57c47c554f859ab5c42bf91ecba362bcb SHA512 6c897cf5858200105c72d15d4dc0fe3887fd680edbad9234f1ff390752f010fa58ad9a3aa5c9368b2f9618a572388b81ed5bd65a05e1e51909ad8e2adf78de9d +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fur.tar.gz 166762 BLAKE2B c8d39966927c091bc4d18439482d1534fac94cbea83ae3c6af30b683b1407320cce0738fd74572b853e56fe72a1cbd464cb3312506b5c3b948cbb6c849b0e2aa SHA512 50bad79be1cb80e89b870c79b3cd0a70ec4698811e81a23027e3be65f866fab4457b657cf0cf342cdbb11327e68a62f8f44ee9bfb12450721d8976ca99e83b55 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fy.tar.gz 774604 BLAKE2B db9308e45b180bdf053a59ed32186f1a2ac5b3304894adf7468212bd7d9c00d187d4a40f2ea86c935913e815c0a9039e8d8cff6455d32fd9b0650b7e1fff25ce SHA512 2ae9b229e82f4e918efef35b29b2e08e54483cb5c84e17499d2f51f642d8a3c9abf7daf171c8e96d4c39d46e8acc57bf6b666d717cf67462039d8f9b85373635 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ga.tar.gz 728323 BLAKE2B 1dbef88742c09a52aa62c7eb69e80b41182adfbe7e7cbc8ba36f9f98be0c9d2554138ae195314767ae8e55ad121a4be44ee4d83116f8a2222e8f2fbb0978bd33 SHA512 8744a2084690e4203708f670ab8696d6937fc391386402469212d14a5eb2abcadda6823119815d77965cb1e9cae57112feb82a791fe770892e9c358d4c1e76e1 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gd.tar.gz 1776024 BLAKE2B c3ad1d7bf6b4545d4c86291c83dcf8dc63bb84c94115f2191c0394502b02b2efa1daf703df9efad939a2580f8807b5d4fe4edab49c39b92a90850323694eae4e SHA512 d56d1d8c0f8663b411f7749c3806393dd553bf3bb976e75c3aa3dc108442ecbde7d50fbbb9c84fb398a5216a22a333390ee1ffeda48c803c780fdce1be6c68b5 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gl.tar.gz 2666099 BLAKE2B 80b90a852a702d9b195277d8e9ef5b34b1742832078c907df275c10c37508066379d41eeac9013dd9d08bcef2f6c031c5c323a263d011404ba0b70deb4600cf7 SHA512 2745b6c82c6bb7c7e88386bb8799a19dd52b4a94a901ecb1c9590b92b35dc3160db7e3f0255741e978402c5e66bdea24b39c467afd1237f31283152748e295f3 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gu.tar.gz 1217898 BLAKE2B fc77c3845d90c562bce46ac9788173245ae87d06684500765634202bd4694029b5bfacc6a345d2add9a5fe874f61f4bb43c85a12e53501f8268f905d8b44aa60 SHA512 a5752ff9a0d78353cf564840aabf3241b6f110a89e66b720abd978c4a3ae54e5058679e59f6d5759f8ec55b397255504350741fead2f1ae7173bb26d391673b4 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gug.tar.gz 512992 BLAKE2B 832aeada2189a813076f887652f36054d279ac4d71347572651c4d580033fb27a37d4bffab8bb810e9b07ad3ee10e1842f87db7347d3e148ac3b57b2fb30117a SHA512 98d18bcdd683d26f7a7f523b0db638e39f54f16ef078dc82f25d6b3e969875e23c9c2b601f3743bb18189f763f27921c648efca5312efb1ec0da1912508afa02 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_he.tar.gz 1652189 BLAKE2B 94d681c30e969f82b5246cda35e96ee691345e4eebefaace77ffbc743f8dd8f48da2862e6a9e3b93405c9292364daf41ad68bb005e7a8345e759d98f9df41697 SHA512 e3c2e56423ae161eb312c972200afbd9cbf98d17e8c10eaff4d6ba03b709211bea2af4736cb505e456073e0f043ac610fa61e5359d9d9cc6c210bdcce28a1a5d +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hi.tar.gz 563380 BLAKE2B 9dc1fedabc87c6c5ac35b04bed1796ea1be101a6239ae574f81a7e1de9b6317d3b8c20f25293e8919b06861c137a25cd5bf26a52d8735d4167fe2d89480ee8f8 SHA512 cd5fd4d553a73a90aa7379d1df6ea761ed0cb29c1568ce1e5a06479df2ee69a0bdfa68be9b12bb4af600356569615ebc0143db52dce7070fa55690ef71e530bf +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hr.tar.gz 990497 BLAKE2B 5cbe275c405db82a382bf3742d94e2ab2f3dc41a8a3abc3de47f6cb84dfda586baf427c68bffcd3516b6b7d6b8cc412ac86f8f294738121f9d2584fc24ba0d6b SHA512 6035c032a0168358899936e61a8e996d25f4ab1853d1271a118f45f9d2929c8a6593a07902b7afc224da01b99d6194173964eb57eb41eb739061e827d631b7fd +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hsb.tar.gz 790864 BLAKE2B f72664ecd8ed801866f349401e3e59aff3e40f0e11748895719459caafd59b755b9bdb8e8bd3a9ae4b4f1bfbc61b500ad397b49afee901eb6051775ebfef3f5b SHA512 5aaca3d4f5420e56ffbc12114704f5e66329ac4e59bd01523ee8b7b88a4a708df507361bacd74178e97f5229ac9a7563b08cea2aecf20d08b9fe057eeb468b73 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hu.tar.gz 3032796 BLAKE2B c99b31c705e4d59cdf032dba301f753b68ab26a2c89819daaf01213de17418debc1b7790bc8fc5246d21a3263664f9a26d8bbdf8018988ec2f18884076b0c5ad SHA512 d8be2466076c9b61c261a127e91dbe5e82727d8cdbdf5e2c232b26748bcde2430fbe19e994fd9b4f1dac3f94d48e6a0e02d62f1cee4689d4050ec27a80a08b5c +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_id.tar.gz 1632687 BLAKE2B 47a24c94abe187491c70749b620b59e113f3e0e8adac5df8edc6926d4f3a116b5386bff68c93075b8dc50dad87dd344884a67522403803dc2b68a3f5fbd4d262 SHA512 54db3929d6b5fd273e06eabafd011d0236bf9221335cb9eecced29c19ff04b720aaec4c2e0011bc5a664f5bc54fe05aef29fde7132c105b7da02d00189ebc510 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_is.tar.gz 1533431 BLAKE2B 16bd65dc9de76b927ae6a169d9a127b935b762e294a7d7a8a5942828ccda4fed839c6eb68a5e22f677de828d145856eaf8e737c208f7b554f5f8eea1126fb34a SHA512 79b3c9b47fb7818049ab4c0ebffa6380d57a73408d06e9fbd7edbe176aaebbc158db05f9dd5877a3de84678755e930adb150ebfa7006454f7f4d8faa64ce7d38 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_it.tar.gz 2108623 BLAKE2B 788f9317bfbadbbedd34e09f06d2800b32d1d10aa8a0203f438e829f4c218720abcab39d6ed0e04092afe5d3d9eddb8c05542da6d1e353b3583c6afbc8266197 SHA512 8d6ea8746c70ec4539e9de73373f4c4fbb53949bdb23ac31e8d1c237ef052852687a6a35c54fe3dd774a4eb811e83f395f95da9f267c3c44a4781384052bc582 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ja.tar.gz 834246 BLAKE2B bdc5c447af10fd71e522b3afd7046e96ce293c872f9cdf297a852145528c2f98446b2606c73fedac658a84b73a2b173b62301ce5b6450d2e218ab3164131683e SHA512 878091b46ada57c6dea8efbfdc5eff35a00ac2f3b09c94551d3d2009d13ae374dc3fcb704b48ca952478d1cb6c5956b86d3aff6a13ef1d357e69925d9f3a10c6 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ka.tar.gz 357585 BLAKE2B bd90c091b2b981bc85352df23a03133512cd2c5f11a9ce141673c58c1580ab2b7852920ce4ab8b15dea05ac1d728c1697cbc273e80d29e60593cb0e29708e34f SHA512 6e614ea89f5c6d202393c7105dcd8657f6a4cff0c6d32fc1db0da17d384a8ec6c660add6909a2cfc61e34163791effca88a7e60b91e60a53333f7a724eaaa3ac +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kab.tar.gz 635248 BLAKE2B 88764d5cf3b890c895858b2a13a973c58649730ef686f6f5d72d0fdc111292ea6e794887e9c37c8cd9e5b9359b435025a262ca3cc13566112765b73fe672a7b1 SHA512 2cba40357eed46422da1bfa0e3e05e9677488a55e537562f377489d85e913b111ac9475cd4ed097b9393e8e9b6a3ca6037bcf50161e35365ab544bbf1934ef2e +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kk.tar.gz 832100 BLAKE2B 8e49c366c9cc8fd20c18f72f97af3bf26876f949a6b0e00ad9b877bfdbb218c8ceb3840037807857b2358b3ebc84db4ec0a7ffd22f20529cecee70d906de9a29 SHA512 f0320211d4ccbf1fd5f01ae3b6409a84da6fc14ceaf1b64bce98d001d8a8f129e6da13d0d6a327b1afde3b3adc82a3b52dee09f0d8a1fc5c50780d5c17d3948b +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_km.tar.gz 669449 BLAKE2B be0de7b820caf0df2f504069a01775adffe6c8abb28fcd8fa22c572964899c69667fc00ca71ee45cce89fc90a4811abacf7835c051aad05ed0d867c9e79bd626 SHA512 5a134d758555fd25b24317ee609b11bbd375962fcfa133d3cdbf9fb89ee0225d3c6a9ad5413c1cc0a5a450530490ae82d596f7a1265d07a7760f710d6590dbb6 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz 335641 BLAKE2B 818109c24853243ac12fa782deba87c1f9ac4299a2cff1577cdf255768e5f31ac8cc6d123632f946dae072e635a109a754d7badc48a33c1ec60f3c911270f0c8 SHA512 6fe33989516e4001c39758bcc06b7cb1e9614f6d3250b578e8b10431e8f3412f2c486b36b50e6aff865fd7ea2a36e88cecba96a39dd00c43433dfa1ba0f0bede +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kn.tar.gz 574923 BLAKE2B d32495c88ad7bbe2e1cccc852fc1d4fe0855043f1fc1fdc34c98c476a0969d1a5fdc9acfff8e952bcebc943891d4b00e1d078bd27177973fda168d03bcdaa2b9 SHA512 d96dd34f13c60676d804c91966b43d341e2fdd22aed025f13db3d27fd87c75acbb6ea1a7470206adbd8d218c89e1768ebee73072be28a5891fa5aa8c4616c6b1 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ko.tar.gz 795813 BLAKE2B 42f62db3d9c89a560cc5bcf45a6a6e51df840cff211377ca6addcb4f0db2e829ff74b13cded02a912726b32f9956bb279a7bbde581f91318b8684b27f4daf788 SHA512 5e538fc555f33da22ffb1f67963197eaa89d8c01a1ac50483cde4b8c2b8311cdb519132151999d4cb7ea760e0d9a2455c7adb1d193e4d00b45da5bb1990ba44a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kok.tar.gz 409849 BLAKE2B 64c5c14ee305ce0378d0b295db656b1bfc045927b746c9194cbe8770c20a22689e9901381d785affb7aaca362e7267dae7e104d533d51fee5ae30dd39019117b SHA512 36d1e6d28f4625f9ca8136f9f6592e18c293f254da948417ca622ffd2882c6eb6737d0f0216a9d7b3cf822c0e15850f0207045164e71189e6ebdc5077b9dd3c2 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ks.tar.gz 330395 BLAKE2B 89c4bc49ab54d57faa8f863f4576a1801dbc9a862f9f9529e49856a887792732b492458477cae18f67a94dbcf70b31d09908a37ff04338b1885e79ebd67a59c7 SHA512 644b95aff959124f28bb406739683bdf5dfea6c0cca96c64c3d9029b56ffea50b94cae0a1af27f8b19416bf407928383b464926602b89148c8c57d20f2c7008c +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lb.tar.gz 147086 BLAKE2B 22b42b5b0e03125412d4f2c42c8ecf97bdf24a8846f241b200f8b369ce7adf5e6df15b06e446f76235923cee668e69292772e59c4d61cf2d7e7fb39133e7a377 SHA512 a053263abfeca0619e64d64eedd3088a115dc3acc34a2d4ac76e7ceb7662d8cb2c2d8dd98bec2416d015e0dcf833e54c447faa09936e8bd18028dacc8250ff9a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lo.tar.gz 432945 BLAKE2B 390425a830e0b4f2a974126145646368e1cdb547fc305f31eaca196547486fbdd71586e465e36073d96dae030c67aff9524e84a9a8e69d639f5163f7332e873f SHA512 9fcc3f28bdbb71edc5bb8e195d5ae3e73b0e33cb7f03f7e0b5e5a5a19cf14d1e7f25636710bfa6a7287584ea2b7f9727e6cdc3a004b633c60b6bf11a5adb987c +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lt.tar.gz 1067365 BLAKE2B ae9fdcf1f9cc35c3f6e189953b51d04808a4e7d4a54bbf06a752954d735cb990ca742ef34837a10677123ccf9be8972d993141212cce0f763e66a35e129f4b56 SHA512 c319ef52a845b3d4b47460f8168c76c6afd8214735fe7eb67a9a6911d46627132474cb0f217a264e3f5793187c1c0fce63f62d19c51146ddd81129261193e855 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lv.tar.gz 1165454 BLAKE2B 008906bfbefff63c1d31bc1e30e0d0f39980b40f29fc1e95cacdba24fbeb1420d43fc8920a5b7e6be2c89659070cf75fee37affe9ecde43085d8bf2048564c16 SHA512 6b0dcd52d502808994be961707d5388e33d968b2e36627ba76dc8f2619650dd6d5b6d602470296c5772a1635f72daf228001f52d59db6f8175dbd44eebfd9481 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mai.tar.gz 330823 BLAKE2B 69b1c81612ebd689d474b41ff3ba7dde11103753bcac0735f1a7dd79556877ddebe0a6069381e5bf733ba616a542eef67a7028b052c80eb99d9c0b85cdd3a310 SHA512 fb64f0ade0f6652e4ef668eb0a6e85ef5bfff0d2e95db35533379eebf418fdbd29c8dde39ea61a8ea91333a4ca1cac2f3f14d3f5d9489559ae999eade6cfd281 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mk.tar.gz 381855 BLAKE2B 20a761c7a788f95ced3c661d8d86dd410d9e41aa7ed358cdd4bf484de25ac996bf1c1172326e396fefc856115b3f072eb3a4228f102c87d643a8ab5b0c195c42 SHA512 1365238509565148717480b82d7e13b78914d902c43decfc7cc8c0e04f5fe069af772e2bfa13e27ae74b16aafd5b70c09f2eedaa7a93a8928f811b3839677bcc +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ml.tar.gz 533036 BLAKE2B 29b4f68c69aac7d4b937e21186dae7f9dc6daaaeb590c029883bcb56718f11a7c1c521644c92ce9d4058e24e9ab6964ebe8f43fb5927615ef3d5c4daec815715 SHA512 4d68e2a4072b485368e44f7b0eed2166ad5f3be33bbe4b00c73a425996d8d1e8ae0d7bc6a87ff5e03755a62eb193ab2047282258231e7f0d692d0b1b1c7966ed +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mn.tar.gz 692144 BLAKE2B fe25cb1f5117c6cf3b7345666eab1c6234a75580e8d7a5a5232cc587d8c85dd9cb7746b6313cdd52a18f5a4b231f06c174ffda386a0b83fcd62a1d62a123298d SHA512 305bc4699061988fa206c29e3a0a31a1cdb591012958bef2354086ea801cfe5cd4425275d29954ef40d18191ca57716dcacb8e8b033471672d4133f0d1408044 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mni.tar.gz 399359 BLAKE2B 1ca66478edd587b782f0b69f984b2fc2b43264368c37b7b1b5bd79057630f9c1484903f2cad033e69413eb606a41ee0bf5f0a87df1e121a0019b3f2778824015 SHA512 8e24a50fcbb8c64b8f7c09d5a6efe838d613aaaf2be2e10475a57c8483b505f38ee1e32e30e39d689ddfeb6a3bdad33cd27ce8c09d9d14c3a478d689b65dc76e +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mr.tar.gz 568526 BLAKE2B 7443539ec0aa414118a836e479f8bcb13e4badb9e1b3b18ed9af8a8cfebd6d87f6a55cb0d2e28c0136a113391cdd9fb3f7649ba011a9594c69d9cb9e7598bca8 SHA512 12e21cac285920f2a9400a004d4a1182f471d1b8388ba04737e05887b34b5bc73ca1024b11cf4e5350df7109ee4f362e6ee0d5b6f644c8b44ebb5eec1a44ccb5 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_my.tar.gz 459505 BLAKE2B 53a4fc4cab26cab45590e9b59673e79d5ee076cd81b9af0564ee0e233654ce5277d7e16afdbb12224a20bcbd6dbb77861973bd81cd9af5137504ab6f303813a7 SHA512 0194b181ed4e302a193f0fc8f257a34dca8b3c02b16b6c981ebacc84853cd8a22ee23e5f6e9f6de3d11d659abb9ada66e365e98ce66f8b7bbcc6360aafcacdd2 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nb.tar.gz 4109747 BLAKE2B 167d6afc3dbcf4d1d322bcb1427eb1f4a14ae41cfb62c9841ff65db8ff6cbb9bd029da5c5c5e04cdc0119387763db829d27c373e61061f64ca77a2e3eb6b608d SHA512 8858cee88d3ada4015d6377028aa3740fbb49acc114b76d883eccfdf204415e2fe3b65021c1c42bab6a70ecb565f13675290c7ef549a37085528af36b7cc62d5 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ne.tar.gz 840813 BLAKE2B 59d02e726491c40ce2c3240da236690796cce5021cb42693b795ac47ff0706ac2b4cb52e0cd21d2eca8a1cc809afb1d71fb417527ad0b452415b0ce52b7718d2 SHA512 1f73694f711026436647843fc121c5a3ef51412d7ebc57838c81e1f6210f73e28b6770c921f60dc9c09e5331d5533dcca03bf05e09375157d2557ee6aa8e18aa +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nl.tar.gz 1564987 BLAKE2B e0bfc550c7d7c8313b576fb4168aa7eb636ba598242b6f0852fb2a149a322aca9f183f2f9df3ee127a403b7a274b4d0b420a0833e7f6d549c2fe1136ac281a26 SHA512 377ea0aa04a2af382be8ffcbcbc359c1222f97c8e1d2c3499d938f106000d59f204faede0ddda8e707ed616582fe4cdf8bfeb0ead39210c10afacb907b623d20 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nn.tar.gz 4110628 BLAKE2B 3c32a9bd50ac9f5de2dcfe28e3b9d6821141f415cf33deea405b35f4d6a628c43ff785b7c7459a0ae5757a4d6117e764683803448078143e8e9f09b28566e632 SHA512 b35c7d7731964673cf5c95582e034abec9087a3c70f40dfada53e2d3cc60b2617e5719cb70d15c63f07d3996739e243157764b1297061349435fa937cd3719a7 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nr.tar.gz 278984 BLAKE2B a26eec2383a292e56a00396df5a2c43ad904475b28bd7d31f7775689e6421518140573e7c62c71d65956af81e57d3e64d9fdb655efd49d33de5899c9f91e1eed SHA512 39fa0b5c32f9b0d09ae01417ec48819ef51bb47ca82fccaf06693fde1e4547823836a5e6514003bd530c2010315f6e35b3d5ab15668ec9c8b724d210e63703a2 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nso.tar.gz 321511 BLAKE2B f6069919df8c5354a0411d7b7028a4afb7ab3ccfcf9636e65247e8d52a42e599eecc2ca09cdc2978f2f9db7486eda6cb84b333b792c4f029b4fc2209c346a046 SHA512 c4616eaf6e601337427e4034cfcbc9bc7905e740f51156f1eeb1026c0099eda2652608ece020d23f7aff51e80c3df0dbf772b42969c78c1044ef26012dc2a163 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_oc.tar.gz 874343 BLAKE2B 235918c913d744bc452befea6a14eb52dd908b0ce30d79967c011a9becd55660ecaf4a91d8f0cb19907fc12995d67aa3f4bf9412f50ced790d85f8019cf79d5e SHA512 521cbe3deb4f46a7764044ea2417388cd816fc69288b4f7ee4101d23ec50f6866bbfb45e549d7bfc7f5944e0ea34e098079735e23a3076a780e58c153159ee7d +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_om.tar.gz 369435 BLAKE2B 8754b3b8d486901c057fcbab25fc1b38c28731df802dd43b1457ef5ffb9072f81c0dab2c56e760d6f0906f0b2ff6154ffd972445df0075ac52f6932d4041415a SHA512 bd4d0ab8e40e02b4c7c0c100d0cceab531abb770bad09d13673f81b07903aba93c9b222a6e1400f1ce10a90dbb6ba77bc5a3ad7b84ea65b3b3b42d57a2597468 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_or.tar.gz 590944 BLAKE2B a30a9dfb158e6a14d6f7fb4ff43769a03d049bd35352bc1bc4a87ea054e4c001c008bd68a27dc4b4a0aaed0b7f1010fabb087eb9149d141935f4cf374f205249 SHA512 44d4ec7ad8ab863b01de8a12c34e32122641b3a3eadfa47df476a5564b86d6d6da25ba2032645e6a3ae92980104911ea294428b7c787ec92136fe79bd272afd9 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pa-IN.tar.gz 470089 BLAKE2B cb3b45e201dd55379127c2e3f04bcb9c0d95fe1bf1b3195159d762114a50f1ad2edfeb44812b650ebd9841cbedd902c22ab7f9d8de012bc91de248bee78c2b0c SHA512 3a2facaf32083f9468a6532b28a382d7a82c40b91769cf44b6d30e79b1bf0e244973961744efb0e2cef1a4dba3dcbbb60a94a9c0c613ab9f2691c32bf1625996 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pl.tar.gz 3136426 BLAKE2B 1905644fa037fc8c193b4fa8bbac3a5c3fe105c6bc6964d9ba6b522bca302ad3d4c93165da7b6d2c131c07532594486183742a6cd370c0164e816b17ff9a1d9d SHA512 9992e90dbff61a694dbf8923297980826bb6a08bc0735d5beffde67a7e65612605a8ee102cbcbbd9c660626468346713e60cd1bc9f1cff12c6fb8f8a98a33814 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pt-BR.tar.gz 2854550 BLAKE2B 0f20edf870332a9d1472d45955073281b1885c42d84dbeea6d4070cbcdc4571e890275a2b2364a73a9beed0e5cd5764c78fc2c1562119af6dd87f9c7e4398a96 SHA512 5f3f7f3b30f9181a7dae5e66ce21fb7926b5f55762c0927dd54bd3e7fbc620de4d96c700ce296316fe3c1bb3d385eea34f7e5a42fd60c7815dc8909373a2d7b8 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pt.tar.gz 2411498 BLAKE2B 7e81a74ed9977771a1af4af96c33e479605aa18586ec0ac78b99eec01872a6899e863aecc0e67ec577dba5b721b7e91d7006108db7a97cf43f7312d030be5e7f SHA512 8eb1dc849dd1968df36bb6caf39f91348e1ed914b6ed95e13efd52067492dbaa2cfd0ba3847217fa0e600e17c24061b2daf87a8d2d662f2b98df4b07eb5918e3 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ro.tar.gz 2514717 BLAKE2B 3af601d403918738e6241e38efd67c202f20bb7de3a36c7a051a6ffac3c067111ad029c7c019898e364498ba004410c05f14d48e2d0b9fd81f7856f4c7bfb523 SHA512 89fc333b4882bbaf62043c0bfb38e9976ca2b4f44f9cc62d2fdd6a2f6a29479a7ce61e7220ac09cc680678f83ad1c23c62c7de3922763e638e4a2b6f71c93cd4 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ru.tar.gz 2130516 BLAKE2B bd0c23e41b8137428cafcfa892e6eb7f39d810cdb6c71e3a1bb1efc9a9668ccc3b49920899736b5c9f2f2def958318ce53e00871734d138cc89eafe144169398 SHA512 af58856e9f8f77d78bf975b69c6015fd7484d8dce13caf828bf375ca6d36c9e16732de169543ee4838d04c5b4249270572008ccef68cb58d0aaeae9c97a7c7a8 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_rw.tar.gz 345674 BLAKE2B 28f334fbd565acf19599f57109ad341826927a4176aefd319bf265f09bee13e009f709550c9f808bf501b562c4f8518044c251a47829993b2520e6a50257062d SHA512 264f38e316f20020e6a0f66f07771930a014c2c867f6e63b1e1d397f0770bc62bb7345e1bf62a99e3a0da4c08309173b55f13aef8b7826c0cf3e28cb2b2dfd4f +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sa-IN.tar.gz 446520 BLAKE2B abd5df0fcdfbd4ff18c75ba72cef605eb2b98ba587ee74a14c4061f48b82680255d917963752125cd619573f00f9e0fadc2eeabced7584e81f08fac5e10b1a66 SHA512 96ee85e837313d7f51c43f1dd1ab1952a513bd11972f6e9d3d533e7740c12f42d3dc6809aebddcfc9f314e21c0362366c99cc63bbc433657d9ec887c03ce6352 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sat.tar.gz 514137 BLAKE2B c5e98a27ddfe46da7252a91703f6a316f056e856efe99db1bdde6a28b1cd2e4b1a8b459ac6170a8c30ed4c6a0d6e71c1dc7b028b4f768d4c0d926684b742b007 SHA512 ac47ad2d59910f84600c054a1fa7ce795f2ccb3c6c23518cfdfbda4b9a40f8707f26a9d82e1a07702b917e449312ec145a0a2466ab8407a2001a68701d198c4b +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sd.tar.gz 433388 BLAKE2B d532d7dcd2711f9f90144b4c59f0575d1c7940c5c74aca7986105aaf7ebea324c1bed190aae190d3318e7db2c5a32d06941ae1d502258db94408ffa88abe08f8 SHA512 0658f57a572a3c3354b232c2a3c20a1b058b183e3ba04ca449e9f8c19ce32ade4690ac0dd6a71a04041b9ea4ae8d1f196ad5a50d6db31851c917d2c037cb511a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_si.tar.gz 733601 BLAKE2B 7581453ca480eed7baa57785de78bb1a855138c6377935d4ba6c1da2fe2c08ee731bd5c6a9a815051eb31d02b9191f2cbca52ed82aad475f69d2cabaf053515a SHA512 6d950b0d1b6cfe388bb850e894f81ab16786a1908d1f1d10e395f0f61e46adf2da6b3af13838834160f0db255e79f496dc6ae0582f313fbd6e49ece4c57a6b75 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sid.tar.gz 444809 BLAKE2B 36b4b617aef8441447e0fdce004cb0d6af671d54b9ce7b4856915590b15251620c1447abcfc872988f007cc7142a72f3a3f41d499049e5e5bab1601c092e3b29 SHA512 5902c982fc7ca34a64e4cfd7f4a9428a4a0e18dc232490ea1715088c2b7d66d61d727346dbb028d668d91bad405c81277b84904d128d4f18a6118b1c8a784af0 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sk.tar.gz 2116912 BLAKE2B f270f5ef63bf41c52f711da7bfcefc0685880b8e251695185c1c86c1362b97c7df9ca63cdaa49e1b0493cb26a81fbfe09cc08f0bf64372710c469ea46c8787d6 SHA512 f668a2769e5d95ccda469681cbbea014e1b566dc1bbb9b52fb3b2e26d8b91c05a5c513ef2ac0120b4e915a61833dde96346024f23b689664d72927b7071c0d06 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sl.tar.gz 2503575 BLAKE2B 4e8b4e9ac8190b77cfeecd0c009ae76129766c133bfbf2f6f23ff5ce0eb1394081d5bbb528ce872874a7babea697aeac6842abac5a213070f1cc8eeace7e1627 SHA512 5d65f70f225ac2407ce57351788de21e4839657005c25c9f24404810b5246212d31b2d5c854e656ef13c6dc2b23709c138a689fde90eac87903202dfaed25a10 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sq.tar.gz 1168413 BLAKE2B f3104cce035d9fdcae3d8c28c120941179a325c095419ceea38ff03ca3a6106d74e3f8cbb1530a5c9c1850e1a631bbeb97ca59fe66e596023593540215cb8f77 SHA512 1fdf9103efc08146b6d37fc8604396abff64a80b43c8d1ea5100dea91a252a06dff29c6507481052340c4abc3cfeaf824eae3047db153af643628fc033fe1b9a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz 2406456 BLAKE2B f217144087d7172e10a077121c102ad4454f101327faefc5e4eefb8e7df087cd16025c8f97d1e28b19857068aefdba4c95164557349754eef24af21ba2fefd82 SHA512 d70b394ea5b767bab593069986c926e799034ec7d009b96205f1bd905ff9099f064d14a7322c84845c05a74bc6cadaad67773069f5876c6ed249d15871e3b22e +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sr.tar.gz 2467759 BLAKE2B 60e323678a9bd3f99421e1d7dd68ba3da667da07c619612eb8a265d75081be7655787ed97895d3bcda81d31511098ec6dea0a6764c27e5881f571854ea576421 SHA512 cd31684231ec941b6c8b9888b4765be1ba3cefe29ab883bf5f5bb1aa7d56c48bf329223050ec3e201b2bb47af7a05082a4a713bbe714fc85aa89158d33805851 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ss.tar.gz 286966 BLAKE2B 98fba8c56745625660484013a06daab2cbd1b6a11919f1e969c81c13abac3c75a6314349e1cfd7c27d9310d6d6de8d01f204af10b45c09b50134d54b3245ed3d SHA512 b32152e572177a14d2a8dbf41835ed207f4ba2672ee0f9f2635a5c091a7463012132657cd73d5417ac0360188925837d84753f5773bee5bb3241ee5326d17d8a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_st.tar.gz 281270 BLAKE2B 047056f9291a317cba78e2e9be3c09b26f9efd4afd938bebbaa9c8e3548b4108f6808aaa8171de3fa101beb33fb8fba51e6b6158facb0384278820c628ec3c3a SHA512 ecc9ceca58c888d80252a20b8f40ea85adccffb290e808c97e97a4c22d1b636176cb145e8b2abceae73fe1fe8c2ee45f8f2bc58257204dd41a919e47aea0aab1 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sv.tar.gz 2649980 BLAKE2B db686cb707f4e297c2d962e6fe0ced383cb1a5fb075f720341b65a1de6b03cd9b78394645628b68cb6da62baf969f9809af2e0dcc07b59ade9e49203514a84b5 SHA512 1ab58927d47390c81ef78f0f6bbd3e40a5468162a7f71ad6f3f6d45039caa63576e9fbed4bf04bdabbc26ef540a05ff3163cb7053a664315ad1e99f2b15ed9b0 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz 317943 BLAKE2B 3588aff2acfcbcee73829c614013be64a5595bd7ef4f567a4de79c57993761d7cf723bf7c40b4472531d83bc73b2ed6199c032ef9a8b49fc4dde7f2f488fb4ae SHA512 1090b93a2d4cfef714b908cbd33d941f7626fb79665e46cc7cb15accc76fa7a42bcc7e152eb350f6d2a3d8e980d6e25d8ea6ffcb3b805b1624d1db297e1a591c +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_szl.tar.gz 739334 BLAKE2B 09ba5bcfaa6d4eed11fdd74a3d20033afbf4c8f7b1662981bac573cff7f841162403c23d8cd85b2c8a6bfc636c2206a15fef4207a52c2d49e7f684cc42fe8c8d SHA512 d8c391f2e632348134cfc8b34adde6781bfb178fb229a39e4a5f2d8cf41d3f556596c49ca95b7326df3f54069e4bc1cf0697d5f8acb7ac9ff24d0b5bb4604526 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ta.tar.gz 670127 BLAKE2B d416fbfd93078e2a456989026173f7acea2b8ceeec13cd5f5a8ee564d27e97c630969ba960fc375657e4d440be3366032edb6973fcc572505c81376b3ba87fb0 SHA512 6a318eb433bc5e0a79051ecd1ac07a02ddeb63c16fa526852d0a23aeee10819a17b7a294cd101f0b0e93a003074a725a040eb68ea44c9d16fe3faf5848337d70 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_te.tar.gz 1077808 BLAKE2B bc910705f9aaef12d8d92a91cf0a07b59ec7001d4048b09417aea77c0a449a28b107f6b691866973374d48e33fd00b920ea5306319aa094d06603551b7b54033 SHA512 8be2eb03612293aa3bebf5cfa24551f4c1727e20c8d97ebd595bb262d62f2ad060e209427c658d0df07e82af98624f564c91369f38d45f9c4effec363482d3bc +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tg.tar.gz 357590 BLAKE2B 950b3a8bccff2cf69283f237f4a65c66a8fbe39e97931ca9b30805fb3a6a87e859655361861fea00353eb1fd00c56356c4c71f59cf57bfd13993f47083f80d28 SHA512 0af62f2fe4ff1fc8b675e62a2a8a1f3cff3d5f79bc90757632808c81de775a0a4866e835a3fbd58c04b86573b5e6eb37c642756e4faec8fe4ef297b9fb46d026 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_th.tar.gz 741640 BLAKE2B 14fea8e37da892b4c914b84fecec22b4acf93b8640eb06c36a192fed4fe22fe1f73e7e95f19929ff7d28d39f9cbff8e89cdbe23ba284e9ec2b58fdd1cb858611 SHA512 23f8e7397fdaef516b35d971095f27560849d5c84f9f1767b6ec2d36985bae57e5636f67065e09d23623bccc6ab11bae6a5c763b7a710a09570fda3ad3bebc58 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tn.tar.gz 261542 BLAKE2B 7b48822cd103dc081c395690981caed3ea9c31a05e7fb836977fd06f4c1fe53c5619cb48bc25aa66e73d9c724c34292f99adc62b64be8b313dd06e037804d181 SHA512 5f4f2c67b62f352e5e316c30674ff6a87546bca65d2b25a29af25c3228159faf3ad38114457a79e52bc41d9b935c44dfedb1e1b640f1689802dcf3799fdb0162 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tr.tar.gz 3088474 BLAKE2B 7d3df0de96cf0b1ab85cc696e2106b5c9ee9e0bfcbc33ac80ba0979a8c32ce85cd28f38d01964fd99c49974ed27b6ec5a9479d1aa391333b91c6d823a5b33ce5 SHA512 cf790f847f0d91c86b10576025cf9c9ee84398fe6adf8c3d9230ae6683d7e263d0bec119da3503b4022050f94ec38d41687e746b426d35bc82d76f49a33e9862 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ts.tar.gz 279171 BLAKE2B 11428ff416e7ad245016a1dfe51e0818605180dee05b3645b2a9e07a747650f0103e9603bed4207bdca92ce78c8b54087026550cb4dcd02874810af260a2a08d SHA512 206a0ae02ecd06202c77c11811f3d23abe15047ae17313e5008d3d73e8bd19a04d37012fc97499066508a21fdee724536aa69d5578554a8a0e6a79e8fd73c967 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tt.tar.gz 186144 BLAKE2B 2aa71df9b2cd0f5d3add402c195cbd2b6151641f40a7084f66b286249c3c48cff5e83f7f646d99f98bde1f1b2abcd68fb76bd51635cdd0786d03602cb77a749e SHA512 63983884b7a7dfa439aa22f23ecc7f14eb9bfb0d6337b35a2e79ab2131914bedaf8276d0faf1fb48bafa6c54bc7a8bf4faa5c5c73bc7bf43714d2c43ada39953 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ug.tar.gz 538223 BLAKE2B c057d496340261c590dcae39da66f7ce90b5ade3f9f049f43589982ee1dc468f8cd86a5c7ac66b668551411b96dab2db963442531ebc12377103418adcb1d6f0 SHA512 01163565971f040fd771321279ce07362ba96f819a16bb574cb61990f34938c105d03b2113d6dc1e553a70c86ced92710856727422c64a70c055464465b648b7 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_uk.tar.gz 1660686 BLAKE2B 19db413937fe1b430038a1b239127c7ab4fba33a5befc190106408cac89291e7dd240ae8f2c5debd1d8c839159eba2ee1f73d29ad9fc22d7ff5ee7341516adf7 SHA512 5f4b9338669f9be1c0b6e0fcbec555fdc24a7ef26ecb55c174fc64a8910cec2a99092a6326868ae38805288be3c78af27ff287ed80d3cacd1f61fbe9591a280f +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_uz.tar.gz 313789 BLAKE2B d77badf4b1002af189620488490e30ec9a94c66387ec98491ea69b1580990fcfce6e042fefbd3f3d4b687e7ececd995f9646363fc19acccb964090300c8701ac SHA512 3b9d68377c0a9062f863de8140d1659e32feba6ad8aab0fdd8758a6de4212e5c209bf7cefc10e7914e39392f3a9db8c19cb275a98472d3c0ebc882b9a8eb02be +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ve.tar.gz 283653 BLAKE2B 884a7c2267d6c238f9da80e814d4b3c7c045b7e0cbc8c6f62b20acd07106038290bdbee1de65df6ddd033e7b66ebad6d764069b6c3eb32195506e12b01efdf2e SHA512 ddead3b8f257e0ba08c9aa8ab7fee07bc8671ba17eaa368f0e2053b233cd50ac54de9710879e1e04daa6cf833973bdfe95350a4c1d274e74936486bcaff628b0 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_vec.tar.gz 757629 BLAKE2B 9bd139a9f4e9911991411bbd530552c454d41731d2f8a1181cfc840a4e1c28a62176f40d08174bb0f127a4647a43609937898f53192a5512b42b71c88dd9ac94 SHA512 503e8c7d7bb7420e627963d22400cee4f6edf8f44dfd6d9ae88b1b0f0a37ec763cfd62fd7006dc610b645b528e64360cfc51222970d695a27ae91e6e58581c17 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_vi.tar.gz 454623 BLAKE2B ef9420290858072636600ddd399653ec2417caaf5572b70bde3f6685de1b8b3fa744e66d75bf2455ad5a1b99822bf93ac1193de47e931b32968a2e2fe722816a SHA512 d875f467a279181bc50b507827a4594654a18801be756d0b45c61eb63d8fcc6a7124bc8642790204c9bbf8a2f9d4771d1c92ff52492239d28d56b38069d735f5 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_xh.tar.gz 290538 BLAKE2B ced7997fc08659c1b20c0dd500ecd6928260a3d27f0b9ab7d68b5bc8a013a37cc96b48a5e6573630e9c30802952c6c2c8dbfffb51a172b21e53f55c636899b20 SHA512 ef49b44c0fd3ab63c56ee5358139bc2fff7b261586e193f6f9463a484c2d2e6587e6f279646d6b285a762c146c64d2ebebe981fc227d5d4b9e9ad9c2d972899a +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zh-CN.tar.gz 846356 BLAKE2B 26ba1746be5821859537ca060df08ef9ae8d9217fa8c0f2a531c840cfac08aee2047f4a4be073996aea798505175fd77fa06699750ef8c7c5add834b79572fb8 SHA512 8d9a29adb711da151c6acfac58622958f45e47f35b29440b32f5963c10308476b970892ef1d20d123078594c7cc4f6c9b6ac98344d4ce07f97a0273573219ed7 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zh-TW.tar.gz 843775 BLAKE2B 21f1e3473c1e42cd33a2b6436cdce1ba093df788417c2f9feb0be581ff7143a718fa14b9f34be6f88b7016d530ce32ea20fbeedb70c4364a8e8e9a3129a0dcd4 SHA512 d040947e101a09717fd8ced1cb1c197c75d58329d603de403a2dfdd4fe023c83871c6ba6f135dfd5e9ef2df71a39c7265f37993573072ce69bfdedf80b64bc98 +DIST LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zu.tar.gz 320665 BLAKE2B 0c75aa55680a80390045d1db2415a28599f24b1724afe8556ce6ea58449f2b4d4c415ceda01cbeb7111774732556f42ef9f944400cc865791a0fd3e1ffd32d12 SHA512 773bdd5f3177c2ca3783582401a489f15cf1cac7c9a7fc458ccde7ae3fcf6119cf165a4606d7f35df735bf96240acff0ad2f42830d1de2ff1f07ff82a353feef diff --git a/app-office/libreoffice-l10n/files/lo_gen_langs.sh b/app-office/libreoffice-l10n/files/lo_gen_langs.sh index baafa56cfe2b..57f71ce2405b 100644 --- a/app-office/libreoffice-l10n/files/lo_gen_langs.sh +++ b/app-office/libreoffice-l10n/files/lo_gen_langs.sh @@ -8,18 +8,18 @@ # VERSION=${1:-4.1.5} -BASE_SRC_URI="http://download.documentfoundation.org/libreoffice/stable/${VERSION}/rpm/x86" +BASE_SRC_URI="http://download.documentfoundation.org/libreoffice/stable/${VERSION}/rpm/x86_64" # needs lxml print_available_tarballs() { python << EOL -import sys, urllib +import sys, urllib.request from xml.dom.minidom import parseString -from BeautifulSoup import BeautifulSoup +from bs4 import BeautifulSoup + +with urllib.request.urlopen("${BASE_SRC_URI}") as url: + html = url.read() -opener = urllib.urlopen("${BASE_SRC_URI}") -html = opener.read() -opener.close() # broken html, try to sanitize html = BeautifulSoup(html).prettify() diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-7.0.3.1.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-7.0.3.1.ebuild new file mode 100644 index 000000000000..505a0e676773 --- /dev/null +++ b/app-office/libreoffice-l10n/libreoffice-l10n-7.0.3.1.ebuild @@ -0,0 +1,91 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit rpm + +BASE_PV=$(ver_cut 1-3) +MY_PV="${PV/_alpha/.alpha}" +MY_PV="${MY_PV/_beta/.beta}" +[[ ${PV} == *alpha* || ${PV} == *beta* ]] && PN_DEV="Dev" + +DESCRIPTION="Translations for the Libreoffice suite" +HOMEPAGE="https://www.libreoffice.org" +BASE_SRC_URI_TESTING="https://download.documentfoundation.org/${PN/-l10n/}/testing/${BASE_PV}/rpm" +BASE_SRC_URI_STABLE="https://download.documentfoundation.org/${PN/-l10n/}/stable/${BASE_PV}/rpm" + +LICENSE="|| ( LGPL-3 MPL-1.1 )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~amd64-linux" +IUSE="offlinehelp" + +# +# when changing the language lists, please be careful to preserve the spaces (bug 491728) +# +# "en:en-US" for mapping from Gentoo "en" to upstream "en-US" etc. +LANGUAGES_HELP=" am ar ast bg bn-IN bn bo bs ca-valencia ca cs da de dz el en-GB en:en-US en-ZA eo es et eu fi fr gl gu he hi hr hu id is it ja ka km ko lo lt lv mk nb ne nl nn om pl pt-BR pt ro ru si sid sk sl sq sv ta tg tr ug uk vi zh-CN zh-TW " +LANGUAGES="${LANGUAGES_HELP}af as be br brx ckb cy dgo dsb fa fur fy ga gd gug hsb kab kk kmr-Latn kn kok ks lb mai ml mn mni mr my nr nso oc or pa:pa-IN rw sa:sa-IN sat sd sr-Latn sr ss st sw-TZ szl te th tn ts tt uz ve vec xh zu " + +for lang in ${LANGUAGES_HELP}; do + helppack="offlinehelp? ( ${BASE_SRC_URI_STABLE}/x86_64/LibreOffice${PN_DEV}_${BASE_PV}_Linux_x86-64_rpm_helppack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86-64_rpm_helppack_${lang#*:}.tar.gz ${BASE_SRC_URI_TESTING}/x86_64/LibreOffice${PN_DEV}_${MY_PV}_Linux_x86-64_rpm_helppack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86-64_rpm_helppack_${lang#*:}.tar.gz )" + SRC_URI+=" l10n_${lang%:*}? ( ${helppack} )" +done +for lang in ${LANGUAGES}; do + if [[ ${lang%:*} != en ]]; then + langpack="${BASE_SRC_URI_STABLE}/x86_64/LibreOffice${PN_DEV}_${BASE_PV}_Linux_x86-64_rpm_langpack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86-64_rpm_langpack_${lang#*:}.tar.gz ${BASE_SRC_URI_TESTING}/x86_64/LibreOffice${PN_DEV}_${MY_PV}_Linux_x86-64_rpm_langpack_${lang#*:}.tar.gz -> LibreOffice_${MY_PV}_Linux_x86-64_rpm_langpack_${lang#*:}.tar.gz" + SRC_URI+=" l10n_${lang%:*}? ( ${langpack} )" + fi + IUSE+=" l10n_${lang%:*}" +done +unset lang helppack langpack + +RDEPEND+="app-text/hunspell" + +RESTRICT="strip" + +S="${WORKDIR}" + +src_prepare() { + default + + local lang dir rpmdir + + # First remove dictionaries, we want to use system ones. + find "${S}" -name *dict*.rpm -delete || die "Failed to remove dictionaries" + + for lang in ${LANGUAGES}; do + # break away if not enabled + use l10n_${lang%:*} || continue + + dir=${lang#*:} + + # for english we provide just helppack, as translation is always there + if [[ ${lang%:*} != en ]]; then + rpmdir="LibreOffice_${MY_PV}_Linux_x86-64_rpm_langpack_${dir}/RPMS/" + [[ -d ${rpmdir} ]] || die "Missing directory: ${rpmdir}" + rpm_unpack ./${rpmdir}/*.rpm + fi + if [[ "${LANGUAGES_HELP}" =~ " ${lang} " ]] && use offlinehelp; then + rpmdir="LibreOffice_${MY_PV}_Linux_x86-64_rpm_helppack_${dir}/RPMS/" + [[ -d ${rpmdir} ]] || die "Missing directory: ${rpmdir}" + rpm_unpack ./${rpmdir}/*.rpm + fi + done +} + +src_configure() { :; } +src_compile() { :; } + +src_install() { + local dir="${S}"/opt/${PN/-l10n/}$(ver_cut 1-2)/ + # Condition required for people who do not install anything e.g. no l10n + # or just english with no offlinehelp. + if [[ -d "${dir}" ]] ; then + insinto /usr/$(get_libdir)/${PN/-l10n/}/ + doins -r "${dir}"/* + fi + # remove extensions that are in l10n for some weird reason + rm -rf "${ED}"/usr/$(get_libdir)/${PN/-l10n/}/share/extensions/ || \ + die "Failed to remove extensions" +} diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest index 77502cb3e9f8..63ba98022819 100644 --- a/app-office/libreoffice/Manifest +++ b/app-office/libreoffice/Manifest @@ -19,7 +19,9 @@ DIST eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip 427800 BLAKE2B d3ac085a3 DIST f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip 211919 BLAKE2B 2c72493e44d3ad1714d294fb7baaa85d33fef2eb4ce75bf507b65f78f1d9d399bb5eb72cee188a8abc4b234eb2845a26755791fb3ac104ffe6e55013ab41ca8b SHA512 c1a15ebbfe817ec79d4b3f1c97d096bf8511737d7d35d97302856ccfb3de14a1cd16bd31000415d9ab24bbd9ef770d37855cee4b819ff0e8fca2f2766920a114 DIST libreoffice-6.4.6.2.tar.xz 232180876 BLAKE2B b2e01cc8e56b36c16fc3e39ff88617d7c31d6b0a0f4a5c05c8536313e7129862fb962e1a6efc7e86e9b56c34dff7c2d895416f33fbb23dc45e447b25813b5654 SHA512 377675494d4422c4d9363fe3857a8587e38f6ccd39aebec9c23337aa3a88cb2526608b8d0bcb27985ed8f821a98ca541dad4b48d69db441bcb27e9fb81beb9ba DIST libreoffice-6.4.7.2.tar.xz 232364676 BLAKE2B 1df8f2a3aa00bd057dd1d6d9665a541330ceeabb2bb5d46351449cf9b916a5649f38dc0e0175cf3733123f9247157f5fd0f2c34c8dad1d676da6c31d8346927b SHA512 ba6ff5948624d7a76025406c38728d643be656091d79320a1c5ddba10000411662951a0b02de7a9e796e76d8185b6e9113882406bb0c1452b4c988ac3095afa8 +DIST libreoffice-7.0.3.1.tar.xz 240706432 BLAKE2B 4bf075fedb445a60a971adfb029fb7843afab1ee2009d32b149c91970d8eae990e4ac3ea7075d58815288f1f174846e0e9de7ce00655840ad97622a3790b43a2 SHA512 1680b5166ead7ca521130f7d23cb2bd73d3d4f801f94c9a3ab0066fb7763ced3c01d89fbe1b7a79a1826bcfd6ebcd3ce5fb3014ab6583034f08ed25969ab5f36 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883 SHA512 785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f DIST libreoffice-help-6.4.6.2.tar.xz 88297908 BLAKE2B 919758e81ed46138331b49668f89c6bf7f50253d7632d113aa957f524ae26e2b99f2ba490b405830314822ea91185eb2308018df77c5bd3d7197cbba940ae2ba SHA512 8ada2568a40dc4f1c843cb37dde6abe3bd61b6e5d9910b985096821e1fce5af47d4a10bff8ae91913298e593130bc1f8668b4e1c59c46591d457157e3d4b7501 DIST libreoffice-help-6.4.7.2.tar.xz 88296892 BLAKE2B 9ee12ec6aa6d5539408e0206e313901540533e28686585fa0bb4edbeaa482bb0ad1cd4ae37ac18dab66bb3e2ea32d52d9960236cbf3e0f8fb5ca07c007f38794 SHA512 a5381a8cca9988998dc01d3815869e47193c1da814b714cbedb51a2099f7dc5444315c657e32defab2eb0b9a9e2a922bc4c5fbc36b7a2b60e7c551887a9cdbb3 +DIST libreoffice-help-7.0.3.1.tar.xz 110855688 BLAKE2B 3b0e845087fe0bd25ad3c06b8a8eac548f05568cf279efc10f7190ee51e8a9922c64749ad57c21b150aaac9b3249a6e184583f389a191fc6b86128153ff363be SHA512 1acbc7575da99ce0a09a3092a8612f47c432ffd8d4b6029c885c782a857c6b0812bb2eee3873b0cdfa41ee42f84a0843c3d06109ccb651b5bba5ade1a6725a78 DIST skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz 8375536 BLAKE2B 8e3849123ce426a4dc43705537b176df82c6039a23911d75b7b3b26ca44f4a600c96c67c5f4d935a8d6a5064362f7f2167231b2aafbc44533c07299a8980aafe SHA512 4aeba56400d20e5fe234c7927b3d196233e19513a3202e074a88fad0d14d168221574a5a72b8dd9398cf3a9453c46eba4e4ed23d8d2031522b6cb11bc8bb43c1 diff --git a/app-office/libreoffice/files/libreoffice-7.0.3.1-fix-disable-pdfium-build.patch b/app-office/libreoffice/files/libreoffice-7.0.3.1-fix-disable-pdfium-build.patch new file mode 100644 index 000000000000..346699d5527c --- /dev/null +++ b/app-office/libreoffice/files/libreoffice-7.0.3.1-fix-disable-pdfium-build.patch @@ -0,0 +1,82 @@ +From b9e5d5347e5dece693fe56b88570abc07a30a8ba Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= +Date: Thu, 29 Oct 2020 15:45:01 +0000 +Subject: [PATCH] fix --disable-pdfium build +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Change-Id: I580972220bc39abe16288fa62c717e4ab25833d9 +Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105015 +Tested-by: Jenkins +Tested-by: René Engelhard +Reviewed-by: René Engelhard +Reviewed-by: Noel Grandin +--- + vcl/source/filter/ipdf/pdfread.cxx | 2 +- + xmlsecurity/source/pdfio/pdfdocument.cxx | 11 +++++++---- + 2 files changed, 8 insertions(+), 5 deletions(-) + +diff --git a/vcl/source/filter/ipdf/pdfread.cxx b/vcl/source/filter/ipdf/pdfread.cxx +index 3066c4deba4a..bf11578089e0 100644 +--- a/vcl/source/filter/ipdf/pdfread.cxx ++++ b/vcl/source/filter/ipdf/pdfread.cxx +@@ -218,7 +218,7 @@ size_t RenderPDFBitmaps(const void* pBuffer, int nSize, std::vector& rBi + (void)rBitmaps; + (void)nFirstPage; + (void)nPages; +- (void)fResolutionDPI; ++ (void)pSizeHint; + return 0; + #endif // HAVE_FEATURE_PDFIUM + } +diff --git a/xmlsecurity/source/pdfio/pdfdocument.cxx b/xmlsecurity/source/pdfio/pdfdocument.cxx +index c132d02cc2b0..b229206391f2 100644 +--- a/xmlsecurity/source/pdfio/pdfdocument.cxx ++++ b/xmlsecurity/source/pdfio/pdfdocument.cxx +@@ -138,10 +138,10 @@ bool IsCompleteSignature(SvStream& rStream, vcl::filter::PDFDocument& rDocument, + return std::find(rAllEOFs.begin(), rAllEOFs.end(), nFileEnd) != rAllEOFs.end(); + } + ++#if HAVE_FEATURE_PDFIUM + /// Collects the checksum of each page of one version of the PDF. + void AnalyizeSignatureStream(SvMemoryStream& rStream, std::vector& rPageChecksums) + { +-#if HAVE_FEATURE_PDFIUM + auto pPdfium = vcl::pdf::PDFiumLibrary::get(); + vcl::pdf::PDFiumDocument aPdfDocument( + FPDF_LoadMemDocument(rStream.GetData(), rStream.GetSize(), /*password=*/nullptr)); +@@ -158,10 +158,8 @@ void AnalyizeSignatureStream(SvMemoryStream& rStream, std::vectorgetChecksum(); + rPageChecksums.push_back(nPageChecksum); + } +-#else +- (void)rStream; +-#endif + } ++#endif + + /** + * Checks if incremental updates after singing performed valid modifications only. +@@ -175,6 +173,7 @@ bool IsValidSignature(SvStream& rStream, vcl::filter::PDFObjectElement* pSignatu + return false; + } + ++#if HAVE_FEATURE_PDFIUM + SvMemoryStream aSignatureStream; + sal_uInt64 nPos = rStream.Tell(); + rStream.Seek(0); +@@ -196,6 +195,10 @@ bool IsValidSignature(SvStream& rStream, vcl::filter::PDFObjectElement* pSignatu + // Fail if any page looks different after signing and at the end. Annotations/commenting doesn't + // count, though. + return aSignedPages == aAllPages; ++#else ++ (void)rStream; ++ return true; ++#endif + } + } + +-- +2.26.2 + diff --git a/app-office/libreoffice/files/libreoffice-7.0.3.1-qt5detect.patch b/app-office/libreoffice/files/libreoffice-7.0.3.1-qt5detect.patch new file mode 100644 index 000000000000..cc4e8e41df2e --- /dev/null +++ b/app-office/libreoffice/files/libreoffice-7.0.3.1-qt5detect.patch @@ -0,0 +1,23 @@ +Don't let PATH get in the way of proper Qt5 detection. +It could lead to broken configure due to mismanaged qtchooser config. + +--- a/configure.ac 2020-11-21 16:35:58.433794709 +0100 ++++ b/configure.ac 2020-11-21 18:02:41.835207197 +0100 +@@ -11819,7 +11819,7 @@ + qt5_test_library="libQt5Widgets.so" + + dnl Check for qmake5 +- AC_PATH_PROGS( QMAKE5, [qmake-qt5 qmake], no, [$QT5DIR/bin:$PATH]) ++ AC_PATH_PROGS( QMAKE5, [qmake-qt5 qmake], no, [$QT5DIR/bin]) + if test "$QMAKE5" = "no"; then + AC_MSG_ERROR([Qmake not found. Please specify the root of your Qt5 installation by exporting QT5DIR before running "configure".]) + else +@@ -11886,7 +11886,7 @@ + + dnl Check for Meta Object Compiler + +- AC_PATH_PROGS( MOC5, [moc-qt5 moc], no, [`dirname $qt5_libdir`/bin:$QT5DIR/bin:$PATH]) ++ AC_PATH_PROGS( MOC5, [moc-qt5 moc], no, [$QT5DIR/bin]) + if test "$MOC5" = "no"; then + AC_MSG_ERROR([Qt Meta Object Compiler not found. Please specify + the root of your Qt installation by exporting QT5DIR before running "configure".]) diff --git a/app-office/libreoffice/libreoffice-7.0.3.1.ebuild b/app-office/libreoffice/libreoffice-7.0.3.1.ebuild new file mode 100644 index 000000000000..bcd7e8b8b9b7 --- /dev/null +++ b/app-office/libreoffice/libreoffice-7.0.3.1.ebuild @@ -0,0 +1,665 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} ) +PYTHON_REQ_USE="threads(+),xml" + +MY_PV="${PV/_alpha/.alpha}" +MY_PV="${MY_PV/_beta/.beta}" +# experimental ; release ; old +# Usually the tarballs are moved a lot so this should make everyone happy. +DEV_URI=" + https://dev-builds.libreoffice.org/pre-releases/src + https://download.documentfoundation.org/libreoffice/src/${MY_PV:0:5}/ + https://downloadarchive.documentfoundation.org/libreoffice/old/${MY_PV}/src +" +ADDONS_URI="https://dev-www.libreoffice.org/src/" + +BRANDING="${PN}-branding-gentoo-0.8.tar.xz" +# PATCHSET="${P}-patchset-01.tar.xz" + +[[ ${MY_PV} == *9999* ]] && inherit git-r3 +inherit autotools bash-completion-r1 check-reqs flag-o-matic java-pkg-opt-2 multiprocessing python-single-r1 qmake-utils toolchain-funcs xdg-utils + +DESCRIPTION="A full office productivity suite" +HOMEPAGE="https://www.libreoffice.org" +SRC_URI="branding? ( https://dev.gentoo.org/~dilfridge/distfiles/${BRANDING} )" +[[ -n ${PATCHSET} ]] && SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}" + +# Split modules following git/tarballs; Core MUST be first! +# Help is used for the image generator +# Only release has the tarballs +if [[ ${MY_PV} != *9999* ]]; then + for i in ${DEV_URI}; do + SRC_URI+=" ${i}/${PN}-${MY_PV}.tar.xz" + SRC_URI+=" ${i}/${PN}-help-${MY_PV}.tar.xz" + done + unset i +fi +unset DEV_URI + +# Really required addons +# These are bundles that can't be removed for now due to huge patchsets. +# If you want them gone, patches are welcome. +ADDONS_SRC=( + # not packaged in Gentoo, https://www.netlib.org/fp/dtoa.c + "${ADDONS_URI}/dtoa-20180411.tgz" + # not packaged in Gentoo, https://skia.org/ + "${ADDONS_URI}/skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz" + # QR code generating library for >=libreoffice-6.4, bug #691740 + "${ADDONS_URI}/QR-Code-generator-1.4.0.tar.gz" + "base? ( + ${ADDONS_URI}/commons-logging-1.2-src.tar.gz + ${ADDONS_URI}/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip + ${ADDONS_URI}/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip + ${ADDONS_URI}/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip + ${ADDONS_URI}/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip + ${ADDONS_URI}/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip + ${ADDONS_URI}/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip + ${ADDONS_URI}/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip + ${ADDONS_URI}/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip + ${ADDONS_URI}/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip + ${ADDONS_URI}/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip + ${ADDONS_URI}/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip + )" + "java? ( ${ADDONS_URI}/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip )" + # no release for 8 years, should we package it? + "libreoffice_extensions_wiki-publisher? ( ${ADDONS_URI}/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip )" + # Does not build with 1.6 rhino at all + "libreoffice_extensions_scripting-javascript? ( ${ADDONS_URI}/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip )" + # requirement of rhino + "libreoffice_extensions_scripting-javascript? ( ${ADDONS_URI}/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip )" + # not packageable + "odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll )" +) +SRC_URI+=" ${ADDONS_SRC[*]}" + +unset ADDONS_URI +unset ADDONS_SRC + +# Extensions that need extra work: +LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher" + +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 +$(printf 'libreoffice_extensions_%s ' ${LO_EXTS})" + +REQUIRED_USE="${PYTHON_REQUIRED_USE} + base? ( firebird java ) + bluetooth? ( dbus ) + gtk? ( dbus ) + libreoffice_extensions_nlpsolver? ( java ) + libreoffice_extensions_scripting-beanshell? ( java ) + libreoffice_extensions_scripting-javascript? ( java ) + libreoffice_extensions_wiki-publisher? ( java ) +" + +RESTRICT="!test? ( test )" + +LICENSE="|| ( LGPL-3 MPL-1.1 )" +SLOT="0" + +[[ ${MY_PV} == *9999* ]] || \ +KEYWORDS="~amd64 ~arm ~arm64 ~amd64-linux" + +BDEPEND=" + dev-util/intltool + sys-devel/bison + sys-devel/flex + sys-devel/gettext + virtual/pkgconfig + odk? ( >=app-doc/doxygen-1.8.4 ) +" +COMMON_DEPEND="${PYTHON_DEPS} + 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 + >=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.15 + 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 + >=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 + net-libs/neon + 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 + accessibility? ( + $(python_gen_cond_dep 'dev-python/lxml[${PYTHON_MULTI_USEDEP}]') + ) + bluetooth? ( + dev-libs/glib:2 + net-wireless/bluez + ) + clang? ( + || ( + ( sys-devel/clang:12 + sys-devel/llvm:12 + =sys-devel/lld-12* ) + ( sys-devel/clang:11 + sys-devel/llvm:11 + =sys-devel/lld-11* ) + ( sys-devel/clang:10 + sys-devel/llvm:10 + =sys-devel/lld-10* ) + ) + ) + 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 + 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.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] ) +" +# FIXME: cppunit should be moved to test conditional +# after everything upstream is under gbuild +# as dmake execute tests right away +# tests apparently also need google-carlito-fonts (not packaged) +DEPEND="${COMMON_DEPEND} + >=dev-libs/libatomic_ops-7.2d + dev-perl/Archive-Zip + >=dev-util/cppunit-1.14.0 + >=dev-util/gperf-3.1 + dev-util/mdds:1/1.5 + media-libs/glm + sys-devel/ucpp + x11-base/xorg-proto + x11-libs/libXt + x11-libs/libXtst + java? ( + dev-java/ant-core + || ( + dev-java/openjdk:11 + dev-java/openjdk-bin:11 + ) + ) + test? ( + app-crypt/gnupg + dev-util/cppunit + media-fonts/dejavu + media-fonts/liberation-fonts + ) +" +RDEPEND="${COMMON_DEPEND} + !app-office/libreoffice-bin + !app-office/libreoffice-bin-debug + !app-office/openoffice + 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:* ) +" +if [[ ${MY_PV} != *9999* ]] && [[ ${PV} != *_* ]]; then + PDEPEND="=app-office/libreoffice-l10n-$(ver_cut 1-2)*" +else + # Translations are not reliable on live ebuilds + # rather force people to use english only. + PDEPEND="!app-office/libreoffice-l10n" +fi + +PATCHES=( + # "${WORKDIR}"/${PATCHSET/.tar.xz/} + + # not upstreamable stuff + "${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch" + "${FILESDIR}/${PN}-6.1-nomancompress.patch" + "${FILESDIR}/${PN}-7.0.3.1-qt5detect.patch" + + # 7.0 branch + "${FILESDIR}/${P}-fix-disable-pdfium-build.patch" + "${FILESDIR}/${PN}-6.4.7.2-icu-68-1.patch" # bug 752021 +) + +S="${WORKDIR}/${PN}-${MY_PV}" + +_check_reqs() { + CHECKREQS_MEMORY="512M" + if is-flagq "-g*" && ! is-flagq "-g*0" ; then + CHECKREQS_DISK_BUILD="22G" + else + CHECKREQS_DISK_BUILD="6G" + fi + check-reqs_$1 +} + +pkg_pretend() { + use base || + ewarn "If you plan to use Base application you must enable USE base." + use java || + ewarn "Without USE java, several wizards are not going to be available." + + [[ ${MERGE_TYPE} != binary ]] && _check_reqs pkg_pretend +} + +pkg_setup() { + java-pkg-opt-2_pkg_setup + python-single-r1_pkg_setup + xdg_environment_reset + + [[ ${MERGE_TYPE} != binary ]] && _check_reqs pkg_setup +} + +src_unpack() { + default + + if [[ ${MY_PV} = *9999* ]]; then + local base_uri branch mypv + base_uri="https://anongit.freedesktop.org/git" + branch="master" + mypv=${MY_PV/.9999} + [[ ${mypv} != ${MY_PV} ]] && branch="${PN}-${mypv/./-}" + git-r3_fetch "${base_uri}/${PN}/core" "refs/heads/${branch}" + git-r3_checkout "${base_uri}/${PN}/core" + LOCOREGIT_VERSION=${EGIT_VERSION} + + git-r3_fetch "${base_uri}/${PN}/help" "refs/heads/master" + git-r3_checkout "${base_uri}/${PN}/help" "helpcontent2" # doesn't match on help + fi +} + +src_prepare() { + default + + # sandbox violations on many systems, we don't need it. Bug #646406 + sed -i \ + -e "/KF5_CONFIG/s/kf5-config/no/" \ + configure.ac || die "Failed to disable kf5-config" + + AT_M4DIR="m4" eautoreconf + # hack in the autogen.sh + touch autogen.lastrun + + # sed in the tests + sed -i \ + -e "s#all : build unitcheck#all : build#g" \ + solenv/gbuild/Module.mk || die + sed -i \ + -e "s#check: dev-install subsequentcheck#check: unitcheck slowcheck dev-install subsequentcheck#g" \ + -e "s#Makefile.gbuild all slowcheck#Makefile.gbuild all#g" \ + Makefile.in || die + + sed -i \ + -e "s,/usr/share/bash-completion/completions,$(get_bashcompdir)," \ + -e "s,\$INSTALLDIRNAME.sh,${PN}," \ + bin/distro-install-desktop-integration || die + + if use branding; then + # hack... + mv -v "${WORKDIR}/branding-intro.png" "icon-themes/colibre/brand/intro.png" || die + fi + + # Don't list pdfimport support in desktop when built with none, bug # 605464 + if ! use pdfimport; then + sed -i \ + -e ":MimeType: s:application/pdf;::" \ + -e ":Keywords: s:pdf;::" \ + sysui/desktop/menus/draw.desktop || die + fi +} + +src_configure() { + # Set up Google API keys, see https://www.chromium.org/developers/how-tos/api-keys + # Note: these are for Gentoo use ONLY. For your own distribution, please get + # your own set of keys. Feel free to contact chromium@gentoo.org for more info. + local google_default_client_id="329227923882.apps.googleusercontent.com" + local google_default_client_secret="vgKG0NNv7GoDpbtoFNLxCUXu" + + # Show flags set at the beginning + einfo "Preset CFLAGS: ${CFLAGS}" + einfo "Preset LDFLAGS: ${LDFLAGS}" + + if use clang ; then + # Force clang + einfo "Enforcing the use of clang due to USE=clang ..." + AR=llvm-ar + CC=${CHOST}-clang + CXX=${CHOST}-clang++ + NM=llvm-nm + RANLIB=llvm-ranlib + LDFLAGS+=" -fuse-ld=lld" + else + # Force gcc + einfo "Enforcing the use of gcc due to USE=-clang ..." + AR=gcc-ar + CC=${CHOST}-gcc + CXX=${CHOST}-g++ + NM=gcc-nm + RANLIB=gcc-ranlib + fi + + if use custom-cflags ; then + elog "USE=custom-cflags has been selected. You are on your own to make sure that" + elog "the build succeeds. Good luck!" + strip-unsupported-flags + else + strip-flags + fi + + export CLANG_CC=${CC} + export CLANG_CXX=${CXX} + + # Show flags set at the end + einfo " Used CFLAGS: ${CFLAGS}" + einfo " Used LDFLAGS: ${LDFLAGS}" + + # Ensure we use correct toolchain + tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG + + if use vulkan && ! use clang ; then + ewarn "Building skia with gcc may lead to performance issues. Disable vulkan or enable clang." + fi + + # optimization flags + export GMAKE_OPTIONS="${MAKEOPTS}" + # System python enablement: + export PYTHON_CFLAGS=$(python_get_CFLAGS) + export PYTHON_LIBS=$(python_get_LIBS) + + use kde && export QT5DIR="$(qt5_get_bindir)/.." + + local gentoo_buildid="Gentoo official package" + if [[ -n ${LOCOREGIT_VERSION} ]]; then + gentoo_buildid+=" (from git: ${LOCOREGIT_VERSION})" + fi + + # system headers/libs/...: enforce using system packages + # --disable-breakpad: requires not-yet-in-tree dev-utils/breakpad + # --enable-cairo: ensure that cairo is always required + # --enable-*-link: link to the library rather than just dlopen on runtime + # --enable-release-build: build the libreoffice as release + # --disable-fetch-external: prevent dowloading during compile phase + # --enable-extension-integration: enable any extension integration support + # --without-{fonts,myspell-dicts,ppsd}: prevent install of sys pkgs + # --disable-report-builder: too much java packages pulled in without pkgs + # --without-system-sane: just sane.h header that is used for scan in writer, + # not linked or anything else, worthless to depend on + # --disable-pdfium: not yet packaged + # --without-system-qrcodegen: has no real build system and LO is the only user + local myeconfargs=( + --with-system-dicts + --with-system-epoxy + --with-system-headers + --with-system-jars + --with-system-libs + --enable-build-opensymbol + --enable-cairo-canvas + --enable-largefile + --enable-mergelibs + --enable-neon + --enable-python=system + --enable-randr + --enable-release-build + --disable-breakpad + --disable-bundle-mariadb + --disable-ccache + --disable-epm + --disable-fetch-external + --disable-gtk3-kde5 + --disable-online-update + --disable-openssl + --disable-pdfium + --disable-vlc + --with-extra-buildid="${gentoo_buildid}" + --enable-extension-integration + --with-external-dict-dir="${EPREFIX}/usr/share/myspell" + --with-external-hyph-dir="${EPREFIX}/usr/share/myspell" + --with-external-thes-dir="${EPREFIX}/usr/share/myspell" + --with-external-tar="${DISTDIR}" + --with-lang="" + --with-parallelism=$(makeopts_jobs) + --with-system-ucpp + --with-tls=nss + --with-vendor="Gentoo Foundation" + --with-x + --without-fonts + --without-myspell-dicts + --with-help="html" + --without-helppack-integration + --with-system-gpgmepp + --without-system-jfreereport + --without-system_apache_commons + --without-system-sane + --without-system-qrcodegen + $(use_enable base report-builder) + $(use_enable bluetooth sdremote-bluetooth) + $(use_enable coinmp) + $(use_enable cups) + $(use_enable dbus) + $(use_enable debug) + $(use_enable eds evolution2) + $(use_enable firebird firebird-sdbc) + $(use_enable gstreamer gstreamer-1-0) + $(use_enable gtk gtk3) + $(use_enable kde kf5) + $(use_enable kde qt5) + $(use_enable ldap) + $(use_enable odk) + $(use_enable pdfimport) + $(use_enable postgres postgresql-sdbc) + $(use_enable vulkan skia) + $(use_with accessibility lxml) + $(use_with coinmp system-coinmp) + $(use_with googledrive gdrive-client-id ${google_default_client_id}) + $(use_with googledrive gdrive-client-secret ${google_default_client_secret}) + $(use_with java) + $(use_with odk doxygen) + ) + + if use eds || use gtk; then + myeconfargs+=( --enable-dconf --enable-gio ) + else + myeconfargs+=( --disable-dconf --disable-gio ) + fi + + # libreoffice extensions handling + for lo_xt in ${LO_EXTS}; do + if [[ "${lo_xt}" == "scripting-beanshell" || "${lo_xt}" == "scripting-javascript" ]]; then + myeconfargs+=( $(use_enable libreoffice_extensions_${lo_xt} ${lo_xt}) ) + else + myeconfargs+=( $(use_enable libreoffice_extensions_${lo_xt} ext-${lo_xt}) ) + fi + done + + if use java; then + # hsqldb: system one is too new + myeconfargs+=( + --without-junit + --without-system-hsqldb + --with-ant-home="${ANT_HOME}" + ) + if has_version "dev-java/openjdk:11"; then + myeconfargs+=( -with-jdk-home="${EPREFIX}/usr/$(get_libdir)/openjdk-11" ) + elif has_version "dev-java/openjdk-bin:11"; then + myeconfargs+=( --with-jdk-home="/opt/openjdk-bin-11" ) + fi + + use libreoffice_extensions_scripting-beanshell && \ + myeconfargs+=( --with-beanshell-jar=$(java-pkg_getjar bsh bsh.jar) ) + + use libreoffice_extensions_scripting-javascript && \ + myeconfargs+=( --with-rhino-jar=$(java-pkg_getjar rhino-1.6 js.jar) ) + fi + + is-flagq "-flto*" && myeconfargs+=( --enable-lto ) + + MARIADBCONFIG="$(type -p $(usex mariadb mariadb mysql)_config)" \ + econf "${myeconfargs[@]}" +} + +src_compile() { + # more and more LO stuff tries to use OpenGL, including tests during build + # bug 501508, bug 540624, bug 545974 and probably more + addpredict /dev/dri + addpredict /dev/ati + addpredict /dev/nvidiactl + + local target + use test && target="build" || target="build-nocheck" + + # this is not a proper make script + make ${target} || die +} + +src_test() { + make unitcheck || die + make slowcheck || die +} + +src_install() { + # This is not Makefile so no buildserver + emake DESTDIR="${D}" distro-pack-install -o build -o check + + # bug 593514 + if use gtk; then + dosym libreoffice/program/liblibreofficekitgtk.so \ + /usr/$(get_libdir)/liblibreofficekitgtk.so + fi + + # bash completion aliases + bashcomp_alias \ + libreoffice \ + unopkg loimpress lobase localc lodraw lomath lowriter lofromtemplate loweb loffice + + if use branding; then + insinto /usr/$(get_libdir)/${PN}/program + newins "${WORKDIR}/branding-sofficerc" sofficerc + dodir /etc/env.d + echo "CONFIG_PROTECT=/usr/$(get_libdir)/${PN}/program/sofficerc" > "${ED}"/etc/env.d/99${PN} || die + fi + + # bug 703474 + insinto /usr/include + doins -r include/LibreOfficeKit + + local lodir=/usr/$(get_libdir)/libreoffice + # patching this would break tests + cat <<-EOF > "${T}"/uno.py +import sys, os +sys.path.append('${EPREFIX}${lodir}/program') +os.putenv('URE_BOOTSTRAP', 'vnd.sun.star.pathname:${EPREFIX}${lodir}/program/fundamentalrc') +EOF + sed -e "/^import sys/d" -e "/^import os/d" \ + -i "${D}"${lodir}/program/uno.py || die "cleanup dupl imports failed" + cat "${D}"${lodir}/program/uno.py >> "${T}"/uno.py || die + cp "${T}"/uno.py "${D}"${lodir}/program/uno.py || die + + # more system pyuno mess + sed -e "/sOffice = \"\" # lets hope for the best/s:\"\":\"${EPREFIX}${lodir}/program\":" \ + -i "${D}"${lodir}/program/officehelper.py || die + + python_optimize "${D}"${lodir}/program + # link python bridge in site-packages, bug 667802 + local py pyc loprogdir=$(get_libdir)/libreoffice/program + for py in uno.py unohelper.py officehelper.py; do + dosym ../../../${loprogdir}/${py} $(python_get_sitedir)/${py} + while IFS="" read -d $'\0' -r pyc; do + pyc=${pyc//*\/} + dosym ../../../../${loprogdir}/__pycache__/${pyc} $(python_get_sitedir)/__pycache__/${pyc} + done < <(find "${D}"${lodir}/program -type f -name ${py/.py/*.pyc} -print0) + done + + # bug 709450 + mkdir -p "${ED}"/usr/share/metainfo || die + mv "${ED}"/usr/share/appdata/* "${ED}"/usr/share/metainfo/ || die + rmdir "${ED}"/usr/share/appdata || die +} + +pkg_postinst() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update +} diff --git a/app-office/libreoffice/libreoffice-7.0.9999.ebuild b/app-office/libreoffice/libreoffice-7.0.9999.ebuild index f2d22894b1f4..d7e085ccf03b 100644 --- a/app-office/libreoffice/libreoffice-7.0.9999.ebuild +++ b/app-office/libreoffice/libreoffice-7.0.9999.ebuild @@ -82,8 +82,8 @@ unset ADDONS_SRC # Extensions that need extra work: LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher" -IUSE="accessibility base bluetooth +branding coinmp +cups +dbus debug eds firebird -googledrive gstreamer +gtk kde ldap +mariadb odk pdfimport postgres test +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 $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})" REQUIRED_USE="${PYTHON_REQUIRED_USE} @@ -182,6 +182,19 @@ COMMON_DEPEND="${PYTHON_DEPS} dev-libs/glib:2 net-wireless/bluez ) + clang? ( + || ( + ( sys-devel/clang:12 + sys-devel/llvm:12 + =sys-devel/lld-12* ) + ( sys-devel/clang:11 + sys-devel/llvm:11 + =sys-devel/lld-11* ) + ( sys-devel/clang:10 + sys-devel/llvm:10 + =sys-devel/lld-10* ) + ) + ) coinmp? ( sci-libs/coinor-mp ) cups? ( net-print/cups ) dbus? ( sys-apps/dbus[X] ) @@ -278,6 +291,7 @@ PATCHES=( # not upstreamable stuff "${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch" "${FILESDIR}/${PN}-6.1-nomancompress.patch" + "${FILESDIR}/${PN}-7.0.3.1-qt5detect.patch" ) S="${WORKDIR}/${PN}-${MY_PV}" @@ -374,17 +388,58 @@ src_configure() { local google_default_client_id="329227923882.apps.googleusercontent.com" local google_default_client_secret="vgKG0NNv7GoDpbtoFNLxCUXu" + # Show flags set at the beginning + einfo "Preset CFLAGS: ${CFLAGS}" + einfo "Preset LDFLAGS: ${LDFLAGS}" + + if use clang ; then + # Force clang + einfo "Enforcing the use of clang due to USE=clang ..." + AR=llvm-ar + CC=${CHOST}-clang + CXX=${CHOST}-clang++ + NM=llvm-nm + RANLIB=llvm-ranlib + LDFLAGS+=" -fuse-ld=lld" + else + # Force gcc + einfo "Enforcing the use of gcc due to USE=-clang ..." + AR=gcc-ar + CC=${CHOST}-gcc + CXX=${CHOST}-g++ + NM=gcc-nm + RANLIB=gcc-ranlib + fi + + if use custom-cflags ; then + elog "USE=custom-cflags has been selected. You are on your own to make sure that" + elog "the build succeeds. Good luck!" + strip-unsupported-flags + else + strip-flags + fi + + export CLANG_CC=${CC} + export CLANG_CXX=${CXX} + + # Show flags set at the end + einfo " Used CFLAGS: ${CFLAGS}" + einfo " Used LDFLAGS: ${LDFLAGS}" + + # Ensure we use correct toolchain + tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG + + if use vulkan && ! use clang ; then + ewarn "Building skia with gcc may lead to performance issues. Disable vulkan or enable clang." + fi + # optimization flags export GMAKE_OPTIONS="${MAKEOPTS}" # System python enablement: export PYTHON_CFLAGS=$(python_get_CFLAGS) export PYTHON_LIBS=$(python_get_LIBS) - if use kde; then - export QT_SELECT=5 # bug 639620 needs proper fix though - export QT5DIR="$(qt5_get_bindir)/../" - export MOC5="$(qt5_get_bindir)/moc" - fi + use kde && export QT5DIR="$(qt5_get_bindir)/.." local gentoo_buildid="Gentoo official package" if [[ -n ${LOCOREGIT_VERSION} ]]; then @@ -465,6 +520,7 @@ src_configure() { $(use_enable odk) $(use_enable pdfimport) $(use_enable postgres postgresql-sdbc) + $(use_enable vulkan skia) $(use_with accessibility lxml) $(use_with coinmp system-coinmp) $(use_with googledrive gdrive-client-id ${google_default_client_id}) @@ -585,6 +641,11 @@ EOF dosym ../../../../${loprogdir}/__pycache__/${pyc} $(python_get_sitedir)/__pycache__/${pyc} done < <(find "${D}"${lodir}/program -type f -name ${py/.py/*.pyc} -print0) done + + # bug 709450 + mkdir -p "${ED}"/usr/share/metainfo || die + mv "${ED}"/usr/share/appdata/* "${ED}"/usr/share/metainfo/ || die + rmdir "${ED}"/usr/share/appdata || die } pkg_postinst() { diff --git a/app-office/libreoffice/libreoffice-9999.ebuild b/app-office/libreoffice/libreoffice-9999.ebuild index f4beb244dbf1..cc2390bea4c0 100644 --- a/app-office/libreoffice/libreoffice-9999.ebuild +++ b/app-office/libreoffice/libreoffice-9999.ebuild @@ -82,8 +82,8 @@ unset ADDONS_SRC # Extensions that need extra work: LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher" -IUSE="accessibility base bluetooth +branding coinmp +cups +dbus debug eds firebird -googledrive gstreamer +gtk kde ldap +mariadb odk pdfimport postgres test +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 $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})" REQUIRED_USE="${PYTHON_REQUIRED_USE} @@ -182,6 +182,19 @@ COMMON_DEPEND="${PYTHON_DEPS} dev-libs/glib:2 net-wireless/bluez ) + clang? ( + || ( + ( sys-devel/clang:12 + sys-devel/llvm:12 + =sys-devel/lld-12* ) + ( sys-devel/clang:11 + sys-devel/llvm:11 + =sys-devel/lld-11* ) + ( sys-devel/clang:10 + sys-devel/llvm:10 + =sys-devel/lld-10* ) + ) + ) coinmp? ( sci-libs/coinor-mp ) cups? ( net-print/cups ) dbus? ( sys-apps/dbus[X] ) @@ -278,6 +291,7 @@ PATCHES=( # not upstreamable stuff "${FILESDIR}/${PN}-5.3.4.2-kioclient5.patch" "${FILESDIR}/${PN}-6.1-nomancompress.patch" + "${FILESDIR}/${PN}-7.0.3.1-qt5detect.patch" ) S="${WORKDIR}/${PN}-${MY_PV}" @@ -374,17 +388,58 @@ src_configure() { local google_default_client_id="329227923882.apps.googleusercontent.com" local google_default_client_secret="vgKG0NNv7GoDpbtoFNLxCUXu" + # Show flags set at the beginning + einfo "Preset CFLAGS: ${CFLAGS}" + einfo "Preset LDFLAGS: ${LDFLAGS}" + + if use clang ; then + # Force clang + einfo "Enforcing the use of clang due to USE=clang ..." + AR=llvm-ar + CC=${CHOST}-clang + CXX=${CHOST}-clang++ + NM=llvm-nm + RANLIB=llvm-ranlib + LDFLAGS+=" -fuse-ld=lld" + else + # Force gcc + einfo "Enforcing the use of gcc due to USE=-clang ..." + AR=gcc-ar + CC=${CHOST}-gcc + CXX=${CHOST}-g++ + NM=gcc-nm + RANLIB=gcc-ranlib + fi + + if use custom-cflags ; then + elog "USE=custom-cflags has been selected. You are on your own to make sure that" + elog "the build succeeds. Good luck!" + strip-unsupported-flags + else + strip-flags + fi + + export LO_CLANG_CC=${CC} + export LO_CLANG_CXX=${CXX} + + # Show flags set at the end + einfo " Used CFLAGS: ${CFLAGS}" + einfo " Used LDFLAGS: ${LDFLAGS}" + + # Ensure we use correct toolchain + tc-export CC CXX LD AR NM OBJDUMP RANLIB PKG_CONFIG + + if use vulkan && ! use clang ; then + ewarn "Building skia with gcc may lead to performance issues. Disable vulkan or enable clang." + fi + # optimization flags export GMAKE_OPTIONS="${MAKEOPTS}" # System python enablement: export PYTHON_CFLAGS=$(python_get_CFLAGS) export PYTHON_LIBS=$(python_get_LIBS) - if use kde; then - export QT_SELECT=5 # bug 639620 needs proper fix though - export QT5DIR="$(qt5_get_bindir)/../" - export MOC5="$(qt5_get_bindir)/moc" - fi + use kde && export QT5DIR="$(qt5_get_bindir)/.." local gentoo_buildid="Gentoo official package" if [[ -n ${LOCOREGIT_VERSION} ]]; then @@ -465,6 +520,7 @@ src_configure() { $(use_enable odk) $(use_enable pdfimport) $(use_enable postgres postgresql-sdbc) + $(use_enable vulkan skia) $(use_with accessibility lxml) $(use_with coinmp system-coinmp) $(use_with googledrive gdrive-client-id ${google_default_client_id}) @@ -585,6 +641,11 @@ EOF dosym ../../../../${loprogdir}/__pycache__/${pyc} $(python_get_sitedir)/__pycache__/${pyc} done < <(find "${D}"${lodir}/program -type f -name ${py/.py/*.pyc} -print0) done + + # bug 709450 + mkdir -p "${ED}"/usr/share/metainfo || die + mv "${ED}"/usr/share/appdata/* "${ED}"/usr/share/metainfo/ || die + rmdir "${ED}"/usr/share/appdata || die } pkg_postinst() { diff --git a/app-office/libreoffice/metadata.xml b/app-office/libreoffice/metadata.xml index 3afed225b936..4ac974303a8d 100644 --- a/app-office/libreoffice/metadata.xml +++ b/app-office/libreoffice/metadata.xml @@ -12,10 +12,12 @@ computer. It will however make a snappier LibreOffice than the binary version Enable full support for LibreOffice Base databases (involves additional bundled libs) + Use Clang compiler instead of GCC Use sci-libs/coinor-mp as alternative solver Enable support for remote files on Google Drive Prefer mariadb connector over mysql connector Build the Office Development Kit Enable PDF import via the Poppler library + Enable Vulkan usage via the skia library (clang recommended) diff --git a/app-portage/Manifest.gz b/app-portage/Manifest.gz index 15084bf31e9a..b0f713175b4e 100644 Binary files a/app-portage/Manifest.gz and b/app-portage/Manifest.gz differ diff --git a/app-portage/euses/euses-2.6.0.ebuild b/app-portage/euses/euses-2.6.0.ebuild index a218983e68e0..30580848fc2a 100644 --- a/app-portage/euses/euses-2.6.0.ebuild +++ b/app-portage/euses/euses-2.6.0.ebuild @@ -9,7 +9,7 @@ SRC_URI="https://www.xs4all.nl/~rooversj/gentoo/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc x86" S=${WORKDIR} diff --git a/app-vim/Manifest.gz b/app-vim/Manifest.gz index 0e0a0d558712..68e8b4e54735 100644 Binary files a/app-vim/Manifest.gz and b/app-vim/Manifest.gz differ diff --git a/app-vim/vimoutliner/vimoutliner-0.3.6-r1.ebuild b/app-vim/vimoutliner/vimoutliner-0.3.6-r1.ebuild index 19119a8ef09b..b5f625af1cfa 100644 --- a/app-vim/vimoutliner/vimoutliner-0.3.6-r1.ebuild +++ b/app-vim/vimoutliner/vimoutliner-0.3.6-r1.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="vim plugin: easy and fast outlining" HOMEPAGE="https://github.com/vimoutliner/vimoutliner" SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" -KEYWORDS="amd64 ~ia64 ~mips ppc sparc x86" +KEYWORDS="amd64 ~ia64 ppc sparc x86" VIM_PLUGIN_HELPFILES="vimoutliner" VIM_PLUGIN_MESSAGES="filetype" diff --git a/dev-cpp/Manifest.gz b/dev-cpp/Manifest.gz index dbfea9720ea6..d6c36118da26 100644 Binary files a/dev-cpp/Manifest.gz and b/dev-cpp/Manifest.gz differ diff --git a/dev-cpp/eigen/eigen-3.3.7-r1.ebuild b/dev-cpp/eigen/eigen-3.3.7-r1.ebuild index ab7874dd7e3b..78cd681f6b17 100644 --- a/dev-cpp/eigen/eigen-3.3.7-r1.ebuild +++ b/dev-cpp/eigen/eigen-3.3.7-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://gitlab.com/libeigen/eigen/-/archive/3.3.7/${P}.tar.bz2 -> ${P}- LICENSE="MPL-2.0" SLOT="3" -KEYWORDS="~amd64 ~arm arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux" IUSE="cpu_flags_arm_neon cpu_flags_ppc_altivec cpu_flags_ppc_vsx cuda debug doc openmp test" #zvector RESTRICT="!test? ( test )" diff --git a/dev-db/Manifest.gz b/dev-db/Manifest.gz index 1aab74d90437..37083dc41263 100644 Binary files a/dev-db/Manifest.gz and b/dev-db/Manifest.gz differ diff --git a/dev-db/percona-xtrabackup/metadata.xml b/dev-db/percona-xtrabackup/metadata.xml index 9e4529d4229a..06a7f98b1551 100644 --- a/dev-db/percona-xtrabackup/metadata.xml +++ b/dev-db/percona-xtrabackup/metadata.xml @@ -1,10 +1,6 @@ - - hydrapolic@gmail.com - Tomáš Mózes - gentoo@manwe.pl Michał Zając diff --git a/dev-db/pg_top/Manifest b/dev-db/pg_top/Manifest index f72bfcdce728..262011dad3c9 100644 --- a/dev-db/pg_top/Manifest +++ b/dev-db/pg_top/Manifest @@ -1 +1,2 @@ DIST pg_top-3.7.0.tar.bz2 236076 BLAKE2B 87a29d0237aad48b683c17ba56fdbc4a90f854f4f497057ffc978be1797d978f02694781e83d296fca82e03c8bc737f7cfd74e996987eea0bd8d6a66ae433ce0 SHA512 509cd3ce65a9b549097eaab5ae27106fa469cdeb4f37950564654f3df01390e1a771c8fa4f5858c3e4c1e76470b6c0fd9b07e8268564f59285e30bf824d7c4ec +DIST pg_top-4.0.0.tar.xz 117920 BLAKE2B 5c13fd868804492ccce3b660875602df958f065126f9dc17f45ebcac7961384cd1d3d3313da49832a1219ea7e86ae78cbbdb975467b13b32d5f836f5cd33a443 SHA512 b7a016137495ceecdcf0ac0e95c73b7eca20b57264f7b63b0a38c3f31db742c704ed0094e07f6df051bce9bc26214f5a8f66ced1e923bb66e0c86fff1e2ffc19 diff --git a/dev-db/pg_top/pg_top-4.0.0.ebuild b/dev-db/pg_top/pg_top-4.0.0.ebuild new file mode 100644 index 000000000000..f0d4e2ea16a6 --- /dev/null +++ b/dev-db/pg_top/pg_top-4.0.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="'top' for PostgreSQL" +HOMEPAGE="https://pg_top.gitlab.io/" +SRC_URI="https://pg_top.gitlab.io/source/${P}.tar.xz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-db/postgresql:=" +DEPEND="${RDEPEND}" + +DOCS=( HISTORY.rst README.rst TODO Y2K ) diff --git a/dev-db/pgadmin4/Manifest b/dev-db/pgadmin4/Manifest index ced823d7b029..5966983d340d 100644 --- a/dev-db/pgadmin4/Manifest +++ b/dev-db/pgadmin4/Manifest @@ -1,3 +1,4 @@ DIST pgadmin4-4.17.tar.gz 28007097 BLAKE2B d296f2b9372c23067db899fa82e1b8e732837b01a6172dd2d70520f815aafde161715eea9d9d53e7507a6a715dbfdaabf001a10d143c1aa0505237b2b138e334 SHA512 f9e292ba7ff1e5edaa8738188eb01744d69d0eb134700feb0623806425c998e7f298f74cd498a09f2d9a073a9a349c82f7a3f617e1da3c8dd757cc982d941c9f DIST pgadmin4-4.25.tar.gz 33167393 BLAKE2B 5a40e45c53f79ea66c6f685d1605ddce7b1758540bf3a6863d4b092cc4dab5b00daff15832cd6feee28aa348c7a5376e25a93508fd348d8ffd4d29031e2b6c68 SHA512 a1944f9c65b8aa7ec5bd83ef75702293d869ae341ea73f81fb4358bfbc7f91a6981237eb9f1b20055c5f3fa182428afe19dc170963265789c34d73f2e240c268 DIST pgadmin4-4.26.tar.gz 33525278 BLAKE2B 2a4061f59299bc48b029a4a93f410538170b6c3d97597074d2b3b6eed1de0f9a1ac88bc187614d9e46d8fe872941f173ba0f0a02def590451dad09e6a3b78e5a SHA512 952a4771f80541c54234fcaa9c870283fdf4887246d0d9751a77c28340b7e39ba871141f230086efda9a274d5e6bd567305047cdc7edf766ccd41112281fdf94 +DIST pgadmin4-4.28.tar.gz 35386627 BLAKE2B 6cbee6ccadf3b35e1b0aece2e8fc4b9e35dd04ed70436a3b74d69c09e887499c3a2ab8710d16df3327cd848c3c5ee1fac2cde06facbdc5605673b04a4a4fc434 SHA512 b9e8946e8133b382b9d69126c1ec6fc07a4b2051316c2151c339f15652900fa2bdf0a07811e052548c3f8699e382d8c16d187e89409b194e491148123558522e diff --git a/dev-db/pgadmin4/pgadmin4-4.28.ebuild b/dev-db/pgadmin4/pgadmin4-4.28.ebuild new file mode 100644 index 000000000000..f795a75bfb27 --- /dev/null +++ b/dev-db/pgadmin4/pgadmin4-4.28.ebuild @@ -0,0 +1,130 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_REQ_USE="sqlite" +inherit desktop python-single-r1 qmake-utils xdg + +DESCRIPTION="GUI administration and development platform for PostgreSQL" +HOMEPAGE="https://www.pgadmin.org/" +SRC_URI="https://ftp.postgresql.org/pub/pgadmin/${PN}/v${PV}/source/${P}.tar.gz" + +LICENSE="POSTGRESQL" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RESTRICT="test" + +# libsodium dep added because of 689678 +COMMON_DEPEND="${PYTHON_DEPS} + dev-libs/libsodium[-minimal] + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5[ssl] + dev-qt/qtwidgets:5 +" +DEPEND="${COMMON_DEPEND} + doc? ( + $(python_gen_cond_dep ' + dev-python/sphinx[${PYTHON_MULTI_USEDEP}] + ') + ) + virtual/imagemagick-tools[png] +" + +# In 4.25's requirement.txt, bcrypt is listed as <=3.17, but upstream's +# git history shows this is just for compatibility with /dev/null || die "pushd failed" - - for f in "${ED}/usr/share/postgresql-${SLOT}/man/man${mansec}"/* ; do - bn=$(basename "${f}") - slotted_name=${bn%.${mansec}}${SLOT}.${mansec} - case ${bn} in - TABLE.7|WITH.7) - echo ".so ${rel_manpath}/SELECT.7" > ${slotted_name} - ;; - *) - echo ".so ${rel_manpath}/${bn}" > ${slotted_name} - ;; - esac - done - - popd > /dev/null - done - - insinto /etc/postgresql-${SLOT} - newins src/bin/psql/psqlrc.sample psqlrc - - # Don't delete libpg{port,common}.a (Bug #571046). They're always - # needed by extensions utilizing PGXS. - use static-libs || \ - find "${ED}" -name '*.a' ! -name libpgport.a ! -name libpgcommon.a \ - -delete - - # Make slot specific links to programs - local f bn - for f in $(find "${ED}/usr/$(get_libdir)/postgresql-${SLOT}/bin" \ - -mindepth 1 -maxdepth 1) - do - bn=$(basename "${f}") - dosym "../$(get_libdir)/postgresql-${SLOT}/bin/${bn}" \ - "/usr/bin/${bn}${SLOT/.}" - done - - if use doc ; then - docinto html - dodoc doc/src/sgml/html/* - fi - - if use server; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.confd-9.3" | newconfd - ${PN}-${SLOT} - - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.init-9.3-r1" | newinitd - ${PN}-${SLOT} - - if use systemd; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.service-9.6-r1" | \ - systemd_newunit - ${PN}-${SLOT}.service - newbin "${FILESDIR}"/${PN}-check-db-dir ${PN}-${SLOT}-check-db-dir - systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfiles ${PN}-${SLOT}.conf - fi - - use pam && pamd_mimic system-auth ${PN}-${SLOT} auth account session - - if use prefix ; then - keepdir /run/postgresql - fperms 1775 /run/postgresql - fi - fi -} - -pkg_postinst() { - use server && use systemd && systemd_tmpfiles_create ${PN}-${SLOT}.conf - postgresql-config update - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - - if [[ -n ${REPLACING_VERSIONS} ]] ; then - ewarn "If your system is using 'pg_stat_statements' and you are running a" - ewarn "version of PostgreSQL ${SLOT}, we advise that you execute" - ewarn "the following command after upgrading:" - ewarn - ewarn "ALTER EXTENSION pg_stat_statements UPDATE;" - fi - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "${DATA_DIR}" - chown -Rf postgres:postgres "${DATA_DIR}" - chmod 0700 "${DATA_DIR}" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directories/,+1d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - if ! use systemd; then - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - fi - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - elif use systemd; then - einfo "You should use the 'postgresql-${SLOT}.service' unit to run PostgreSQL" - einfo "instead of 'pg_ctl'." - else - einfo "You should use the '${EROOT}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/postgresql/postgresql-11.9.ebuild b/dev-db/postgresql/postgresql-11.9.ebuild deleted file mode 100644 index f49a3c2de54f..000000000000 --- a/dev-db/postgresql/postgresql-11.9.ebuild +++ /dev/null @@ -1,458 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9} ) - -inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd - -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -SLOT=$(ver_cut 1) - -MY_PV=${PV/_/} -S="${WORKDIR}/${PN}-${MY_PV}" - -SRC_URI="https://ftp.postgresql.org/pub/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2" - -LICENSE="POSTGRESQL GPL-2" -DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="https://www.postgresql.org/" - -IUSE="debug doc icu kerberos kernel_linux ldap libressl llvm nls pam - perl python +readline selinux +server systemd ssl static-libs tcl - threads uuid xml zlib" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -CDEPEND=" ->=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:= -) -pam? ( sys-libs/pam ) -perl? ( >=dev-lang/perl-5.8:= ) -python? ( ${PYTHON_DEPS} ) -readline? ( sys-libs/readline:0= ) -server? ( systemd? ( sys-apps/systemd ) ) -ssl? ( - !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) - libressl? ( dev-libs/libressl:= ) -) -tcl? ( >=dev-lang/tcl-8:0= ) -xml? ( dev-libs/libxml2 dev-libs/libxslt ) -zlib? ( sys-libs/zlib ) -" - -# uuid flags -- depend on sys-apps/util-linux for Linux libcs, or if no -# supported libc in use depend on dev-libs/ossp-uuid. For BSD systems, -# the libc includes UUID functions. -UTIL_LINUX_LIBC=( elibc_{glibc,uclibc,musl} ) -BSD_LIBC=( elibc_{Free,Net,Open}BSD ) - -nest_usedep() { - local front back - while [[ ${#} -gt 1 ]]; do - front+="${1}? ( " - back+=" )" - shift - done - echo "${front}${1}${back}" -} - -IUSE+=" ${UTIL_LINUX_LIBC[@]} ${BSD_LIBC[@]}" -CDEPEND+=" -uuid? ( - ${UTIL_LINUX_LIBC[@]/%/? ( sys-apps/util-linux )} - $(nest_usedep ${UTIL_LINUX_LIBC[@]/#/!} ${BSD_LIBC[@]/#/!} dev-libs/ossp-uuid) -)" - -DEPEND="${CDEPEND} -sys-devel/bison -sys-devel/flex -nls? ( sys-devel/gettext ) -xml? ( virtual/pkgconfig ) -" - -RDEPEND="${CDEPEND} -selinux? ( sec-policy/selinux-postgresql ) -" - -pkg_setup() { - use server && CONFIG_CHECK="~SYSVIPC" linux-info_pkg_setup - - use python && python-single-r1_pkg_setup -} - -src_prepare() { - # Set proper run directory - sed "s|\(PGSOCKET_DIR\s\+\)\"/tmp\"|\1\"${EPREFIX}/run/postgresql\"|" \ - -i src/include/pg_config_manual.h || die - - # Rely on $PATH being in the proper order so that the correct - # install program is used for modules utilizing PGXS in both - # hardened and non-hardened environments. (Bug #528786) - sed 's/@install_bin@/install -c/' -i src/Makefile.global.in || die - - use server || eapply "${FILESDIR}/${PN}-11_beta1-no-server.patch" - - if use pam ; then - sed "s/\(#define PGSQL_PAM_SERVICE \"postgresql\)/\1-${SLOT}/" \ - -i src/backend/libpq/auth.c || \ - die 'PGSQL_PAM_SERVICE rename failed.' - fi - - eapply_user -} - -src_configure() { - case ${CHOST} in - *-darwin*|*-solaris*) - use nls && append-libs intl - ;; - esac - - export LDFLAGS_SL="${LDFLAGS}" - export LDFLAGS_EX="${LDFLAGS}" - - local PO="${EPREFIX}" - - local i uuid_config="" - if use uuid; then - for i in ${UTIL_LINUX_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=e2fs" - done - for i in ${BSD_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=bsd" - done - [[ -z $uuid_config ]] && uuid_config="--with-uuid=ossp" - fi - - econf \ - --prefix="${PO}/usr/$(get_libdir)/postgresql-${SLOT}" \ - --datadir="${PO}/usr/share/postgresql-${SLOT}" \ - --includedir="${PO}/usr/include/postgresql-${SLOT}" \ - --mandir="${PO}/usr/share/postgresql-${SLOT}/man" \ - --sysconfdir="${PO}/etc/postgresql-${SLOT}" \ - --with-system-tzdata="${PO}/usr/share/zoneinfo" \ - $(use_enable !alpha spinlocks) \ - $(use_enable debug) \ - $(use_enable threads thread-safety) \ - $(use_with icu) \ - $(use_with kerberos gssapi) \ - $(use_with ldap) \ - $(use_with llvm) \ - $(use_with pam) \ - $(use_with perl) \ - $(use_with python) \ - $(use_with readline) \ - $(use_with ssl openssl) \ - $(usex server "$(use_with systemd)" '--without-systemd') \ - $(use_with tcl) \ - ${uuid_config} \ - $(use_with xml libxml) \ - $(use_with xml libxslt) \ - $(use_with zlib) \ - $(use_enable nls) -} - -src_compile() { - emake - emake -C contrib -} - -src_install() { - emake DESTDIR="${D}" install - emake DESTDIR="${D}" install -C contrib - - dodoc README HISTORY doc/{TODO,bug.template} - - # man pages are already built, but if we have the target make them, - # they'll be generated from source before being installed so we - # manually install man pages. - # We use ${SLOT} instead of doman for postgresql.eselect - insinto /usr/share/postgresql-${SLOT}/man/ - doins -r doc/src/sgml/man{1,3,7} - if ! use server; then - # Remove man pages for non-existent binaries - serverman=( - initdb - pg_{archivecleanup,controldata,ctl,resetwal,rewind,standby} - pg_{test_{fsync,timing},upgrade,waldump} - post{gres,master} - ) - for m in ${serverman[@]} ; do - rm "${ED}/usr/share/postgresql-${SLOT}/man/man1/${m}.1" - done - fi - docompress /usr/share/postgresql-${SLOT}/man/man{1,3,7} - - # Create slot specific man pages - local bn f mansec slotted_name - for mansec in 1 3 7 ; do - local rel_manpath="../../postgresql-${SLOT}/man/man${mansec}" - - mkdir -p "${ED}"/usr/share/man/man${mansec} || die "making man dir" - pushd "${ED}"/usr/share/man/man${mansec} > /dev/null || die "pushd failed" - - for f in "${ED}/usr/share/postgresql-${SLOT}/man/man${mansec}"/* ; do - bn=$(basename "${f}") - slotted_name=${bn%.${mansec}}${SLOT}.${mansec} - case ${bn} in - TABLE.7|WITH.7) - echo ".so ${rel_manpath}/SELECT.7" > ${slotted_name} - ;; - *) - echo ".so ${rel_manpath}/${bn}" > ${slotted_name} - ;; - esac - done - - popd > /dev/null - done - - insinto /etc/postgresql-${SLOT} - newins src/bin/psql/psqlrc.sample psqlrc - - # Don't delete libpg{port,common}.a (Bug #571046). They're always - # needed by extensions utilizing PGXS. - use static-libs || \ - find "${ED}" -name '*.a' ! -name libpgport.a ! -name libpgcommon.a \ - -delete - - # Make slot specific links to programs - local f bn - for f in $(find "${ED}/usr/$(get_libdir)/postgresql-${SLOT}/bin" \ - -mindepth 1 -maxdepth 1) - do - bn=$(basename "${f}") - dosym "../$(get_libdir)/postgresql-${SLOT}/bin/${bn}" \ - "/usr/bin/${bn}${SLOT/.}" - done - - if use doc ; then - docinto html - dodoc doc/src/sgml/html/* - fi - - if use server; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.confd-9.3" | newconfd - ${PN}-${SLOT} - - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.init-9.3-r1" | newinitd - ${PN}-${SLOT} - - if use systemd; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.service-9.6-r1" | \ - systemd_newunit - ${PN}-${SLOT}.service - newbin "${FILESDIR}"/${PN}-check-db-dir ${PN}-${SLOT}-check-db-dir - systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfiles ${PN}-${SLOT}.conf - fi - - use pam && pamd_mimic system-auth ${PN}-${SLOT} auth account session - - if use prefix ; then - keepdir /run/postgresql - fperms 1775 /run/postgresql - fi - fi -} - -pkg_postinst() { - use server && use systemd && systemd_tmpfiles_create ${PN}-${SLOT}.conf - postgresql-config update - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - - if [[ -n ${REPLACING_VERSIONS} ]] ; then - ewarn "If your system is using 'pg_stat_statements' and you are running a" - ewarn "version of PostgreSQL ${SLOT}, we advise that you execute" - ewarn "the following command after upgrading:" - ewarn - ewarn "ALTER EXTENSION pg_stat_statements UPDATE;" - fi - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "$(dirname ${DATA_DIR%/})" || die "Couldn't parent dirs" - mkdir -m 0700 "${DATA_DIR%/}" || die "Couldn't make DATA_DIR" - chown -h postgres:postgres "${DATA_DIR%/}" || die "Couldn't chown" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directories/,+1d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - if ! use systemd; then - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - fi - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - elif use systemd; then - einfo "You should use the 'postgresql-${SLOT}.service' unit to run PostgreSQL" - einfo "instead of 'pg_ctl'." - else - einfo "You should use the '${EROOT}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/postgresql/postgresql-12.4.ebuild b/dev-db/postgresql/postgresql-12.4.ebuild deleted file mode 100644 index 88a1f960cb28..000000000000 --- a/dev-db/postgresql/postgresql-12.4.ebuild +++ /dev/null @@ -1,458 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9} ) - -inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd - -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -SLOT=$(ver_cut 1) - -MY_PV=${PV/_/} -S="${WORKDIR}/${PN}-${MY_PV}" - -SRC_URI="https://ftp.postgresql.org/pub/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2" - -LICENSE="POSTGRESQL GPL-2" -DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="https://www.postgresql.org/" - -IUSE="debug doc icu kerberos kernel_linux ldap libressl llvm nls pam - perl python +readline selinux +server systemd ssl static-libs tcl - threads uuid xml zlib" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -CDEPEND=" ->=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:= -) -pam? ( sys-libs/pam ) -perl? ( >=dev-lang/perl-5.8:= ) -python? ( ${PYTHON_DEPS} ) -readline? ( sys-libs/readline:0= ) -server? ( systemd? ( sys-apps/systemd ) ) -ssl? ( - !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) - libressl? ( dev-libs/libressl:= ) -) -tcl? ( >=dev-lang/tcl-8:0= ) -xml? ( dev-libs/libxml2 dev-libs/libxslt ) -zlib? ( sys-libs/zlib ) -" - -# uuid flags -- depend on sys-apps/util-linux for Linux libcs, or if no -# supported libc in use depend on dev-libs/ossp-uuid. For BSD systems, -# the libc includes UUID functions. -UTIL_LINUX_LIBC=( elibc_{glibc,uclibc,musl} ) -BSD_LIBC=( elibc_{Free,Net,Open}BSD ) - -nest_usedep() { - local front back - while [[ ${#} -gt 1 ]]; do - front+="${1}? ( " - back+=" )" - shift - done - echo "${front}${1}${back}" -} - -IUSE+=" ${UTIL_LINUX_LIBC[@]} ${BSD_LIBC[@]}" -CDEPEND+=" -uuid? ( - ${UTIL_LINUX_LIBC[@]/%/? ( sys-apps/util-linux )} - $(nest_usedep ${UTIL_LINUX_LIBC[@]/#/!} ${BSD_LIBC[@]/#/!} dev-libs/ossp-uuid) -)" - -DEPEND="${CDEPEND} -sys-devel/bison -sys-devel/flex -nls? ( sys-devel/gettext ) -xml? ( virtual/pkgconfig ) -" - -RDEPEND="${CDEPEND} -selinux? ( sec-policy/selinux-postgresql ) -" - -pkg_setup() { - use server && CONFIG_CHECK="~SYSVIPC" linux-info_pkg_setup - - use python && python-single-r1_pkg_setup -} - -src_prepare() { - # Set proper run directory - sed "s|\(PGSOCKET_DIR\s\+\)\"/tmp\"|\1\"${EPREFIX}/run/postgresql\"|" \ - -i src/include/pg_config_manual.h || die - - # Rely on $PATH being in the proper order so that the correct - # install program is used for modules utilizing PGXS in both - # hardened and non-hardened environments. (Bug #528786) - sed 's/@install_bin@/install -c/' -i src/Makefile.global.in || die - - use server || eapply "${FILESDIR}/${PN}-12.1-no-server.patch" - - if use pam ; then - sed "s/\(#define PGSQL_PAM_SERVICE \"postgresql\)/\1-${SLOT}/" \ - -i src/backend/libpq/auth.c || \ - die 'PGSQL_PAM_SERVICE rename failed.' - fi - - eapply_user -} - -src_configure() { - case ${CHOST} in - *-darwin*|*-solaris*) - use nls && append-libs intl - ;; - esac - - export LDFLAGS_SL="${LDFLAGS}" - export LDFLAGS_EX="${LDFLAGS}" - - local PO="${EPREFIX}" - - local i uuid_config="" - if use uuid; then - for i in ${UTIL_LINUX_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=e2fs" - done - for i in ${BSD_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=bsd" - done - [[ -z $uuid_config ]] && uuid_config="--with-uuid=ossp" - fi - - econf \ - --prefix="${PO}/usr/$(get_libdir)/postgresql-${SLOT}" \ - --datadir="${PO}/usr/share/postgresql-${SLOT}" \ - --includedir="${PO}/usr/include/postgresql-${SLOT}" \ - --mandir="${PO}/usr/share/postgresql-${SLOT}/man" \ - --sysconfdir="${PO}/etc/postgresql-${SLOT}" \ - --with-system-tzdata="${PO}/usr/share/zoneinfo" \ - $(use_enable !alpha spinlocks) \ - $(use_enable debug) \ - $(use_enable threads thread-safety) \ - $(use_with icu) \ - $(use_with kerberos gssapi) \ - $(use_with ldap) \ - $(use_with llvm) \ - $(use_with pam) \ - $(use_with perl) \ - $(use_with python) \ - $(use_with readline) \ - $(use_with ssl openssl) \ - $(usex server "$(use_with systemd)" '--without-systemd') \ - $(use_with tcl) \ - ${uuid_config} \ - $(use_with xml libxml) \ - $(use_with xml libxslt) \ - $(use_with zlib) \ - $(use_enable nls) -} - -src_compile() { - emake - emake -C contrib -} - -src_install() { - emake DESTDIR="${D}" install - emake DESTDIR="${D}" install -C contrib - - dodoc README HISTORY - - # man pages are already built, but if we have the target make them, - # they'll be generated from source before being installed so we - # manually install man pages. - # We use ${SLOT} instead of doman for postgresql.eselect - insinto /usr/share/postgresql-${SLOT}/man/ - doins -r doc/src/sgml/man{1,3,7} - if ! use server; then - # Remove man pages for non-existent binaries - serverman=( - initdb - pg_{archivecleanup,controldata,ctl,resetwal,rewind,standby} - pg_{test_{fsync,timing},upgrade,waldump} - post{gres,master} - ) - for m in ${serverman[@]} ; do - rm "${ED}/usr/share/postgresql-${SLOT}/man/man1/${m}.1" - done - fi - docompress /usr/share/postgresql-${SLOT}/man/man{1,3,7} - - # Create slot specific man pages - local bn f mansec slotted_name - for mansec in 1 3 7 ; do - local rel_manpath="../../postgresql-${SLOT}/man/man${mansec}" - - mkdir -p "${ED}"/usr/share/man/man${mansec} || die "making man dir" - pushd "${ED}"/usr/share/man/man${mansec} > /dev/null || die "pushd failed" - - for f in "${ED}/usr/share/postgresql-${SLOT}/man/man${mansec}"/* ; do - bn=$(basename "${f}") - slotted_name=${bn%.${mansec}}${SLOT}.${mansec} - case ${bn} in - TABLE.7|WITH.7) - echo ".so ${rel_manpath}/SELECT.7" > ${slotted_name} - ;; - *) - echo ".so ${rel_manpath}/${bn}" > ${slotted_name} - ;; - esac - done - - popd > /dev/null - done - - insinto /etc/postgresql-${SLOT} - newins src/bin/psql/psqlrc.sample psqlrc - - # Don't delete libpg{port,common}.a (Bug #571046). They're always - # needed by extensions utilizing PGXS. - use static-libs || \ - find "${ED}" -name '*.a' ! -name libpgport.a ! -name libpgcommon.a \ - -delete - - # Make slot specific links to programs - local f bn - for f in $(find "${ED}/usr/$(get_libdir)/postgresql-${SLOT}/bin" \ - -mindepth 1 -maxdepth 1) - do - bn=$(basename "${f}") - dosym "../$(get_libdir)/postgresql-${SLOT}/bin/${bn}" \ - "/usr/bin/${bn}${SLOT/.}" - done - - if use doc ; then - docinto html - dodoc doc/src/sgml/html/* - fi - - if use server; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.confd-9.3" | newconfd - ${PN}-${SLOT} - - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.init-9.3-r1" | newinitd - ${PN}-${SLOT} - - if use systemd; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.service-9.6-r1" | \ - systemd_newunit - ${PN}-${SLOT}.service - newbin "${FILESDIR}"/${PN}-check-db-dir ${PN}-${SLOT}-check-db-dir - systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfiles ${PN}-${SLOT}.conf - fi - - use pam && pamd_mimic system-auth ${PN}-${SLOT} auth account session - - if use prefix ; then - keepdir /run/postgresql - fperms 1775 /run/postgresql - fi - fi -} - -pkg_postinst() { - use server && use systemd && systemd_tmpfiles_create ${PN}-${SLOT}.conf - postgresql-config update - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - - if [[ -n ${REPLACING_VERSIONS} ]] ; then - ewarn "If your system is using 'pg_stat_statements' and you are running a" - ewarn "version of PostgreSQL ${SLOT}, we advise that you execute" - ewarn "the following command after upgrading:" - ewarn - ewarn "ALTER EXTENSION pg_stat_statements UPDATE;" - fi - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "$(dirname ${DATA_DIR%/})" || die "Couldn't parent dirs" - mkdir -m 0700 "${DATA_DIR%/}" || die "Couldn't make DATA_DIR" - chown -h postgres:postgres "${DATA_DIR%/}" || die "Couldn't chown" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directories/,+1d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - if ! use systemd; then - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - fi - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - elif use systemd; then - einfo "You should use the 'postgresql-${SLOT}.service' unit to run PostgreSQL" - einfo "instead of 'pg_ctl'." - else - einfo "You should use the '${EROOT}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/postgresql/postgresql-13.0.ebuild b/dev-db/postgresql/postgresql-13.0.ebuild deleted file mode 100644 index 36cc823987e9..000000000000 --- a/dev-db/postgresql/postgresql-13.0.ebuild +++ /dev/null @@ -1,458 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9} ) - -inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd - -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -SLOT=$(ver_cut 1) - -MY_PV=${PV/_/} -S="${WORKDIR}/${PN}-${MY_PV}" - -SRC_URI="https://ftp.postgresql.org/pub/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2" - -LICENSE="POSTGRESQL GPL-2" -DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="https://www.postgresql.org/" - -IUSE="debug doc icu kerberos kernel_linux ldap libressl llvm nls pam - perl python +readline selinux +server systemd ssl static-libs tcl - threads uuid xml zlib" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -CDEPEND=" ->=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:= -) -pam? ( sys-libs/pam ) -perl? ( >=dev-lang/perl-5.8:= ) -python? ( ${PYTHON_DEPS} ) -readline? ( sys-libs/readline:0= ) -server? ( systemd? ( sys-apps/systemd ) ) -ssl? ( - !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) - libressl? ( dev-libs/libressl:= ) -) -tcl? ( >=dev-lang/tcl-8:0= ) -xml? ( dev-libs/libxml2 dev-libs/libxslt ) -zlib? ( sys-libs/zlib ) -" - -# uuid flags -- depend on sys-apps/util-linux for Linux libcs, or if no -# supported libc in use depend on dev-libs/ossp-uuid. For BSD systems, -# the libc includes UUID functions. -UTIL_LINUX_LIBC=( elibc_{glibc,uclibc,musl} ) -BSD_LIBC=( elibc_{Free,Net,Open}BSD ) - -nest_usedep() { - local front back - while [[ ${#} -gt 1 ]]; do - front+="${1}? ( " - back+=" )" - shift - done - echo "${front}${1}${back}" -} - -IUSE+=" ${UTIL_LINUX_LIBC[@]} ${BSD_LIBC[@]}" -CDEPEND+=" -uuid? ( - ${UTIL_LINUX_LIBC[@]/%/? ( sys-apps/util-linux )} - $(nest_usedep ${UTIL_LINUX_LIBC[@]/#/!} ${BSD_LIBC[@]/#/!} dev-libs/ossp-uuid) -)" - -DEPEND="${CDEPEND} -sys-devel/bison -sys-devel/flex -nls? ( sys-devel/gettext ) -xml? ( virtual/pkgconfig ) -" - -RDEPEND="${CDEPEND} -selinux? ( sec-policy/selinux-postgresql ) -" - -pkg_setup() { - use server && CONFIG_CHECK="~SYSVIPC" linux-info_pkg_setup - - use python && python-single-r1_pkg_setup -} - -src_prepare() { - # Set proper run directory - sed "s|\(PGSOCKET_DIR\s\+\)\"/tmp\"|\1\"${EPREFIX}/run/postgresql\"|" \ - -i src/include/pg_config_manual.h || die - - # Rely on $PATH being in the proper order so that the correct - # install program is used for modules utilizing PGXS in both - # hardened and non-hardened environments. (Bug #528786) - sed 's/@install_bin@/install -c/' -i src/Makefile.global.in || die - - use server || eapply "${FILESDIR}/${PN}-13_beta1-no-server.patch" - - if use pam ; then - sed "s/\(#define PGSQL_PAM_SERVICE \"postgresql\)/\1-${SLOT}/" \ - -i src/backend/libpq/auth.c || \ - die 'PGSQL_PAM_SERVICE rename failed.' - fi - - eapply_user -} - -src_configure() { - case ${CHOST} in - *-darwin*|*-solaris*) - use nls && append-libs intl - ;; - esac - - export LDFLAGS_SL="${LDFLAGS}" - export LDFLAGS_EX="${LDFLAGS}" - - local PO="${EPREFIX}" - - local i uuid_config="" - if use uuid; then - for i in ${UTIL_LINUX_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=e2fs" - done - for i in ${BSD_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=bsd" - done - [[ -z $uuid_config ]] && uuid_config="--with-uuid=ossp" - fi - - econf \ - --prefix="${PO}/usr/$(get_libdir)/postgresql-${SLOT}" \ - --datadir="${PO}/usr/share/postgresql-${SLOT}" \ - --includedir="${PO}/usr/include/postgresql-${SLOT}" \ - --mandir="${PO}/usr/share/postgresql-${SLOT}/man" \ - --sysconfdir="${PO}/etc/postgresql-${SLOT}" \ - --with-system-tzdata="${PO}/usr/share/zoneinfo" \ - $(use_enable !alpha spinlocks) \ - $(use_enable debug) \ - $(use_enable threads thread-safety) \ - $(use_with icu) \ - $(use_with kerberos gssapi) \ - $(use_with ldap) \ - $(use_with llvm) \ - $(use_with pam) \ - $(use_with perl) \ - $(use_with python) \ - $(use_with readline) \ - $(use_with ssl openssl) \ - $(usex server "$(use_with systemd)" '--without-systemd') \ - $(use_with tcl) \ - ${uuid_config} \ - $(use_with xml libxml) \ - $(use_with xml libxslt) \ - $(use_with zlib) \ - $(use_enable nls) -} - -src_compile() { - emake - emake -C contrib -} - -src_install() { - emake DESTDIR="${D}" install - emake DESTDIR="${D}" install -C contrib - - dodoc README HISTORY - - # man pages are already built, but if we have the target make them, - # they'll be generated from source before being installed so we - # manually install man pages. - # We use ${SLOT} instead of doman for postgresql.eselect - insinto /usr/share/postgresql-${SLOT}/man/ - doins -r doc/src/sgml/man{1,3,7} - if ! use server; then - # Remove man pages for non-existent binaries - serverman=( - initdb - pg_{archivecleanup,controldata,ctl,resetwal,rewind,standby} - pg_{test_{fsync,timing},upgrade,waldump} - post{gres,master} - ) - for m in ${serverman[@]} ; do - rm "${ED}/usr/share/postgresql-${SLOT}/man/man1/${m}.1" - done - fi - docompress /usr/share/postgresql-${SLOT}/man/man{1,3,7} - - # Create slot specific man pages - local bn f mansec slotted_name - for mansec in 1 3 7 ; do - local rel_manpath="../../postgresql-${SLOT}/man/man${mansec}" - - mkdir -p "${ED}"/usr/share/man/man${mansec} || die "making man dir" - pushd "${ED}"/usr/share/man/man${mansec} > /dev/null || die "pushd failed" - - for f in "${ED}/usr/share/postgresql-${SLOT}/man/man${mansec}"/* ; do - bn=$(basename "${f}") - slotted_name=${bn%.${mansec}}${SLOT}.${mansec} - case ${bn} in - TABLE.7|WITH.7) - echo ".so ${rel_manpath}/SELECT.7" > ${slotted_name} - ;; - *) - echo ".so ${rel_manpath}/${bn}" > ${slotted_name} - ;; - esac - done - - popd > /dev/null - done - - insinto /etc/postgresql-${SLOT} - newins src/bin/psql/psqlrc.sample psqlrc - - # Don't delete libpg{port,common}.a (Bug #571046). They're always - # needed by extensions utilizing PGXS. - use static-libs || \ - find "${ED}" -name '*.a' ! -name libpgport.a ! -name libpgcommon.a \ - -delete - - # Make slot specific links to programs - local f bn - for f in $(find "${ED}/usr/$(get_libdir)/postgresql-${SLOT}/bin" \ - -mindepth 1 -maxdepth 1) - do - bn=$(basename "${f}") - dosym "../$(get_libdir)/postgresql-${SLOT}/bin/${bn}" \ - "/usr/bin/${bn}${SLOT/.}" - done - - if use doc ; then - docinto html - dodoc doc/src/sgml/html/* - fi - - if use server; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.confd-9.3" | newconfd - ${PN}-${SLOT} - - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.init-9.3-r1" | newinitd - ${PN}-${SLOT} - - if use systemd; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.service-9.6-r1" | \ - systemd_newunit - ${PN}-${SLOT}.service - newbin "${FILESDIR}"/${PN}-check-db-dir ${PN}-${SLOT}-check-db-dir - systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfiles ${PN}-${SLOT}.conf - fi - - use pam && pamd_mimic system-auth ${PN}-${SLOT} auth account session - - if use prefix ; then - keepdir /run/postgresql - fperms 1775 /run/postgresql - fi - fi -} - -pkg_postinst() { - use server && use systemd && systemd_tmpfiles_create ${PN}-${SLOT}.conf - postgresql-config update - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - - if [[ -n ${REPLACING_VERSIONS} ]] ; then - ewarn "If your system is using 'pg_stat_statements' and you are running a" - ewarn "version of PostgreSQL ${SLOT}, we advise that you execute" - ewarn "the following command after upgrading:" - ewarn - ewarn "ALTER EXTENSION pg_stat_statements UPDATE;" - fi - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "$(dirname ${DATA_DIR%/})" || die "Couldn't parent dirs" - mkdir -m 0700 "${DATA_DIR%/}" || die "Couldn't make DATA_DIR" - chown -h postgres:postgres "${DATA_DIR%/}" || die "Couldn't chown" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directories/,+1d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - if ! use systemd; then - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - fi - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - elif use systemd; then - einfo "You should use the 'postgresql-${SLOT}.service' unit to run PostgreSQL" - einfo "instead of 'pg_ctl'." - else - einfo "You should use the '${EROOT}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/postgresql/postgresql-9.5.23.ebuild b/dev-db/postgresql/postgresql-9.5.23.ebuild deleted file mode 100644 index acc5e9779fd6..000000000000 --- a/dev-db/postgresql/postgresql-9.5.23.ebuild +++ /dev/null @@ -1,476 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9} ) - -inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd - -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-macos ~x86-solaris" - -SLOT=$(ver_cut 1-2) - -SRC_URI="https://ftp.postgresql.org/pub/source/v${PV}/postgresql-${PV}.tar.bz2" - -LICENSE="POSTGRESQL GPL-2" -DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="https://www.postgresql.org/" - -IUSE="debug doc kerberos kernel_linux ldap libressl nls pam perl - -pg-legacytimestamp python +readline selinux +server systemd ssl - static-libs tcl threads uuid xml zlib" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -CDEPEND=" ->=app-eselect/eselect-postgresql-2.0 -acct-group/postgres -acct-user/postgres -sys-apps/less -virtual/libintl -kerberos? ( virtual/krb5 ) -ldap? ( net-nds/openldap ) -pam? ( sys-libs/pam ) -perl? ( >=dev-lang/perl-5.8:= ) -python? ( ${PYTHON_DEPS} ) -readline? ( sys-libs/readline:0= ) -ssl? ( - !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) - libressl? ( dev-libs/libressl:= ) -) -tcl? ( >=dev-lang/tcl-8:0= ) -xml? ( dev-libs/libxml2 dev-libs/libxslt ) -zlib? ( sys-libs/zlib ) -" - -# uuid flags -- depend on sys-apps/util-linux for Linux libcs, or if no -# supported libc in use depend on dev-libs/ossp-uuid. For BSD systems, -# the libc includes UUID functions. -UTIL_LINUX_LIBC=( elibc_{glibc,uclibc,musl} ) -BSD_LIBC=( elibc_{Free,Net,Open}BSD ) - -nest_usedep() { - local front back - while [[ ${#} -gt 1 ]]; do - front+="${1}? ( " - back+=" )" - shift - done - echo "${front}${1}${back}" -} - -IUSE+=" ${UTIL_LINUX_LIBC[@]} ${BSD_LIBC[@]}" -CDEPEND+=" -uuid? ( - ${UTIL_LINUX_LIBC[@]/%/? ( sys-apps/util-linux )} - $(nest_usedep ${UTIL_LINUX_LIBC[@]/#/!} ${BSD_LIBC[@]/#/!} dev-libs/ossp-uuid) -)" - -DEPEND="${CDEPEND} -sys-devel/bison -sys-devel/flex -nls? ( sys-devel/gettext ) -xml? ( virtual/pkgconfig ) -" - -RDEPEND="${CDEPEND} -selinux? ( sec-policy/selinux-postgresql ) -" - -pkg_setup() { - use server && CONFIG_CHECK="~SYSVIPC" linux-info_pkg_setup - - use python && python-single-r1_pkg_setup -} - -src_prepare() { - # Work around PPC{,64} compilation bug where bool is already defined - sed '/#ifndef __cplusplus/a #undef bool' -i src/include/c.h || die - - # Set proper run directory - sed "s|\(PGSOCKET_DIR\s\+\)\"/tmp\"|\1\"${EPREFIX}/run/postgresql\"|" \ - -i src/include/pg_config_manual.h || die - - # Rely on $PATH being in the proper order so that the correct - # install program is used for modules utilizing PGXS in both - # hardened and non-hardened environments. (Bug #528786) - sed 's/@install_bin@/install -c/' -i src/Makefile.global.in || die - - use server || eapply "${FILESDIR}/${PN}-9.5.5-no-server.patch" - - if use pam ; then - sed -e "s/\(#define PGSQL_PAM_SERVICE \"postgresql\)/\1-${SLOT}/" \ - -i src/backend/libpq/auth.c || \ - die 'PGSQL_PAM_SERVICE rename failed.' - fi - - eapply_user -} - -src_configure() { - case ${CHOST} in - *-darwin*|*-solaris*) - use nls && append-libs intl - ;; - esac - - export LDFLAGS_SL="${LDFLAGS}" - export LDFLAGS_EX="${LDFLAGS}" - - local PO="${EPREFIX}" - - local i uuid_config="" - if use uuid; then - for i in ${UTIL_LINUX_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=e2fs" - done - for i in ${BSD_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=bsd" - done - [[ -z $uuid_config ]] && uuid_config="--with-uuid=ossp" - fi - - econf \ - --prefix="${PO}/usr/$(get_libdir)/postgresql-${SLOT}" \ - --datadir="${PO}/usr/share/postgresql-${SLOT}" \ - --includedir="${PO}/usr/include/postgresql-${SLOT}" \ - --mandir="${PO}/usr/share/postgresql-${SLOT}/man" \ - --sysconfdir="${PO}/etc/postgresql-${SLOT}" \ - --with-system-tzdata="${PO}/usr/share/zoneinfo" \ - $(use_enable !alpha spinlocks) \ - $(use_enable !pg-legacytimestamp integer-datetimes) \ - $(use_enable debug) \ - $(use_enable threads thread-safety) \ - $(use_with kerberos gssapi) \ - $(use_with ldap) \ - $(use_with pam) \ - $(use_with perl) \ - $(use_with python) \ - $(use_with readline) \ - $(use_with ssl openssl) \ - $(use_with tcl) \ - ${uuid_config} \ - $(use_with xml libxml) \ - $(use_with xml libxslt) \ - $(use_with zlib) \ - $(use_enable nls) -} - -src_compile() { - emake - emake -C contrib -} - -src_install() { - emake DESTDIR="${D}" install - emake DESTDIR="${D}" install -C contrib - - dodoc README HISTORY doc/{TODO,bug.template} - - # man pages are already built, but if we have the target make them, - # they'll be generated from source before being installed so we - # manually install man pages. - # We use ${SLOT} instead of doman for postgresql.eselect - insinto /usr/share/postgresql-${SLOT}/man/ - doins -r doc/src/sgml/man{1,3,7} - if ! use server; then - # Remove man pages for non-existent binaries - for m in {initdb,pg_{controldata,ctl,resetxlog},post{gres,master}}; do - rm "${ED}/usr/share/postgresql-${SLOT}/man/man1/${m}.1" - done - fi - docompress /usr/share/postgresql-${SLOT}/man/man{1,3,7} - - # Create slot specific man pages - local bn f mansec slotted_name - for mansec in 1 3 7 ; do - local rel_manpath="../../postgresql-${SLOT}/man/man${mansec}" - - mkdir -p "${ED}"/usr/share/man/man${mansec} || die "making man dir" - pushd "${ED}"/usr/share/man/man${mansec} > /dev/null || die "pushd failed" - - for f in "${ED}/usr/share/postgresql-${SLOT}/man/man${mansec}"/* ; do - bn=$(basename "${f}") - slotted_name=${bn%.${mansec}}${SLOT/.}.${mansec} - case ${bn} in - TABLE.7|WITH.7) - echo ".so ${rel_manpath}/SELECT.7" > ${slotted_name} - ;; - *) - echo ".so ${rel_manpath}/${bn}" > ${slotted_name} - ;; - esac - done - - popd > /dev/null - done - - insinto /etc/postgresql-${SLOT} - newins src/bin/psql/psqlrc.sample psqlrc - - # Don't delete libpg{port,common}.a (Bug #571046). They're always - # needed by extensions utilizing PGXS. - use static-libs || \ - find "${ED}" -name '*.a' ! -name libpgport.a ! -name libpgcommon.a \ - -delete - - local f bn - for f in $(find "${ED}/usr/$(get_libdir)/postgresql-${SLOT}/bin" \ - -mindepth 1 -maxdepth 1) - do - bn=$(basename "${f}") - # Temporarily tack on tmp to workaround a file collision - # issue. This is only necessary for 9.7 and earlier. 10 never - # had this issue. - dosym "../$(get_libdir)/postgresql-${SLOT}/bin/${bn}" \ - "/usr/bin/${bn}${SLOT/.}tmp" - done - - if use doc ; then - docinto html - dodoc doc/src/sgml/html/* - - docinto sgml - dodoc doc/src/sgml/*.{sgml,dsl} - fi - - if use server; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.confd-9.3" | newconfd - ${PN}-${SLOT} - - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.init-9.3-r1" | newinitd - ${PN}-${SLOT} - - if use systemd; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.service-9.2" | \ - systemd_newunit - ${PN}-${SLOT}.service - systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfiles ${PN}-${SLOT}.conf - fi - - newbin "${FILESDIR}"/${PN}-check-db-dir ${PN}-${SLOT}-check-db-dir - - use pam && pamd_mimic system-auth ${PN}-${SLOT} auth account session - - if use prefix ; then - keepdir /run/postgresql - fperms 1775 /run/postgresql - fi - fi -} - -pkg_preinst() { - # Find all of the slot-specific symlinks, if any, in /usr/bin (e.g., - # /usr/bin/psql96). They may have been created by the - # postgresql.eselect module, but they're handled within this ebuild - # now. It's alright if we momentarily delete /usr/bin/psql as it - # will be recreated by the eselect module in pkg_ppostinst(). This - # is only necessary for 9.7 and earlier. 10 and later were never - # handled in this manner. - local canonicalise - if type -p realpath > /dev/null; then - canonicalise=realpath - elif type -p readlink > /dev/null; then - canonicalise='readlink -f' - else - # can't die, subshell - die "No readlink nor realpath found, cannot canonicalise" - fi - - local l - # First remove any symlinks in /usr/bin that may have been created - # by the old eselect - for l in $(find "${ROOT}/usr/bin" -mindepth 1 -maxdepth 1 -type l) ; do - if [[ $(${canonicalise} "${l}") == *postgresql-${SLOT}* ]] ; then - rm "${l}" || ewarn "Couldn't remove ${l}" - fi - done - - # Then move the symlinks created by the ebuild to their proper place. - for l in "${ED}"/usr/bin/*tmp ; do - mv "${l}" "${l%tmp}" \ - || ewarn "Couldn't rename $(basename ${l}) to $(basename ${l%tmp})" - done -} - -pkg_postinst() { - use server && use systemd && systemd_tmpfiles_create ${PN}-${SLOT}.conf - postgresql-config update - - if use alpha && use server ; then - ewarn "PostgreSQL 9.5+ no longer has native spinlock support on Alpha platforms." - ewarn "As a result, performance will be extremely degraded." - fi - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "${DATA_DIR}" - chown -Rf postgres:postgres "${DATA_DIR}" - chmod 0700 "${DATA_DIR}" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directories/,+1d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - else - einfo "You should use the '${EROOT}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/postgresql/postgresql-9.6.19.ebuild b/dev-db/postgresql/postgresql-9.6.19.ebuild deleted file mode 100644 index b36d51b81cea..000000000000 --- a/dev-db/postgresql/postgresql-9.6.19.ebuild +++ /dev/null @@ -1,481 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8,9} ) - -inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd - -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -SLOT=$(ver_cut 1-2) - -MY_PV=${PV/_/} -S="${WORKDIR}/${PN}-${MY_PV}" - -SRC_URI="https://ftp.postgresql.org/pub/source/v${MY_PV}/postgresql-${MY_PV}.tar.bz2" - -LICENSE="POSTGRESQL GPL-2" -DESCRIPTION="PostgreSQL RDBMS" -HOMEPAGE="https://www.postgresql.org/" - -IUSE="debug doc kerberos kernel_linux ldap libressl nls pam perl - -pg-legacytimestamp python +readline selinux +server systemd ssl - static-libs tcl threads uuid xml zlib" - -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -CDEPEND=" ->=app-eselect/eselect-postgresql-2.0 -acct-group/postgres -acct-user/postgres -sys-apps/less -virtual/libintl -kerberos? ( virtual/krb5 ) -ldap? ( net-nds/openldap ) -pam? ( sys-libs/pam ) -perl? ( >=dev-lang/perl-5.8:= ) -python? ( ${PYTHON_DEPS} ) -readline? ( sys-libs/readline:0= ) -ssl? ( - !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) - libressl? ( dev-libs/libressl:= ) -) -server? ( systemd? ( sys-apps/systemd ) ) -tcl? ( >=dev-lang/tcl-8:0= ) -xml? ( dev-libs/libxml2 dev-libs/libxslt ) -zlib? ( sys-libs/zlib ) -" - -# uuid flags -- depend on sys-apps/util-linux for Linux libcs, or if no -# supported libc in use depend on dev-libs/ossp-uuid. For BSD systems, -# the libc includes UUID functions. -UTIL_LINUX_LIBC=( elibc_{glibc,uclibc,musl} ) -BSD_LIBC=( elibc_{Free,Net,Open}BSD ) - -nest_usedep() { - local front back - while [[ ${#} -gt 1 ]]; do - front+="${1}? ( " - back+=" )" - shift - done - echo "${front}${1}${back}" -} - -IUSE+=" ${UTIL_LINUX_LIBC[@]} ${BSD_LIBC[@]}" -CDEPEND+=" -uuid? ( - ${UTIL_LINUX_LIBC[@]/%/? ( sys-apps/util-linux )} - $(nest_usedep ${UTIL_LINUX_LIBC[@]/#/!} ${BSD_LIBC[@]/#/!} dev-libs/ossp-uuid) -)" - -DEPEND="${CDEPEND} -sys-devel/bison -sys-devel/flex -nls? ( sys-devel/gettext ) -xml? ( virtual/pkgconfig ) -" - -RDEPEND="${CDEPEND} -selinux? ( sec-policy/selinux-postgresql ) -" - -pkg_setup() { - use server && CONFIG_CHECK="~SYSVIPC" linux-info_pkg_setup - - use python && python-single-r1_pkg_setup -} - -src_prepare() { - # Work around PPC{,64} compilation bug where bool is already defined - sed '/#ifndef __cplusplus/a #undef bool' -i src/include/c.h || die - - # Set proper run directory - sed "s|\(PGSOCKET_DIR\s\+\)\"/tmp\"|\1\"${EPREFIX}/run/postgresql\"|" \ - -i src/include/pg_config_manual.h || die - - # Rely on $PATH being in the proper order so that the correct - # install program is used for modules utilizing PGXS in both - # hardened and non-hardened environments. (Bug #528786) - sed 's/@install_bin@/install -c/' -i src/Makefile.global.in || die - - use server || eapply "${FILESDIR}/${PN}-${SLOT}.3-no-server.patch" - - if use pam ; then - sed -e "s/\(#define PGSQL_PAM_SERVICE \"postgresql\)/\1-${SLOT}/" \ - -i src/backend/libpq/auth.c || \ - die 'PGSQL_PAM_SERVICE rename failed.' - fi - - eapply_user -} - -src_configure() { - case ${CHOST} in - *-darwin*|*-solaris*) - use nls && append-libs intl - ;; - esac - - export LDFLAGS_SL="${LDFLAGS}" - export LDFLAGS_EX="${LDFLAGS}" - - local PO="${EPREFIX}" - - local i uuid_config="" - if use uuid; then - for i in ${UTIL_LINUX_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=e2fs" - done - for i in ${BSD_LIBC[@]}; do - use ${i} && uuid_config="--with-uuid=bsd" - done - [[ -z $uuid_config ]] && uuid_config="--with-uuid=ossp" - fi - - econf \ - --prefix="${PO}/usr/$(get_libdir)/postgresql-${SLOT}" \ - --datadir="${PO}/usr/share/postgresql-${SLOT}" \ - --includedir="${PO}/usr/include/postgresql-${SLOT}" \ - --mandir="${PO}/usr/share/postgresql-${SLOT}/man" \ - --sysconfdir="${PO}/etc/postgresql-${SLOT}" \ - --with-system-tzdata="${PO}/usr/share/zoneinfo" \ - $(use_enable !alpha spinlocks) \ - $(use_enable !pg-legacytimestamp integer-datetimes) \ - $(use_enable debug) \ - $(use_enable threads thread-safety) \ - $(use_with kerberos gssapi) \ - $(use_with ldap) \ - $(use_with pam) \ - $(use_with perl) \ - $(use_with python) \ - $(use_with readline) \ - $(use_with ssl openssl) \ - $(usex server "$(use_with systemd)" '--without-systemd') \ - $(use_with tcl) \ - ${uuid_config} \ - $(use_with xml libxml) \ - $(use_with xml libxslt) \ - $(use_with zlib) \ - $(use_enable nls) -} - -src_compile() { - emake - emake -C contrib -} - -src_install() { - emake DESTDIR="${D}" install - emake DESTDIR="${D}" install -C contrib - - dodoc README HISTORY doc/{TODO,bug.template} - - # man pages are already built, but if we have the target make them, - # they'll be generated from source before being installed so we - # manually install man pages. - # We use ${SLOT} instead of doman for postgresql.eselect - insinto /usr/share/postgresql-${SLOT}/man/ - doins -r doc/src/sgml/man{1,3,7} - if ! use server; then - # Remove man pages for non-existent binaries - for m in {initdb,pg_{controldata,ctl,resetxlog},post{gres,master}}; do - rm "${ED}/usr/share/postgresql-${SLOT}/man/man1/${m}.1" - done - fi - docompress /usr/share/postgresql-${SLOT}/man/man{1,3,7} - - # Create slot specific man pages - local bn f mansec slotted_name - for mansec in 1 3 7 ; do - local rel_manpath="../../postgresql-${SLOT}/man/man${mansec}" - - mkdir -p "${ED}"/usr/share/man/man${mansec} || die "making man dir" - pushd "${ED}"/usr/share/man/man${mansec} > /dev/null || die "pushd failed" - - for f in "${ED}/usr/share/postgresql-${SLOT}/man/man${mansec}"/* ; do - bn=$(basename "${f}") - slotted_name=${bn%.${mansec}}${SLOT/.}.${mansec} - case ${bn} in - TABLE.7|WITH.7) - echo ".so ${rel_manpath}/SELECT.7" > ${slotted_name} - ;; - *) - echo ".so ${rel_manpath}/${bn}" > ${slotted_name} - ;; - esac - done - - popd > /dev/null - done - - insinto /etc/postgresql-${SLOT} - newins src/bin/psql/psqlrc.sample psqlrc - - # Don't delete libpg{port,common}.a (Bug #571046). They're always - # needed by extensions utilizing PGXS. - use static-libs || \ - find "${ED}" -name '*.a' ! -name libpgport.a ! -name libpgcommon.a \ - -delete - - local f bn - for f in $(find "${ED}/usr/$(get_libdir)/postgresql-${SLOT}/bin" \ - -mindepth 1 -maxdepth 1) - do - bn=$(basename "${f}") - # Temporarily tack on tmp to workaround a file collision - # issue. This is only necessary for 9.7 and earlier. 10 never - # had this issue. - dosym "../$(get_libdir)/postgresql-${SLOT}/bin/${bn}" \ - "/usr/bin/${bn}${SLOT/.}tmp" - done - - if use doc ; then - docinto html - dodoc doc/src/sgml/html/* - - docinto sgml - dodoc doc/src/sgml/*.{sgml,dsl} - fi - - if use server; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.confd-9.3" | newconfd - ${PN}-${SLOT} - - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.init-9.3-r1" | newinitd - ${PN}-${SLOT} - - if use systemd; then - sed -e "s|@SLOT@|${SLOT}|g" -e "s|@LIBDIR@|$(get_libdir)|g" \ - "${FILESDIR}/${PN}.service-9.6-r1" | \ - systemd_newunit - ${PN}-${SLOT}.service - systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfiles ${PN}-${SLOT}.conf - fi - - newbin "${FILESDIR}"/${PN}-check-db-dir ${PN}-${SLOT}-check-db-dir - - use pam && pamd_mimic system-auth ${PN}-${SLOT} auth account session - - if use prefix ; then - keepdir /run/postgresql - fperms 1775 /run/postgresql - fi - fi -} - -pkg_preinst() { - # Find all of the slot-specific symlinks, if any, in /usr/bin (e.g., - # /usr/bin/psql96). They may have been created by the - # postgresql.eselect module, but they're handled within this ebuild - # now. It's alright if we momentarily delete /usr/bin/psql as it - # will be recreated by the eselect module in pkg_ppostinst(). This - # is only necessary for 9.7 and earlier. 10 and later were never - # handled in this manner. - local canonicalise - if type -p realpath > /dev/null; then - canonicalise=realpath - elif type -p readlink > /dev/null; then - canonicalise='readlink -f' - else - # can't die, subshell - die "No readlink nor realpath found, cannot canonicalise" - fi - - local l - # First remove any symlinks in /usr/bin that may have been created - # by the old eselect - for l in $(find "${ROOT}/usr/bin" -mindepth 1 -maxdepth 1 -type l) ; do - if [[ $(${canonicalise} "${l}") == *postgresql-${SLOT}* ]] ; then - rm "${l}" || ewarn "Couldn't remove ${l}" - fi - done - - # Then move the symlinks created by the ebuild to their proper place. - for l in "${ED}"/usr/bin/*tmp ; do - mv "${l}" "${l%tmp}" \ - || ewarn "Couldn't rename $(basename ${l}) to $(basename ${l%tmp})" - done -} - -pkg_postinst() { - use server && use systemd && systemd_tmpfiles_create ${PN}-${SLOT}.conf - postgresql-config update - - elog "If you need a global psqlrc-file, you can place it in:" - elog " ${EROOT}/etc/postgresql-${SLOT}/" - - if use server ; then - elog - elog "Gentoo specific documentation:" - elog "https://wiki.gentoo.org/wiki/PostgreSQL" - elog - elog "Official documentation:" - elog "https://www.postgresql.org/docs/${SLOT}/static/index.html" - elog - elog "The default location of the Unix-domain socket is:" - elog " ${EROOT}/run/postgresql/" - elog - elog "Before initializing the database, you may want to edit PG_INITDB_OPTS" - elog "so that it contains your preferred locale in:" - elog " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - elog - elog "Then, execute the following command to setup the initial database" - elog "environment:" - elog " emerge --config =${CATEGORY}/${PF}" - fi -} - -pkg_prerm() { - if use server && [[ -z ${REPLACED_BY_VERSION} ]] ; then - ewarn "Have you dumped and/or migrated the ${SLOT} database cluster?" - ewarn "\thttps://wiki.gentoo.org/wiki/PostgreSQL/QuickStart#Migrating_PostgreSQL" - - ebegin "Resuming removal in 10 seconds (Control-C to cancel)" - sleep 10 - eend 0 - fi -} - -pkg_postrm() { - postgresql-config update -} - -pkg_config() { - use server || die "USE flag 'server' not enabled. Nothing to configure." - - [[ -f "${EROOT}/etc/conf.d/postgresql-${SLOT}" ]] \ - && source "${EROOT}/etc/conf.d/postgresql-${SLOT}" - [[ -z "${PGDATA}" ]] && PGDATA="${EROOT}/etc/postgresql-${SLOT}/" - [[ -z "${DATA_DIR}" ]] \ - && DATA_DIR="${EROOT}/var/lib/postgresql/${SLOT}/data" - - # environment.bz2 may not contain the same locale as the current system - # locale. Unset and source from the current system locale. - if [ -f "${EROOT}/etc/env.d/02locale" ]; then - unset LANG - unset LC_CTYPE - unset LC_NUMERIC - unset LC_TIME - unset LC_COLLATE - unset LC_MONETARY - unset LC_MESSAGES - unset LC_ALL - source "${EROOT}/etc/env.d/02locale" - [ -n "${LANG}" ] && export LANG - [ -n "${LC_CTYPE}" ] && export LC_CTYPE - [ -n "${LC_NUMERIC}" ] && export LC_NUMERIC - [ -n "${LC_TIME}" ] && export LC_TIME - [ -n "${LC_COLLATE}" ] && export LC_COLLATE - [ -n "${LC_MONETARY}" ] && export LC_MONETARY - [ -n "${LC_MESSAGES}" ] && export LC_MESSAGES - [ -n "${LC_ALL}" ] && export LC_ALL - fi - - einfo "You can modify the paths and options passed to initdb by editing:" - einfo " ${EROOT}/etc/conf.d/postgresql-${SLOT}" - einfo - einfo "Information on options that can be passed to initdb are found at:" - einfo " https://www.postgresql.org/docs/${SLOT}/static/creating-cluster.html" - einfo " https://www.postgresql.org/docs/${SLOT}/static/app-initdb.html" - einfo - einfo "PG_INITDB_OPTS is currently set to:" - if [[ -z "${PG_INITDB_OPTS}" ]] ; then - einfo " (none)" - else - einfo " ${PG_INITDB_OPTS}" - fi - einfo - einfo "Configuration files will be installed to:" - einfo " ${PGDATA}" - einfo - einfo "The database cluster will be created in:" - einfo " ${DATA_DIR}" - einfo - - ebegin "Continuing initialization in 5 seconds (Control-C to cancel)" - sleep 5 - eend 0 - - if [ -n "$(ls -A ${DATA_DIR} 2> /dev/null)" ] ; then - eerror "The given directory, '${DATA_DIR}', is not empty." - eerror "Modify DATA_DIR to point to an empty directory." - die "${DATA_DIR} is not empty." - fi - - einfo "Creating the data directory ..." - if [[ ${EUID} == 0 ]] ; then - mkdir -p "${DATA_DIR}" - chown -Rf postgres:postgres "${DATA_DIR}" - chmod 0700 "${DATA_DIR}" - fi - - einfo "Initializing the database ..." - - if [[ ${EUID} == 0 ]] ; then - su postgres -c "${EROOT}/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -D \"${DATA_DIR}\" ${PG_INITDB_OPTS}" - else - "${EROOT}"/usr/$(get_libdir)/postgresql-${SLOT}/bin/initdb -U postgres -D "${DATA_DIR}" ${PG_INITDB_OPTS} - fi - - if [[ "${DATA_DIR%/}" != "${PGDATA%/}" ]] ; then - mv "${DATA_DIR%/}"/{pg_{hba,ident},postgresql}.conf "${PGDATA}" - ln -s "${PGDATA%/}"/{pg_{hba,ident},postgresql}.conf "${DATA_DIR%/}" - fi - - # unix_socket_directory has no effect in postgresql.conf as it's - # overridden in the initscript - sed '/^#unix_socket_directories/,+1d' -i "${PGDATA%/}"/postgresql.conf - - cat <<- EOF >> "${PGDATA%/}"/postgresql.conf - # This is here because of https://bugs.gentoo.org/show_bug.cgi?id=518522 - # On the off-chance that you might need to work with UTF-8 encoded - # characters in PL/Perl - plperl.on_init = 'use utf8; use re; package utf8; require "utf8_heavy.pl";' - EOF - - einfo "The autovacuum function, which was in contrib, has been moved to the main" - einfo "PostgreSQL functions starting with 8.1, and starting with 8.4 is now enabled" - einfo "by default. You can disable it in the cluster's:" - einfo " ${PGDATA%/}/postgresql.conf" - einfo - if ! use systemd; then - einfo "The PostgreSQL server, by default, will log events to:" - einfo " ${DATA_DIR%/}/postmaster.log" - einfo - fi - if use prefix ; then - einfo "The location of the configuration files have moved to:" - einfo " ${PGDATA}" - einfo "To start the server:" - einfo " pg_ctl start -D ${DATA_DIR} -o '-D ${PGDATA} --data-directory=${DATA_DIR}'" - einfo "To stop:" - einfo " pg_ctl stop -D ${DATA_DIR}" - einfo - einfo "Or move the configuration files back:" - einfo "mv ${PGDATA}*.conf ${DATA_DIR}" - elif use systemd; then - einfo "You should use the 'postgresql-${SLOT}.service' unit to run PostgreSQL" - einfo "instead of 'pg_ctl'." - else - einfo "You should use the '${EROOT}/etc/init.d/postgresql-${SLOT}' script to run PostgreSQL" - einfo "instead of 'pg_ctl'." - fi -} - -src_test() { - if use server && [[ ${UID} -ne 0 ]] ; then - emake check - - einfo "If you think other tests besides the regression tests are necessary, please" - einfo "submit a bug including a patch for this ebuild to enable them." - else - use server || \ - ewarn 'Tests cannot be run without the "server" use flag enabled.' - [[ ${UID} -eq 0 ]] || \ - ewarn 'Tests cannot be run as root. Enable "userpriv" in FEATURES.' - - ewarn 'Skipping.' - fi -} diff --git a/dev-db/pspg/Manifest b/dev-db/pspg/Manifest index 7a831a5f1091..a12a114f52eb 100644 --- a/dev-db/pspg/Manifest +++ b/dev-db/pspg/Manifest @@ -1,6 +1,2 @@ -DIST pspg-1.6.5.tar.gz 1005525 BLAKE2B 2befb8a7081e1fcf5df60eca48f34b819d9de3d07920613b7f759887b4ddcccbc52e46ea8f407666a50a53bbfda582a10b1b2ca65d0c4452bc46db8cd971a802 SHA512 755e40dd6c68a01ad235e6fc2751af76c8ed63c2832bfa26356fa80e62bd59a076413cf7fc075685f9267bc7339fadf4975a695d681fc7821b7da0589805c1f0 -DIST pspg-1.6.8.tar.gz 1017316 BLAKE2B 0150b4577365000b2fdd9de93307acbb5133915917c92affd1a598b3f16769ff0afa6e0b9c0d4639b771dcd62f1f7364a028a3b9d96cc6c40e3ac41c550a8d48 SHA512 337ae1eb9e92dc97ca32127322aaa3d0c5edb8766e5cab16e778148b3256119c7c5b1b2e4b6ab0b520113ede07c464d1c1c5e460c8efb7714f5a29acfa845e9d -DIST pspg-2.5.4.tar.gz 1346559 BLAKE2B 01c0a35a6372ccb7ad007595d01eb0c8380428722418a4f4b6040a549757d2eab601371ded51a762d81677adc259abf5f8af4311fca6427fb24244e0c33035d2 SHA512 2a9c677bbff4eb032403b90f44dbe9f62a46775c1cf180e90fc3df2853973c4b584b674fa11e2b3be844402f5c00777388ff05782fdecee3b27d92280fc288ff -DIST pspg-2.5.5.tar.gz 1346896 BLAKE2B 7b5b64affcc6ec52ae9712fab06089db3a8ae208d94190fa6695d2285d29a13ac2c5ca3854a1a13ec6907eed04dd6bb188b31cc6440963a069a2715ecf109eba SHA512 74e8c8c5a156d9115a2bc6c9957d302b5e48182181c9560100c09dea765f9a382d78b5fe74ca11fdccd40bdd2f8a165218edf89ffd7713e479f0443a49766c4d -DIST pspg-2.6.6.tar.gz 1355951 BLAKE2B 134f6af029f070bac66e9f514fee985b7ce77f788b44280cc4df969801d2776a60aa9dd679ae848c4fe68ce58d593c10fd1e2305734d0f76e08f1d2e51ad17bd SHA512 963a4bb3e93880c5dd8538b2ba777977585b2e9766a29001f1e5dd8d4692ccc333cf8bdcf0d7ae3f0cf02568e5645d4534cc58dc540d22df5debc5b4e034114c DIST pspg-3.1.2.tar.gz 1368987 BLAKE2B 7eff4134ee97db4df4dfada08ede5e88ea0c37a681c95ba9529f30be98f05cb3a7805e5dcb165b34f5afc2d4d7ca6de0e705334967ade0fdb813636c73df658d SHA512 1446200bdfe88787083da32629acaedab6eaee68b3dccbff3f52c82165029cb0f558790951d5103876c84562fcd6b5578042bca134f4ed37b9c5de96fdc5602f +DIST pspg-3.1.5.tar.gz 1380515 BLAKE2B b9539347d1977a178468127df5f92f8b7be835b7e6edc49720131173b71b22e01b614bcde55e354d32a2ecf1665dcebd27502110786b7595411b5ec782391f01 SHA512 287d4794aebc867bf3c344c3747f1d058c1b93710dd0d86de66ae1e0d97961f4e3d511bc0f7df98c309bffc962aaf50b758faab1f8c6f0eb3374450e53ecdccb diff --git a/dev-db/pspg/pspg-1.6.5.ebuild b/dev-db/pspg/pspg-1.6.5.ebuild deleted file mode 100644 index 15ddb24f19d5..000000000000 --- a/dev-db/pspg/pspg-1.6.5.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A better pager for psql and mysql" -HOMEPAGE="https://github.com/okbob/pspg" -SRC_URI="https://github.com/okbob/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 x86" - -DEPEND="sys-libs/ncurses:*" -RDEPEND="${DEPEND}" diff --git a/dev-db/pspg/pspg-1.6.8.ebuild b/dev-db/pspg/pspg-1.6.8.ebuild deleted file mode 100644 index fd99e424e3bc..000000000000 --- a/dev-db/pspg/pspg-1.6.8.ebuild +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A better pager for psql and mysql" -HOMEPAGE="https://github.com/okbob/pspg" -SRC_URI="https://github.com/okbob/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="sys-libs/ncurses:*" -RDEPEND="${DEPEND}" diff --git a/dev-db/pspg/pspg-2.5.5.ebuild b/dev-db/pspg/pspg-2.5.5.ebuild deleted file mode 100644 index e802ac47a294..000000000000 --- a/dev-db/pspg/pspg-2.5.5.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A better pager for psql and mysql" -HOMEPAGE="https://github.com/okbob/pspg" -SRC_URI="https://github.com/okbob/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="sys-libs/ncurses:* -dev-db/postgresql:= -sys-libs/readline:*" -RDEPEND="${DEPEND}" diff --git a/dev-db/pspg/pspg-2.6.6.ebuild b/dev-db/pspg/pspg-2.6.6.ebuild deleted file mode 100644 index c9506ef83e56..000000000000 --- a/dev-db/pspg/pspg-2.6.6.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A better pager for psql and mysql" -HOMEPAGE="https://github.com/okbob/pspg" -SRC_URI="https://github.com/okbob/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 x86" - -DEPEND="sys-libs/ncurses:* -dev-db/postgresql:= -sys-libs/readline:*" -RDEPEND="${DEPEND}" diff --git a/dev-db/pspg/pspg-2.5.4.ebuild b/dev-db/pspg/pspg-3.1.5.ebuild similarity index 91% rename from dev-db/pspg/pspg-2.5.4.ebuild rename to dev-db/pspg/pspg-3.1.5.ebuild index e802ac47a294..4ea4a57c2c3c 100644 --- a/dev-db/pspg/pspg-2.5.4.ebuild +++ b/dev-db/pspg/pspg-3.1.5.ebuild @@ -13,5 +13,7 @@ KEYWORDS="~amd64 ~x86" DEPEND="sys-libs/ncurses:* dev-db/postgresql:= -sys-libs/readline:*" +sys-libs/readline:=" RDEPEND="${DEPEND}" + +RESTRICT="test" diff --git a/dev-db/tora/tora-3.2-r1.ebuild b/dev-db/tora/tora-3.2-r1.ebuild index 57c06026bfa5..b13394c1db8c 100644 --- a/dev-db/tora/tora-3.2-r1.ebuild +++ b/dev-db/tora/tora-3.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -34,7 +34,7 @@ RDEPEND=" postgres? ( dev-db/postgresql:* ) " DEPEND="${RDEPEND} - dev-qt/linguist:5 + dev-qt/linguist-tools:5 virtual/pkgconfig doc? ( app-doc/doxygen ) " diff --git a/dev-db/tora/tora-9999.ebuild b/dev-db/tora/tora-9999.ebuild index 1733252f6d51..14472612ed8f 100644 --- a/dev-db/tora/tora-9999.ebuild +++ b/dev-db/tora/tora-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -34,7 +34,7 @@ RDEPEND=" postgres? ( dev-db/postgresql:* ) " DEPEND="${RDEPEND} - dev-qt/linguist:5 + dev-qt/linguist-tools:5 virtual/pkgconfig doc? ( app-doc/doxygen ) " diff --git a/dev-dotnet/Manifest.gz b/dev-dotnet/Manifest.gz index 4d0c39392e1b..1405dfef21bf 100644 Binary files a/dev-dotnet/Manifest.gz and b/dev-dotnet/Manifest.gz differ diff --git a/dev-dotnet/gio-sharp/Manifest b/dev-dotnet/gio-sharp/Manifest deleted file mode 100644 index a594331bff02..000000000000 --- a/dev-dotnet/gio-sharp/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST gio-sharp-0.3.tar.gz 89752 BLAKE2B 8c2ff7ec2fa1491d3fa4a3b8c8abe39dffe18f7f59a8866575cab298e84a5f5404467d02480e617d22214eb48bca0f70b7fb60b1a87aa91c36f970444edbcd8a SHA512 69a3e5db422403fa756a25818a7db5adcf6c1bef81b1f10ce5dc4bdb63ea1462c3a9ea4a4f987b0e30dc444499258c1aac279005d045c8709187bae7f095a66a diff --git a/dev-dotnet/gio-sharp/gio-sharp-0.3-r1.ebuild b/dev-dotnet/gio-sharp/gio-sharp-0.3-r1.ebuild deleted file mode 100644 index 08a813517c32..000000000000 --- a/dev-dotnet/gio-sharp/gio-sharp-0.3-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit autotools mono-env - -DESCRIPTION="GIO API C# binding" -HOMEPAGE="https://github.com/mono/gio-sharp" -SRC_URI="https://github.com/mono/${PN}/tarball/${PV} -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=">=dev-dotnet/gtk-sharp-2.12.21 - >=dev-libs/glib-2.22:2" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_setup() { - DOCS="AUTHORS NEWS README" - mono-env_pkg_setup -} - -src_unpack() { - unpack ${A} - mv *-${PN}-* "${S}" -} - -src_prepare() { - sed -i -e 's/gmcs/mcs/' configure.ac.in || die - sed -i -e '/autoreconf/d' autogen-generic.sh || die - NOCONFIGURE=1 ./autogen-2.22.sh || die - - eautoreconf -} - -src_compile() { - emake -j1 -} diff --git a/dev-dotnet/gio-sharp/metadata.xml b/dev-dotnet/gio-sharp/metadata.xml deleted file mode 100644 index 89d6dbfb280e..000000000000 --- a/dev-dotnet/gio-sharp/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - dotnet@gentoo.org - Gentoo Dotnet Project - - - mono/gio-sharp - - diff --git a/dev-dotnet/ikvm-bin/Manifest b/dev-dotnet/ikvm-bin/Manifest deleted file mode 100644 index ae8358f3dd91..000000000000 --- a/dev-dotnet/ikvm-bin/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ikvmbin-7.1.4532.2.zip 16391340 BLAKE2B c318f2e09d11efacb2e3591df998912a8ce1159ccadc22f1457bf13077367908fb7104b9d49cc0b42516e59e01a07e8ad033720034b2b5fac197d6e9c675f896 SHA512 a447473741541e13b6723feef7f474a01670d885ffbfd68269b121cfb39658ca0189f30e055b811f7c72e320b7a28e115b2b858679c43b55b86f00a1429ecdae diff --git a/dev-dotnet/ikvm-bin/files/ikvm-0.36.0.5.pc.in b/dev-dotnet/ikvm-bin/files/ikvm-0.36.0.5.pc.in deleted file mode 100644 index aaf131f3531f..000000000000 --- a/dev-dotnet/ikvm-bin/files/ikvm-0.36.0.5.pc.in +++ /dev/null @@ -1,9 +0,0 @@ -prefix=/usr -exec_prefix=${prefix} -libdir=${prefix}/@LIBDIR@ - - -Name: IKVM.NET -Description: An implementation of Java for Mono and the Microsoft .NET Framework. -Version: @VERSION@ -Libs: -r:${libdir}/ikvm/IKVM.Runtime.dll -r:${libdir}/ikvm/IKVM.OpenJDK.ClassLibrary.dll -r:${libdir}/ikvm/IKVM.AWT.WinForms.dll diff --git a/dev-dotnet/ikvm-bin/ikvm-bin-7.1.4532.2.ebuild b/dev-dotnet/ikvm-bin/ikvm-bin-7.1.4532.2.ebuild deleted file mode 100644 index c902020f633c..000000000000 --- a/dev-dotnet/ikvm-bin/ikvm-bin-7.1.4532.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit eutils mono multilib - -MY_P=${P/-bin/} -MY_PN=${PN/-bin/} - -DESCRIPTION="Java VM for .NET" -HOMEPAGE="http://www.ikvm.net/ http://weblog.ikvm.net/" -SRC_URI="http://www.frijters.net/${MY_PN}bin-${PV}.zip" -LICENSE="ZLIB GPL-2-with-linking-exception" - -SLOT="0" -S=${WORKDIR}/${MY_P} - -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=">=dev-lang/mono-1.1 - !dev-dotnet/ikvm - app-arch/unzip" -RDEPEND="${DEPEND}" - -src_install() { - insinto /usr/$(get_libdir)/${MY_PN} - doins bin/* - - for exe in ikvm ikvmc ikvmstub; - do - make_wrapper ${exe} "mono /usr/$(get_libdir)/${MY_PN}/${exe}.exe" || die - done - - dodir /usr/$(get_libdir)/pkgconfig - sed -e "s:@VERSION@:${PV}:" \ - -e "s:@LIBDIR@:$(get_libdir):" \ - "${FILESDIR}"/ikvm-0.36.0.5.pc.in > "${D}"/usr/$(get_libdir)/pkgconfig/${MY_PN}.pc \ - || die "sed failed" - - for dll in bin/IKVM*.dll - do - dllbase=${dll##*/} - ebegin "Installing and registering ${dllbase}" - gacutil -i bin/${dllbase} -root "${D}"/usr/$(get_libdir) \ - -gacdir /usr/$(get_libdir) -package IKVM &>/dev/null - eend $? || die "Failed installing ${dllbase}" - done -} diff --git a/dev-dotnet/ikvm-bin/metadata.xml b/dev-dotnet/ikvm-bin/metadata.xml deleted file mode 100644 index 1e9986c4a0cb..000000000000 --- a/dev-dotnet/ikvm-bin/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - dotnet@gentoo.org - Gentoo Dotnet Project - - diff --git a/dev-dotnet/log4net/Manifest b/dev-dotnet/log4net/Manifest deleted file mode 100644 index d6e4677e7f20..000000000000 --- a/dev-dotnet/log4net/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST log4net-1.2.11-src.zip 1208854 BLAKE2B 82906395d9ed5aedacc8e86ce862aef55a91e98aaedf9c4558f9a4aa749ff59b689a2e0658ddc8287b919b8e2d8a1a544f477b85016dab4e48da899fce143f24 SHA512 b6ad8c873de69a30c68c82265dd2a5de331ecb780896f750088fe1e91f17191c2b54850629ece26659ec4c72b695cccae48eae30dbdf4dd18d5545cc24a42865 -DIST log4net.snk 596 BLAKE2B d83b91d9601d89bd4120d9543b893701b62193e93c1947051f8283eae9b2d7759fa372d349a95de55255dcee83039c983124a90f77d1830ae82e31141f3dca74 SHA512 b0525adfe90b8d86c7e7ac8295097b60b03b427aa4e6ad36b32bb98c7bc9fc081158249285c42eeff7637bd66a742ca422906a85544ca6526fe5e785cead8ff7 diff --git a/dev-dotnet/log4net/files/log4net.pc.in-r1 b/dev-dotnet/log4net/files/log4net.pc.in-r1 deleted file mode 100644 index 262850fc1e4d..000000000000 --- a/dev-dotnet/log4net/files/log4net.pc.in-r1 +++ /dev/null @@ -1,8 +0,0 @@ -prefix=/usr -exec_prefix=${prefix} -libdir=${exec_prefix}/@LIBDIR@ - -Name: Log4net -Description: Log4net - Logging library for C# and VB.NET -Version: @VERSION@ -Libs: -r:${libdir}/mono/log4net/log4net.dll diff --git a/dev-dotnet/log4net/log4net-1.2.11.ebuild b/dev-dotnet/log4net/log4net-1.2.11.ebuild deleted file mode 100644 index 1f1d7f15db39..000000000000 --- a/dev-dotnet/log4net/log4net-1.2.11.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit eutils mono multilib versionator - -PV_MAJOR=$(get_version_component_range 1-2) - -DESCRIPTION="tool to help the programmer output log statements to a variety of output targets" -HOMEPAGE="http://logging.apache.org/log4net/" -SRC_URI="mirror://apache/logging/log4net/source/${P}-src.zip - https://dev.gentoo.org/~pacho/dotnet/log4net.snk" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND=">=dev-lang/mono-2.0" -DEPEND="${RDEPEND}" - -src_compile() { - /usr/bin/mcs \ - -t:library \ - -out:log4net.dll \ - -keyfile:"${DISTDIR}"/log4net.snk \ - -r:System.Data \ - -r:System.Web \ - $(find src -name "*.cs") || die -} - -src_install() { - egacinstall log4net.dll - dodir /usr/$(get_libdir)/pkgconfig - sed -e "s:@VERSION@:${PV}:" \ - -e "s:@LIBDIR@:$(get_libdir):" \ - -e "s:@NET_VERSION@:2.0:" \ - "${FILESDIR}"/${PN}.pc.in-r1 > "${D}"/usr/$(get_libdir)/pkgconfig/${PN}-${PV}.pc - dosym ${PN}-${PV}.pc /usr/$(get_libdir)/pkgconfig/${PN}-${PV_MAJOR}.pc - dosym ${PN}-${PV}.pc /usr/$(get_libdir)/pkgconfig/${PN}.pc - - dodoc README.txt STATUS.txt -} diff --git a/dev-dotnet/log4net/metadata.xml b/dev-dotnet/log4net/metadata.xml deleted file mode 100644 index c99669dda129..000000000000 --- a/dev-dotnet/log4net/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - dotnet@gentoo.org - Gentoo Dotnet Project - - diff --git a/dev-games/Manifest.gz b/dev-games/Manifest.gz index a62409410c12..559066b085f9 100644 Binary files a/dev-games/Manifest.gz and b/dev-games/Manifest.gz differ diff --git a/dev-games/t4k-common/files/t4k-common-0.1.1-ICONV_CONST.patch b/dev-games/t4k-common/files/t4k-common-0.1.1-ICONV_CONST.patch new file mode 100644 index 000000000000..037d2acd292b --- /dev/null +++ b/dev-games/t4k-common/files/t4k-common-0.1.1-ICONV_CONST.patch @@ -0,0 +1,10 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -39,6 +39,7 @@ + AC_PROG_MKDIR_P + AC_PROG_YACC + AC_PROG_LIBTOOL ++AM_ICONV + + + # ----------------------------------------------------------------------- diff --git a/dev-games/t4k-common/files/t4k-common-0.1.1-fno-common.patch b/dev-games/t4k-common/files/t4k-common-0.1.1-fno-common.patch new file mode 100644 index 000000000000..2bdf418649c2 --- /dev/null +++ b/dev-games/t4k-common/files/t4k-common-0.1.1-fno-common.patch @@ -0,0 +1,11 @@ +--- a/src/t4k_common.h ++++ b/src/t4k_common.h +@@ -239,7 +239,7 @@ + #define MAX_LINES 128 //!< Maximum lines to wrap. + #define MAX_LINEWIDTH 256 //!< Maximum characters of each line. + +-char wrapped_lines[MAX_LINES][MAX_LINEWIDTH]; //!< Global buffer for wrapped lines. ++extern char wrapped_lines[MAX_LINES][MAX_LINEWIDTH]; //!< Global buffer for wrapped lines. + + //TODO separate headers for different areas a la SDL? + diff --git a/dev-games/t4k-common/files/t4k-common-0.1.1-libpng.patch b/dev-games/t4k-common/files/t4k-common-0.1.1-libpng.patch index 29991544ddbf..fad91de2d205 100644 --- a/dev-games/t4k-common/files/t4k-common-0.1.1-libpng.patch +++ b/dev-games/t4k-common/files/t4k-common-0.1.1-libpng.patch @@ -1,5 +1,5 @@ ---- src/t4k_common-0.1.1/src/t4k_loaders.c 2011-04-08 05:46:07.000000000 +0300 -+++ src.new/t4k_common-0.1.1/src/t4k_loaders.c 2012-05-02 10:35:41.836670434 +0300 +--- a/src/t4k_loaders.c ++++ b/src/t4k_loaders.c @@ -1028,12 +1028,9 @@ { png_init_io(png_ptr, fi); diff --git a/dev-games/t4k-common/t4k-common-0.1.1.ebuild b/dev-games/t4k-common/t4k-common-0.1.1.ebuild index 3c366660d4d6..e0a6d5009ab5 100644 --- a/dev-games/t4k-common/t4k-common-0.1.1.ebuild +++ b/dev-games/t4k-common/t4k-common-0.1.1.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils ltprune +EAPI=7 + +inherit autotools DESCRIPTION="A library of code shared between tuxmath and tuxtype" HOMEPAGE="https://github.com/tux4kids/t4kcommon" @@ -11,9 +12,10 @@ SRC_URI="https://github.com/tux4kids/t4kcommon/archive/upstream/${PV}.tar.gz -> LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64 x86" -IUSE="static-libs svg" +IUSE="svg" -RDEPEND="dev-libs/libxml2:2 +RDEPEND=" + dev-libs/libxml2:2 media-libs/libsdl media-libs/sdl-image media-libs/sdl-mixer @@ -25,22 +27,33 @@ RDEPEND="dev-libs/libxml2:2 media-libs/libpng:0 x11-libs/cairo )" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +# need sys-devel/gettext for AM_ICONV in iconv.m4 +BDEPEND=" + sys-devel/gettext virtual/pkgconfig" -S=${WORKDIR}/t4kcommon-upstream-${PV} +S="${WORKDIR}/t4kcommon-upstream-${PV}" + +PATCHES=( + "${FILESDIR}"/${P}-libpng.patch + "${FILESDIR}"/${P}-fno-common.patch + "${FILESDIR}"/${P}-ICONV_CONST.patch +) src_prepare() { - epatch "${FILESDIR}"/${P}-libpng.patch + default + rm m4/iconv.m4 || die + eautoreconf } src_configure() { econf \ - $(usex svg "" "--without-rsvg") \ - $(use_enable static-libs static) + --disable-static \ + $(usex svg "" --without-rsvg) } src_install() { default - use static-libs || prune_libtool_files --all + find "${ED}" -name '*.la' -delete || die } diff --git a/dev-java/Manifest.gz b/dev-java/Manifest.gz index 0e3457c25971..f97a74b1d61e 100644 Binary files a/dev-java/Manifest.gz and b/dev-java/Manifest.gz differ diff --git a/dev-java/protobuf-java/Manifest b/dev-java/protobuf-java/Manifest index 579b5e38b3fd..517abfc7f262 100644 --- a/dev-java/protobuf-java/Manifest +++ b/dev-java/protobuf-java/Manifest @@ -2,3 +2,4 @@ DIST protobuf-3.11.4.tar.gz 5140799 BLAKE2B 97b450c0623593efe6a42b66582ff183344b DIST protobuf-3.12.2.tar.gz 5309688 BLAKE2B 6f04ab75a165d8135b4c1de210f8698f56f309f73d664192209de10580e0ef850bf56f6f394b860f21912e341141f7bbb1f63198eaee55fd7ad74d86b00c3b1f SHA512 84a349a1dcb5bce6a6a892cf11264390b557ed1e7b05883b71fa9cfb7460d9f73119da1f2861066869e33c752246ea438d5ce2c2b3ff7a4b07696d9450b7916b DIST protobuf-3.12.4.tar.gz 5310348 BLAKE2B 2630941672963165467221843c10079a0ed966f2fdfcbc970b0b41e1ed3c7f78734496c1fbd3ec509c68999a14f637fff267b309cf82a8acf2bb5a948484f79b SHA512 c5d24502b9a6be0a606a19213186fe462e0de6830547003636f0897781f36d0bd7e4e7d9689d96390a0399ce04b6438cda3a0fe6f97f0feb700a110e90beef0c DIST protobuf-3.13.0.tar.gz 5277913 BLAKE2B 168aaa5beef83be675cd2543ca8efeaf5174f5e7fd861a056b04b01c8c781dc7b1fcbd05068ae89f051dfacfdc47c34b19cc33c8d09dd3212d3827746e3408f2 SHA512 514efa65fc8a36bc0791e6d39bdfb07b2689e9c2a4b82536c657859b800e7bc1e1a0ae86a7ee33f30c43a473a49b5c346ce830ac0057b6da104ed37f90b8b0fd +DIST protobuf-3.14.0.tar.gz 5319779 BLAKE2B cea083eea4d7fec441536effdfe2bf1811913154b0cc0da2f14f4edeb0efb200236da102c36700e24fab73fd9883aa90576ad64603a7f175ebf5cef0dc29aae5 SHA512 9dabba81119cb6196ef5de382a1032c57f6e69038f4dce0156f8671b98e51bb5095915fb6d05bb5a8ad8b17b559e652e1e9a392dd30c7ed8dcf1d986c137be11 diff --git a/dev-java/protobuf-java/protobuf-java-3.13.0.ebuild b/dev-java/protobuf-java/protobuf-java-3.13.0.ebuild index e26dfe9374b2..9f6b38797fef 100644 --- a/dev-java/protobuf-java/protobuf-java-3.13.0.ebuild +++ b/dev-java/protobuf-java/protobuf-java-3.13.0.ebuild @@ -23,7 +23,7 @@ fi LICENSE="BSD" SLOT="0/24" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="" BDEPEND="~dev-libs/protobuf-${PV} diff --git a/dev-java/protobuf-java/protobuf-java-3.14.0.ebuild b/dev-java/protobuf-java/protobuf-java-3.14.0.ebuild new file mode 100644 index 000000000000..3f0a2dec4807 --- /dev/null +++ b/dev-java/protobuf-java/protobuf-java-3.14.0.ebuild @@ -0,0 +1,56 @@ +# Copyright 2008-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-pkg-simple + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/protocolbuffers/protobuf" + EGIT_SUBMODULES=() +fi + +DESCRIPTION="Google's Protocol Buffers - Java bindings" +HOMEPAGE="https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf" +if [[ "${PV}" == "9999" ]]; then + SRC_URI="" +else + SRC_URI="https://github.com/protocolbuffers/protobuf/archive/v${PV}.tar.gz -> protobuf-${PV}.tar.gz" +fi + +LICENSE="BSD" +SLOT="0/25" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="" + +BDEPEND="~dev-libs/protobuf-${PV} + >=virtual/jdk-1.7" +DEPEND=">=virtual/jdk-1.7" +RDEPEND=">=virtual/jre-1.7 + ! /dev/null || die + eapply_user + popd > /dev/null || die + + java-pkg-2_src_prepare +} + +src_compile() { + "${BROOT}/usr/bin/protoc" --java_out=core/src/main/java -I../src ../src/google/protobuf/descriptor.proto || die + JAVA_SRC_DIR="core/src/main/java" JAVA_JAR_FILENAME="protobuf.jar" java-pkg-simple_src_compile +} + +src_install() { + JAVA_SRC_DIR="core/src/main/java" JAVA_JAR_FILENAME="protobuf.jar" java-pkg-simple_src_install +} diff --git a/dev-java/protobuf-java/protobuf-java-9999.ebuild b/dev-java/protobuf-java/protobuf-java-9999.ebuild index 8f4365200b10..afc573227167 100644 --- a/dev-java/protobuf-java/protobuf-java-9999.ebuild +++ b/dev-java/protobuf-java/protobuf-java-9999.ebuild @@ -22,7 +22,7 @@ else fi LICENSE="BSD" -SLOT="0/24" +SLOT="0/25" KEYWORDS="" IUSE="" diff --git a/dev-lang/Manifest.gz b/dev-lang/Manifest.gz index 754641fe9df7..d7a3a61c20a5 100644 Binary files a/dev-lang/Manifest.gz and b/dev-lang/Manifest.gz differ diff --git a/dev-lang/erlang/Manifest b/dev-lang/erlang/Manifest index 5de91a4721df..c298c06cb1ee 100644 --- a/dev-lang/erlang/Manifest +++ b/dev-lang/erlang/Manifest @@ -1,8 +1,8 @@ -DIST erlang-23.0.3.tar.gz 56388263 BLAKE2B 58f41ab2956c93fbabc6b91f89e3c3f3c23a7dc7dc5473f1cf99817043aa18949933d6182e7e7daefa394529d2b2be8efb51462d8e7a8beb23ed70dbe2c0a319 SHA512 f7752bfa06dd283b36e330ba4270ee37ca759be697c804e6ac249becdc67de4bccb43f60a8d47f9a094d778f11fb17cf6d29de8ce60471aeb18c5fbd64cdfb4d DIST erlang-23.0.4.tar.gz 56394805 BLAKE2B 10a4e9e3084ad2d1bb10fa736d86eb03fa6b249f83b9d06bfef4c37f99ad86dd1415c2fbaa1524cddaf57dd228d25f388fa9fe9f5b4a03ba7477080e11020fb1 SHA512 53d4b7a5e76113bb3a9695a266e58dbebb57887b1eea4e8acb56bb85d194295231d739719d526dfc6d1f0bf745d7f059fdf5ec9dc79859f5b16a75c4d0a6b348 DIST erlang-23.1.1.tar.gz 56498218 BLAKE2B cd513a2d45aecc12503df8765e0f4170001373c0e6b35b4c01d7471906408558a3b6bbf9c189858fce3cb8fd7020270813550e2099f04c8094afc49dcd070016 SHA512 572164e601796bc7b0df3818c859b23872f148dcc72f44f611d9d5684b0c9974b00496aa0fd521dc01d0d3481556b6641d3cbd859bd7bfadefd15115728d16d9 DIST erlang-23.1.2.tar.gz 56501379 BLAKE2B ebedf3ebec4b5c4b6818b1f5279536059bdf58eba98bd3328952f2ff4ce3d121443b377a2cd2fc0537135daf8d986428905d6321bd26a626456949e68dd3b5e7 SHA512 c6f097c5cfb3a188b7c5e411a2cbd3f95eab50be18292a5e84d5f628dfb791497800d79810367e9d1ac1c8e6aa5c7622c9bef5e58eef02226a77b5307742360e DIST erlang-23.1.3.tar.gz 56501389 BLAKE2B a9a463d71c286e51abdf5c1404228909b4e20e8477997a0de6a223cec166192aecb23d76ad81e6b37cac8309d94972408d265fa7653d1ba4942bf76bf2f417bf SHA512 ae88070b226df54c22693887352d3e0bd8cc3f77a872731cf52b59c386c0416efdc7f00db2690f4ab566e95d31fc828e4039ae1e9914fe35220d354c12bf086c +DIST erlang-23.1.4.tar.gz 56503340 BLAKE2B f4b26aa5882bb3d2218897706734798a80cbb5113008be70b2a0c793a5cc1eb01eb1ace17ae525e19f176e47ffc85b108240b7fec71cf8eedb4d67860ecaa98b SHA512 864b69fc69f3843dfe839faf1c1e86ec505282ec4d86ed1add445998ba28bcc623522471d8d8636a9cf1e24e84f99d5cae3880a4b1171abab9651ef242a55367 DIST erlang_doc_html_23.0.tar.gz 36238699 BLAKE2B bce5fb1d766d3a795728cf7c00529129690f52e5dbe7363095cb7e63d5331a4dfc05c2042d24f10c7f3facbd187284aa323a92c0ed7515c1750aee4cd890fbd4 SHA512 bd0b1adf8639674d31152024e1351105249c6e6f93f28362e9e4b66ce6daadbe5eef5917a5889c926130e81bd000cfc44895ebaa309bf9a0c1c125713b715927 DIST erlang_doc_html_23.1.tar.gz 36285075 BLAKE2B e2e24ac4cecfc9c10853fd3718e8e332579a91bf25eaaf9e0fc2044d89bcd6d03fd251d6a8ab64a86439f1244e275ef398701b47933a741d4e64016838db48aa SHA512 c8fecb08344c9c7a4c7b911ac4f73e2d8c0c3778d665098c3377e055346a7ecfcc378bca28dff768c36dc7bf7447308f4fb58273875c22f2d6cd896fd6232656 DIST erlang_doc_man_23.0.tar.gz 1383486 BLAKE2B 63a9989c26797fe07fbd0ccca0d8425d94bc60a86fa93b5332c8d1f3e12a0071d9e6d4759be73bf44bf35dd14723b9e6707a84ba834e1775bc28aeec1edbe168 SHA512 81575ce7b267f5bb48bd844808e8edd4e373640bbc481372b288602eb9d3c9917e6c7c040c035b63a2f6edf437c3d826d6afdf5801765b51d9edd4a3b2a5b16f diff --git a/dev-lang/erlang/erlang-23.0.3.ebuild b/dev-lang/erlang/erlang-23.1.4.ebuild similarity index 94% rename from dev-lang/erlang/erlang-23.0.3.ebuild rename to dev-lang/erlang/erlang-23.1.4.ebuild index d5356fa36a45..a809e52a684b 100644 --- a/dev-lang/erlang/erlang-23.0.3.ebuild +++ b/dev-lang/erlang/erlang-23.1.4.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 ~x86-macos ~x64-solaris" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" IUSE="doc emacs +hipe java +kpoll libressl odbc sctp ssl systemd tk wxwidgets" RDEPEND=" @@ -48,8 +48,9 @@ DEPEND="${RDEPEND} S="${WORKDIR}/otp-OTP-${PV}" PATCHES=( - "${FILESDIR}/18.2.1-wx3.0.patch" - "${FILESDIR}/${PN}-22.0-dont-ignore-LDFLAGS.patch" + "${FILESDIR}"/18.2.1-wx3.0.patch + "${FILESDIR}"/${PN}-22.0-dont-ignore-LDFLAGS.patch + "${FILESDIR}"/${PN}-23.1.2-ac2.70.patch ) SITEFILE=50"${PN}"-gentoo.el diff --git a/dev-lang/python/python-3.8.6.ebuild b/dev-lang/python/python-3.8.6.ebuild index c73c195fa999..67bec8f17735 100644 --- a/dev-lang/python/python-3.8.6.ebuild +++ b/dev-lang/python/python-3.8.6.ebuild @@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="PSF-2" SLOT="${PYVER}" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86" IUSE="bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline sqlite +ssl test tk wininst +xml" RESTRICT="!test? ( test )" diff --git a/dev-libs/Manifest.gz b/dev-libs/Manifest.gz index 8e4fe788fb0b..a44b111b1f06 100644 Binary files a/dev-libs/Manifest.gz and b/dev-libs/Manifest.gz differ diff --git a/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild b/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild new file mode 100644 index 000000000000..3a87fe43a084 --- /dev/null +++ b/dev-libs/concurrencykit/concurrencykit-0.7.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +MY_PN="ck" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A library with concurrency related algorithms and data structures in C" +HOMEPAGE="http://concurrencykit.org" +SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="Apache-2.0 BSD-2" +SLOT="0" +KEYWORDS="amd64 ~x86" + +# The 'libck.so' has a name collision. +# See #616762 for more information. +RDEPEND="!sys-cluster/charm" + +PATCHES=( + "${FILESDIR}/${P}-ar.patch" + "${FILESDIR}/${P}-glibc-2.30.patch" + "${FILESDIR}/${P}-gzip.patch" + "${FILESDIR}/${P}-static-libs.patch" +) + +src_configure() { + tc-export AR CC LD + export PROFILE="x86$(usex amd64 '_64' '')" + + local myeconfargs=( + "--disable-static" + ) + + GZIP="" $(usex x86 'PROFILE=x86' '') econf ${myeconfargs[@]} +} diff --git a/dev-libs/concurrencykit/concurrencykit-0.7.0.ebuild b/dev-libs/concurrencykit/concurrencykit-0.7.0.ebuild deleted file mode 100644 index 24f79b725083..000000000000 --- a/dev-libs/concurrencykit/concurrencykit-0.7.0.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="ck" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="A library with concurrency related algorithms and data structures in C" -HOMEPAGE="http://concurrencykit.org" -SRC_URI="https://github.com/concurrencykit/ck/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0 BSD-2" -SLOT="0" -KEYWORDS="amd64 ~x86" - -# libck.so name collision #616762 -# these packages have nothing in common -RDEPEND="!sys-cluster/charm" - -# https://github.com/concurrencykit/ck/issues/147 -# https://github.com/concurrencykit/ck/issues/150 -PATCHES=( - "${FILESDIR}/${PN}-glibc-2.30.patch" - "${FILESDIR}/${PN}-doc.patch" -) - -S="${WORKDIR}/${MY_P}" diff --git a/dev-libs/concurrencykit/files/concurrencykit-0.7.0-ar.patch b/dev-libs/concurrencykit/files/concurrencykit-0.7.0-ar.patch new file mode 100644 index 000000000000..70dd46a113f2 --- /dev/null +++ b/dev-libs/concurrencykit/files/concurrencykit-0.7.0-ar.patch @@ -0,0 +1,112 @@ +From c6a2f41369bb4549bfaadf1120ccacd884b0b70f Mon Sep 17 00:00:00 2001 +From: Conrad Kostecki +Date: Sun, 22 Nov 2020 00:55:36 +0100 +Subject: [PATCH] Add support for setting AR + +By default, the command 'ar' is called. Is should be possible, as with +'CC', to override that value and set an own AR. + +Signed-off-by: Conrad Kostecki +--- + configure | 11 +++++++++++ + src/Makefile.in | 2 +- + 2 files changed, 12 insertions(+), 1 deletion(-) + +diff --git a/configure b/configure +index 1b85d113..78535332 100755 +--- a/configure ++++ b/configure +@@ -146,6 +146,7 @@ generate_stdout() + echo " SRC_DIR = $BUILD_DIR" + echo " SYSTEM = $SYSTEM" + echo " PROFILE = $PROFILE" ++ echo " AR = $AR" + echo " CC = $CC" + echo " COMPILER = $COMPILER" + echo " CFLAGS = $CFLAGS" +@@ -215,6 +216,7 @@ for option; do + echo " --cores=N Specify number of cores available on target machine" + echo + echo "The following environment variables may be used:" ++ echo " AR AR archiver command" + echo " CC C compiler command" + echo " CFLAGS C compiler flags" + echo " LDFLAGS Linker flags" +@@ -645,6 +647,15 @@ if test ! -x "${CC}"; then + fi + assert "$CC" "not found" + ++printf "Finding suitable archiver........" ++if test ! -x "${AR}"; then ++ AR=`pathsearch "${AR:-ar}"` ++ if test -z "$AR" -o ! -x "$AR"; then ++ AR=`pathsearch "${AR:-ar}"` ++ fi ++fi ++assert "$AR" "not found" ++ + cat << EOF > .1.c + #include + int main(void) { +diff --git a/src/Makefile.in b/src/Makefile.in +index 0b7ae7b6..73788497 100644 +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -25,7 +25,7 @@ libck.so: $(OBJECTS) + $(LD) $(LDFLAGS) -o $(TARGET_DIR)/libck.so $(OBJECTS) + + libck.a: $(OBJECTS) +- ar rcs $(TARGET_DIR)/libck.a $(OBJECTS) ++ $(AR) rcs $(TARGET_DIR)/libck.a $(OBJECTS) + + ck_array.o: $(INCLUDE_DIR)/ck_array.h $(SDIR)/ck_array.c + $(CC) $(CFLAGS) -c -o $(TARGET_DIR)/ck_array.o $(SDIR)/ck_array.c +From 866c2af332a075cc83af78b184be0d5e6152de13 Mon Sep 17 00:00:00 2001 +From: Olivier Houchard +Date: Sun, 22 Nov 2020 01:16:10 +0100 +Subject: [PATCH] build: Make the lookup for an archiver report success. + +Move the code looking for ar outside the compiler checking code, and make +it report success if found. +--- + configure | 20 +++++++++++--------- + 1 file changed, 11 insertions(+), 9 deletions(-) + +diff --git a/configure b/configure +index 78535332..16a8f64f 100755 +--- a/configure ++++ b/configure +@@ -647,15 +647,6 @@ if test ! -x "${CC}"; then + fi + assert "$CC" "not found" + +-printf "Finding suitable archiver........" +-if test ! -x "${AR}"; then +- AR=`pathsearch "${AR:-ar}"` +- if test -z "$AR" -o ! -x "$AR"; then +- AR=`pathsearch "${AR:-ar}"` +- fi +-fi +-assert "$AR" "not found" +- + cat << EOF > .1.c + #include + int main(void) { +@@ -736,6 +727,17 @@ else + assert "" "unknown compiler" + fi + ++printf "Finding suitable archiver........" ++if test ! -x "${AR}"; then ++ AR=`pathsearch "${AR:-ar}"` ++ if test -z "$AR" -o ! -x "$AR"; then ++ AR=`pathsearch "${AR:-ar}"` ++ else ++ echo "success [$AR]" ++ fi ++fi ++assert "$AR" "not found" ++ + printf "Detecting VMA bits..............." + VMA="unknown" + if test "$VMA_BITS" = "unknown"; then diff --git a/dev-libs/concurrencykit/files/concurrencykit-glibc-2.30.patch b/dev-libs/concurrencykit/files/concurrencykit-0.7.0-glibc-2.30.patch similarity index 63% rename from dev-libs/concurrencykit/files/concurrencykit-glibc-2.30.patch rename to dev-libs/concurrencykit/files/concurrencykit-0.7.0-glibc-2.30.patch index 452421c63125..77e63e3de7ef 100644 --- a/dev-libs/concurrencykit/files/concurrencykit-glibc-2.30.patch +++ b/dev-libs/concurrencykit/files/concurrencykit-0.7.0-glibc-2.30.patch @@ -1,3 +1,20 @@ +From b520d58d00b7ed6c5cc9bc97c62f07e09f4f49ad Mon Sep 17 00:00:00 2001 +From: Samy Al Bahra +Date: Tue, 29 Oct 2019 17:30:09 -0400 +Subject: [PATCH] regressions/common: rename gettid wrapper to common_gettid. + +glibc-2.30 added a wrapper to gettid (https://lwn.net/Articles/795127/). +gettid will clash with the glibc-provided symbol. Remove the +macro and instead move to a dedicated namespace. + +We go this route to avoid introducing unnecessary complexity to +build. + +Fixes #147 +--- + regressions/common.h | 8 +++----- + 1 file changed, 3 insertions(+), 5 deletions(-) + diff --git a/regressions/common.h b/regressions/common.h index 6e53483d..9cdc690a 100644 --- a/regressions/common.h diff --git a/dev-libs/concurrencykit/files/concurrencykit-0.7.0-gzip.patch b/dev-libs/concurrencykit/files/concurrencykit-0.7.0-gzip.patch new file mode 100644 index 000000000000..62477f9acf6c --- /dev/null +++ b/dev-libs/concurrencykit/files/concurrencykit-0.7.0-gzip.patch @@ -0,0 +1,58 @@ +From cb63256ae2e5fde7a67d7740bb2f4a0eab538a2d Mon Sep 17 00:00:00 2001 +From: Samy Al Bahra +Date: Thu, 9 Apr 2020 20:08:40 -0400 +Subject: [PATCH] build: allow GZIP to be set to empty string in configure. + +--- + configure | 25 +++++++++++++++---------- + 1 file changed, 15 insertions(+), 10 deletions(-) + +diff --git a/configure b/configure +index 2cbdbef3..ed188f96 100755 +--- a/configure ++++ b/configure +@@ -325,7 +325,7 @@ done + HEADERS=${HEADERS:-"${PREFIX}/include"} + LIBRARY=${LIBRARY:-"${PREFIX}/lib"} + MANDIR=${MANDIR:-"${PREFIX}/share/man"} +-GZIP=${GZIP:-"gzip -c"} ++GZIP=${GZIP-"gzip -c"} + POINTER_PACK_ENABLE=${POINTER_PACK_ENABLE:-"CK_MD_POINTER_PACK_DISABLE"} + DISABLE_DOUBLE=${DISABLE_DOUBLE:-"CK_PR_ENABLE_DOUBLE"} + PPC32_LWSYNC_ENABLE=${PPC32_LWSYNC_ENABLE:-"CK_MD_PPC32_LWSYNC_DISABLE"} +@@ -583,21 +583,26 @@ else + echo "success [$BUILD_DIR]" + fi + +-printf "Finding gzip tool................" +-GZIP=`pathsearch "${GZIP:-gzip}"` +-if test -z "$GZIP" -o ! -x "$GZIP"; then ++if test -n "$GZIP"; then ++ printf "Finding gzip tool................" + GZIP=`pathsearch "${GZIP:-gzip}"` +- GZIP="$GZIP" ++ if test -z "$GZIP" -o ! -x "$GZIP"; then ++ GZIP=`pathsearch "${GZIP:-gzip}"` ++ GZIP="$GZIP" ++ fi ++ ++ if test -z "$GZIP"; then ++ echo "not found" ++ else ++ echo "success [$GZIP]" ++ GZIP="$GZIP -c" ++ GZIP_SUFFIX=".gz" ++ fi + fi + + if test -z "$GZIP"; then +- echo "not found" + GZIP=cat + GZIP_SUFFIX="" +-else +- echo "success [$GZIP]" +- GZIP="$GZIP -c" +- GZIP_SUFFIX=".gz" + fi + + printf "Finding suitable compiler........" diff --git a/dev-libs/concurrencykit/files/concurrencykit-0.7.0-static-libs.patch b/dev-libs/concurrencykit/files/concurrencykit-0.7.0-static-libs.patch new file mode 100644 index 000000000000..3e1d080a5f4d --- /dev/null +++ b/dev-libs/concurrencykit/files/concurrencykit-0.7.0-static-libs.patch @@ -0,0 +1,75 @@ +diff --git a/configure b/configure +index 7853533..4e1ee9d 100755 +--- a/configure ++++ b/configure +@@ -119,6 +119,7 @@ generate() + -e "s#@GZIP_SUFFIX@#$GZIP_SUFFIX#g" \ + -e "s#@POINTER_PACK_ENABLE@#$POINTER_PACK_ENABLE#g" \ + -e "s#@DISABLE_DOUBLE@#$DISABLE_DOUBLE#g" \ ++ -e "s#@DISABLE_STATIC@#$DISABLE_STATIC#g" \ + -e "s#@SSE_DISABLE@#$SSE_DISABLE#g" \ + -e "s#@PPC32_LWSYNC_ENABLE@#$PPC32_LWSYNC_ENABLE#g" \ + -e "s#@RTM_ENABLE@#$RTM_ENABLE#g" \ +@@ -156,6 +157,7 @@ generate_stdout() + echo " LDNAME_VERSION = $LDNAME_VERSION" + echo " LDNAME_MAJOR = $LDNAME_MAJOR" + echo " LDFLAGS = $LDFLAGS" ++ echo " STATIC_LIB = $DISABLE_STATIC" + echo " GZIP = $GZIP" + echo " CORES = $CORES" + echo " POINTER_PACK = $POINTER_PACK_ENABLE" +@@ -205,6 +207,7 @@ for option; do + echo " --platform=N Force the platform type, instead of relying on autodetection" + echo " --use-cc-builtins Use the compiler atomic builtin functions, instead of the CK implementation" + echo " --disable-double Don't generate any of the functions using the \"double\" type" ++ echo " --disable-static Don't compile a static version of the ck lib" + echo + echo "The following options will affect specific platform-dependent generated code." + echo " --disable-sse Do not use any SSE instructions (x86)" +@@ -293,6 +296,9 @@ for option; do + --disable-double) + DISABLE_DOUBLE="CK_PR_DISABLE_DOUBLE" + ;; ++ --disable-static) ++ DISABLE_STATIC=1 ++ ;; + --platform=*) + PLATFORM=$value + ;; +@@ -330,6 +336,7 @@ MANDIR=${MANDIR:-"${PREFIX}/share/man"} + GZIP=${GZIP-"gzip -c"} + POINTER_PACK_ENABLE=${POINTER_PACK_ENABLE:-"CK_MD_POINTER_PACK_DISABLE"} + DISABLE_DOUBLE=${DISABLE_DOUBLE:-"CK_PR_ENABLE_DOUBLE"} ++DISABLE_STATIC=${DISABLE_STATIC:-"0"} + PPC32_LWSYNC_ENABLE=${PPC32_LWSYNC_ENABLE:-"CK_MD_PPC32_LWSYNC_DISABLE"} + RTM_ENABLE=${RTM_ENABLE_SET:-"CK_MD_RTM_DISABLE"} + SSE_DISABLE=${SSE_DISABLE:-"CK_MD_SSE_ENABLE"} +@@ -717,13 +724,24 @@ elif test "$COMPILER" = "gcc" || test "$COMPILER" = "clang" || test "$COMPILER" + if test "$WANT_PIC" = "yes"; then + LDFLAGS="$LDFLAGS -shared -fPIC" + CFLAGS="$CFLAGS -fPIC" +- ALL_LIBS="libck.so libck.a" +- INSTALL_LIBS="install-so install-lib" ++ ++ if [ "$DISABLE_STATIC" -eq 1 ]; then ++ ALL_LIBS="libck.so" ++ INSTALL_LIBS="install-so" ++ else ++ ALL_LIBS="libck.so libck.a" ++ INSTALL_LIBS="install-so install-lib" ++ fi + else + LDFLAGS="$LDFLAGS -fno-PIC" + CFLAGS="$CFLAGS -fno-PIC" +- ALL_LIBS="libck.a" +- INSTALL_LIBS="install-lib" ++ if [ "$DISABLE_STATIC" -eq 1 ]; then ++ echo "Error: You have choosen to disable PIC, yet you also disabled the static lib." 1>&2 ++ exit $EXIT_FAILURE ++ else ++ ALL_LIBS="libck.a" ++ INSTALL_LIBS="install-lib" ++ fi + fi + + CFLAGS="-D_XOPEN_SOURCE=600 -D_BSD_SOURCE -D_DEFAULT_SOURCE -std=gnu99 -pedantic -Wall -W -Wundef -Wendif-labels -Wshadow -Wpointer-arith -Wcast-align -Wcast-qual -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wdisabled-optimization -fstrict-aliasing -O2 -pipe -Wno-parentheses $CFLAGS" diff --git a/dev-libs/concurrencykit/files/concurrencykit-doc.patch b/dev-libs/concurrencykit/files/concurrencykit-doc.patch deleted file mode 100644 index 40aa466bb4e6..000000000000 --- a/dev-libs/concurrencykit/files/concurrencykit-doc.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff --git a/doc/Makefile.in b/doc/Makefile.in -index cbad704..f476925 100644 ---- a/doc/Makefile.in -+++ b/doc/Makefile.in -@@ -1,7 +1,7 @@ - .PHONY: clean install uninstall - - MANDIR=@MANDIR@ --GZIP=@GZIP@ -+GZIP=/bin/echo - GZIP_SUFFIX=.3@GZIP_SUFFIX@ - BUILD_DIR=@BUILD_DIR@ - SRC_DIR=@SRC_DIR@ -@@ -206,7 +206,9 @@ refcheck: - - install: - mkdir -p $(DESTDIR)/$(MANDIR)/man3 || exit -- cp *$(GZIP_SUFFIX) $(DESTDIR)/$(MANDIR)/man3 || exit -+ for target in $(OBJECTS); do \ -+ cp -v $$target $(DESTDIR)/$(MANDIR)/man3/$$target.3 || exit; \ -+ done - - uninstall: - for target in $(OBJECTS); do \ diff --git a/dev-libs/concurrencykit/metadata.xml b/dev-libs/concurrencykit/metadata.xml index 5acb2fa5df31..8600ab81dac4 100644 --- a/dev-libs/concurrencykit/metadata.xml +++ b/dev-libs/concurrencykit/metadata.xml @@ -2,12 +2,8 @@ - hydrapolic@gmail.com - Tomáš Mózes - - - proxy-maint@gentoo.org - Proxy Maintainers + conikost@gentoo.org + Conrad Kostecki concurrencykit/ck diff --git a/dev-libs/protobuf/Manifest b/dev-libs/protobuf/Manifest index 579b5e38b3fd..517abfc7f262 100644 --- a/dev-libs/protobuf/Manifest +++ b/dev-libs/protobuf/Manifest @@ -2,3 +2,4 @@ DIST protobuf-3.11.4.tar.gz 5140799 BLAKE2B 97b450c0623593efe6a42b66582ff183344b DIST protobuf-3.12.2.tar.gz 5309688 BLAKE2B 6f04ab75a165d8135b4c1de210f8698f56f309f73d664192209de10580e0ef850bf56f6f394b860f21912e341141f7bbb1f63198eaee55fd7ad74d86b00c3b1f SHA512 84a349a1dcb5bce6a6a892cf11264390b557ed1e7b05883b71fa9cfb7460d9f73119da1f2861066869e33c752246ea438d5ce2c2b3ff7a4b07696d9450b7916b DIST protobuf-3.12.4.tar.gz 5310348 BLAKE2B 2630941672963165467221843c10079a0ed966f2fdfcbc970b0b41e1ed3c7f78734496c1fbd3ec509c68999a14f637fff267b309cf82a8acf2bb5a948484f79b SHA512 c5d24502b9a6be0a606a19213186fe462e0de6830547003636f0897781f36d0bd7e4e7d9689d96390a0399ce04b6438cda3a0fe6f97f0feb700a110e90beef0c DIST protobuf-3.13.0.tar.gz 5277913 BLAKE2B 168aaa5beef83be675cd2543ca8efeaf5174f5e7fd861a056b04b01c8c781dc7b1fcbd05068ae89f051dfacfdc47c34b19cc33c8d09dd3212d3827746e3408f2 SHA512 514efa65fc8a36bc0791e6d39bdfb07b2689e9c2a4b82536c657859b800e7bc1e1a0ae86a7ee33f30c43a473a49b5c346ce830ac0057b6da104ed37f90b8b0fd +DIST protobuf-3.14.0.tar.gz 5319779 BLAKE2B cea083eea4d7fec441536effdfe2bf1811913154b0cc0da2f14f4edeb0efb200236da102c36700e24fab73fd9883aa90576ad64603a7f175ebf5cef0dc29aae5 SHA512 9dabba81119cb6196ef5de382a1032c57f6e69038f4dce0156f8671b98e51bb5095915fb6d05bb5a8ad8b17b559e652e1e9a392dd30c7ed8dcf1d986c137be11 diff --git a/dev-libs/protobuf/files/protobuf-3.14.0-protoc_input_output_files.patch b/dev-libs/protobuf/files/protobuf-3.14.0-protoc_input_output_files.patch new file mode 100644 index 000000000000..a36bdcb734a5 --- /dev/null +++ b/dev-libs/protobuf/files/protobuf-3.14.0-protoc_input_output_files.patch @@ -0,0 +1,268 @@ +https://github.com/protocolbuffers/protobuf/pull/235 + +--- /src/google/protobuf/compiler/command_line_interface.cc ++++ /src/google/protobuf/compiler/command_line_interface.cc +@@ -1109,6 +1109,28 @@ + } + + if (mode_ == MODE_ENCODE || mode_ == MODE_DECODE) { ++ bool success = false; ++ int in_fd = STDIN_FILENO; ++ int out_fd = STDOUT_FILENO; ++ ++ if (!protobuf_in_path_.empty()) { ++ in_fd = open(protobuf_in_path_.c_str(), O_RDONLY); ++ if (in_fd == -1) { ++ std::cerr << protobuf_in_path_ << ": error: failed to open file." << std::endl; ++ return 1; ++ } ++ } ++ if (!protobuf_out_path_.empty()) { ++ out_fd = open(protobuf_out_path_.c_str(), ++ O_WRONLY | O_CREAT | O_TRUNC, ++ 0644); ++ if (out_fd == -1) { ++ std::cerr << protobuf_out_path_ << ": error: failed to open file." << std::endl; ++ close(in_fd); ++ return 1; ++ } ++ } ++ + if (codec_type_.empty()) { + // HACK: Define an EmptyMessage type to use for decoding. + DescriptorPool pool; +@@ -1117,13 +1139,20 @@ + file.add_message_type()->set_name("EmptyMessage"); + GOOGLE_CHECK(pool.BuildFile(file) != NULL); + codec_type_ = "EmptyMessage"; +- if (!EncodeOrDecode(&pool)) { +- return 1; +- } ++ success = EncodeOrDecode(&pool, in_fd, out_fd); + } else { +- if (!EncodeOrDecode(descriptor_pool.get())) { +- return 1; +- } ++ success = EncodeOrDecode(descriptor_pool.get(), in_fd, out_fd); ++ } ++ ++ if (in_fd != STDIN_FILENO) { ++ close(in_fd); ++ } ++ if (out_fd != STDOUT_FILENO) { ++ close(out_fd); ++ } ++ ++ if (!success) { ++ return 1; + } + } + +@@ -1161,6 +1190,11 @@ + for (int i = 0; i < proto_path_.size(); i++) { + source_tree->MapPath(proto_path_[i].first, proto_path_[i].second); + } ++ if (mode_ == MODE_COMPILE && ++ (!protobuf_in_path_.empty() || !protobuf_out_path_.empty())) { ++ std::cerr << "--protobuf_in and --protobuf_out are only valid with " ++ << "decode operations. Ignoring."; ++ } + + // Map input files to virtual paths if possible. + if (!MakeInputsBeProtoPathRelative(source_tree, fallback_database)) { +@@ -1904,6 +1938,12 @@ + } else if (name == "--deterministic_output") { + deterministic_output_ = true; + ++ } else if (name == "--protobuf_in") { ++ protobuf_in_path_ = value; ++ ++ } else if (name == "--protobuf_out") { ++ protobuf_out_path_ = value; ++ + } else if (name == "--error_format") { + if (value == "gcc") { + error_format_ = ERROR_FORMAT_GCC; +@@ -2040,12 +2080,15 @@ + " -h, --help Show this text and exit.\n" + " --encode=MESSAGE_TYPE Read a text-format message of the " + "given type\n" +- " from standard input and write it in " +- "binary\n" +- " to standard output. The message type " +- "must\n" ++ " and write it in binary. The message " ++ "type must\n" + " be defined in PROTO_FILES or their " + "imports.\n" ++ " The input/output protobuf files are " ++ "specified\n" ++ " using the --protobuf_in and " ++ "--protobuf_out\n" ++ " command line flags.\n" + " --deterministic_output When using --encode, ensure map fields " + "are\n" + " deterministically ordered. Note that" +@@ -2053,22 +2096,40 @@ + " canonical, and changes across builds" + "or releases of protoc.\n" + " --decode=MESSAGE_TYPE Read a binary message of the given " +- "type from\n" +- " standard input and write it in text " +- "format\n" +- " to standard output. The message type " +- "must\n" +- " be defined in PROTO_FILES or their " +- "imports.\n" ++ "type and\n" ++ " write it in text format. The message " ++ "type\n" ++ " must be defined in PROTO_FILES or " ++ "their imports.\n" ++ " The input/output protobuf files are " ++ "specified\n" ++ " using the --protobuf_in and " ++ "--protobuf_out\n" ++ " command line flags.\n" + " --decode_raw Read an arbitrary protocol message " +- "from\n" +- " standard input and write the raw " +- "tag/value\n" +- " pairs in text format to standard " +- "output. No\n" ++ "and write\n" ++ " the raw tag/value pairs in text format." ++ " No\n" + " PROTO_FILES should be given when using " + "this\n" +- " flag.\n" ++ " flag. The input/output protobuf files " ++ "are\n" ++ " specified using the --protobuf_in and\n" ++ " --protobuf_out command line flags.\n" ++ " --protobuf_in=FILE Absolute path to the protobuf file " ++ "from which\n" ++ " input of encoding/decoding operation " ++ "will be\n" ++ " read. If omitted, input will be read " ++ "from\n" ++ " standard input.\n" ++ " --protobuf_out=FILE Absolute path to the protobuf file " ++ "to which\n" ++ " output of encoding/decoding operation " ++ "will be\n" ++ " written. If omitted, output will be " ++ "written to\n" ++ " standard output.\n" + " --descriptor_set_in=FILES Specifies a delimited list of FILES\n" + " each containing a FileDescriptorSet " + "(a\n" +@@ -2416,7 +2477,9 @@ + return true; + } + +-bool CommandLineInterface::EncodeOrDecode(const DescriptorPool* pool) { ++bool CommandLineInterface::EncodeOrDecode(const DescriptorPool* pool, ++ int in_fd, ++ int out_fd) { + // Look up the type. + const Descriptor* type = pool->FindMessageTypeByName(codec_type_); + if (type == NULL) { +@@ -2428,15 +2491,15 @@ + std::unique_ptr message(dynamic_factory.GetPrototype(type)->New()); + + if (mode_ == MODE_ENCODE) { +- SetFdToTextMode(STDIN_FILENO); +- SetFdToBinaryMode(STDOUT_FILENO); ++ SetFdToTextMode(in_fd); ++ SetFdToBinaryMode(out_fd); + } else { +- SetFdToBinaryMode(STDIN_FILENO); +- SetFdToTextMode(STDOUT_FILENO); ++ SetFdToBinaryMode(in_fd); ++ SetFdToTextMode(out_fd); + } + +- io::FileInputStream in(STDIN_FILENO); +- io::FileOutputStream out(STDOUT_FILENO); ++ io::FileInputStream in(in_fd); ++ io::FileOutputStream out(out_fd); + + if (mode_ == MODE_ENCODE) { + // Input is text. +--- /src/google/protobuf/compiler/command_line_interface.h ++++ /src/google/protobuf/compiler/command_line_interface.h +@@ -296,7 +296,9 @@ + GeneratorContext* generator_context, std::string* error); + + // Implements --encode and --decode. +- bool EncodeOrDecode(const DescriptorPool* pool); ++ bool EncodeOrDecode(const DescriptorPool* pool, ++ int in_fd, ++ int out_fd); + + // Implements the --descriptor_set_out option. + bool WriteDescriptorSet( +@@ -428,6 +430,13 @@ + // parsed FileDescriptorSets to be used for loading protos. Otherwise, empty. + std::vector descriptor_set_in_names_; + ++ // When using --encode / --decode / --decode_raw absolute path to the output ++ // file. (Empty string indicates write to STDOUT). ++ std::string protobuf_out_path_; ++ // When using --encode / --decode / --decode_raw, absolute path to the input ++ // file. (Empty string indicates read from STDIN). ++ std::string protobuf_in_path_; ++ + // If --descriptor_set_out was given, this is the filename to which the + // FileDescriptorSet should be written. Otherwise, empty. + std::string descriptor_set_out_name_; +--- /src/google/protobuf/compiler/command_line_interface_unittest.cc ++++ /src/google/protobuf/compiler/command_line_interface_unittest.cc +@@ -97,7 +97,7 @@ + virtual void SetUp(); + virtual void TearDown(); + +- // Runs the CommandLineInterface with the given command line. The ++ // Run the CommandLineInterface with the given command line. The + // command is automatically split on spaces, and the string "$tmpdir" + // is replaced with TestTempDir(). + void Run(const std::string& command); +@@ -2638,6 +2638,17 @@ + std::string::npos); + } + ++ void ExpectBinaryFilesMatch(const string &expected_file, ++ const string &actual_file) { ++ string expected_output, actual_output; ++ ASSERT_TRUE(File::ReadFileToString(expected_file, &expected_output)); ++ ASSERT_TRUE(File::ReadFileToString(actual_file, &actual_output)); ++ ++ // Don't use EXPECT_EQ because we don't want to print raw binary data to ++ // stdout on failure. ++ EXPECT_TRUE(expected_output == actual_output); ++ } ++ + private: + void WriteUnittestProtoDescriptorSet() { + unittest_proto_descriptor_set_filename_ = +@@ -2761,6 +2772,19 @@ + "Can only use --deterministic_output with --encode.\n"); + } + ++TEST_P(EncodeDecodeTest, RedirectInputOutput) { ++ string out_file = TestTempDir() + "/golden_message_out.pbf"; ++ EXPECT_TRUE( ++ Run(TestUtil::MaybeTranslatePath("net/proto2/internal/unittest.proto") + ++ " --encode=protobuf_unittest.TestAllTypes" + ++ " --protobuf_in=" + TestUtil::GetTestDataPath( ++ "net/proto2/internal/" ++ "testdata/text_format_unittest_data_oneof_implemented.txt") + ++ " --protobuf_out=" + out_file)); ++ ExpectBinaryFilesMatch(out_file, TestUtil::GetTestDataPath( ++ "net/proto2/internal/testdata/golden_message_oneof_implemented")); ++} ++ + INSTANTIATE_TEST_SUITE_P(FileDescriptorSetSource, EncodeDecodeTest, + testing::Values(PROTO_PATH, DESCRIPTOR_SET_IN)); + } // anonymous namespace diff --git a/dev-libs/protobuf/protobuf-3.13.0.ebuild b/dev-libs/protobuf/protobuf-3.13.0.ebuild index ae5381a06924..87c46cb84fa5 100644 --- a/dev-libs/protobuf/protobuf-3.13.0.ebuild +++ b/dev-libs/protobuf/protobuf-3.13.0.ebuild @@ -22,7 +22,7 @@ fi LICENSE="BSD" SLOT="0/24" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="emacs examples static-libs test zlib" RESTRICT="!test? ( test )" diff --git a/dev-libs/protobuf/protobuf-3.14.0.ebuild b/dev-libs/protobuf/protobuf-3.14.0.ebuild new file mode 100644 index 000000000000..706e7d50e34a --- /dev/null +++ b/dev-libs/protobuf/protobuf-3.14.0.ebuild @@ -0,0 +1,128 @@ +# Copyright 2008-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit autotools elisp-common flag-o-matic multilib-minimal toolchain-funcs + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/protocolbuffers/protobuf" + EGIT_SUBMODULES=() +fi + +DESCRIPTION="Google's Protocol Buffers - Extensible mechanism for serializing structured data" +HOMEPAGE="https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf" +if [[ "${PV}" == "9999" ]]; then + SRC_URI="" +else + SRC_URI="https://github.com/protocolbuffers/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +fi + +LICENSE="BSD" +SLOT="0/25" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="emacs examples static-libs test zlib" +RESTRICT="!test? ( test )" + +BDEPEND="emacs? ( app-editors/emacs:* )" +DEPEND="test? ( >=dev-cpp/gtest-1.9[${MULTILIB_USEDEP}] ) + zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )" +RDEPEND="emacs? ( app-editors/emacs:* ) + zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )" + +PATCHES=( + "${FILESDIR}/${PN}-3.13.0-disable_no-warning-test.patch" + "${FILESDIR}/${PN}-3.13.0-system_libraries.patch" + "${FILESDIR}/${PN}-3.14.0-protoc_input_output_files.patch" +) + +DOCS=(CHANGES.txt CONTRIBUTORS.txt README.md) + +src_prepare() { + default + + # https://github.com/protocolbuffers/protobuf/issues/7413 + sed -e "/^AC_PROG_CXX_FOR_BUILD$/d" -i configure.ac || die + + eautoreconf +} + +src_configure() { + append-cppflags -DGOOGLE_PROTOBUF_NO_RTTI + + if tc-ld-is-gold; then + # https://sourceware.org/bugzilla/show_bug.cgi?id=24527 + tc-ld-disable-gold + fi + + multilib-minimal_src_configure +} + +multilib_src_configure() { + local options=( + $(use_enable static-libs static) + $(use_with zlib) + ) + + if tc-is-cross-compiler; then + # Build system uses protoc when building, so protoc copy runnable on host is needed. + mkdir -p "${WORKDIR}/build" || die + pushd "${WORKDIR}/build" > /dev/null || die + ECONF_SOURCE="${S}" econf_build "${options[@]}" + options+=(--with-protoc="$(pwd)/src/protoc") + popd > /dev/null || die + fi + + ECONF_SOURCE="${S}" econf "${options[@]}" +} + +src_compile() { + multilib-minimal_src_compile + + if use emacs; then + elisp-compile editors/protobuf-mode.el + fi +} + +multilib_src_compile() { + if tc-is-cross-compiler; then + emake -C "${WORKDIR}/build/src" protoc + fi + + default +} + +multilib_src_test() { + emake check +} + +multilib_src_install_all() { + find "${ED}" -name "*.la" -delete || die + + insinto /usr/share/vim/vimfiles/syntax + doins editors/proto.vim + insinto /usr/share/vim/vimfiles/ftdetect + doins "${FILESDIR}/proto.vim" + + if use emacs; then + elisp-install ${PN} editors/protobuf-mode.el* + elisp-site-file-install "${FILESDIR}/70${PN}-gentoo.el" + fi + + if use examples; then + DOCS+=(examples) + docompress -x /usr/share/doc/${PF}/examples + fi + + einstalldocs +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-libs/protobuf/protobuf-9999.ebuild b/dev-libs/protobuf/protobuf-9999.ebuild index c30e4aa6d464..ae36a439b162 100644 --- a/dev-libs/protobuf/protobuf-9999.ebuild +++ b/dev-libs/protobuf/protobuf-9999.ebuild @@ -21,7 +21,7 @@ else fi LICENSE="BSD" -SLOT="0/24" +SLOT="0/25" KEYWORDS="" IUSE="emacs examples static-libs test zlib" RESTRICT="!test? ( test )" @@ -35,7 +35,7 @@ RDEPEND="emacs? ( app-editors/emacs:* ) PATCHES=( "${FILESDIR}/${PN}-3.13.0-disable_no-warning-test.patch" "${FILESDIR}/${PN}-3.13.0-system_libraries.patch" - "${FILESDIR}/${PN}-3.13.0-protoc_input_output_files.patch" + "${FILESDIR}/${PN}-3.14.0-protoc_input_output_files.patch" ) DOCS=(CHANGES.txt CONTRIBUTORS.txt README.md) diff --git a/dev-libs/re2/re2-0.2020.11.01.ebuild b/dev-libs/re2/re2-0.2020.11.01.ebuild index 73ac80054b95..48b29137b04d 100644 --- a/dev-libs/re2/re2-0.2020.11.01.ebuild +++ b/dev-libs/re2/re2-0.2020.11.01.ebuild @@ -18,7 +18,7 @@ LICENSE="BSD" # https://abi-laboratory.pro/tracker/timeline/re2/ SONAME="9" SLOT="0/${SONAME}" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86" IUSE="icu" BDEPEND="icu? ( virtual/pkgconfig )" diff --git a/dev-libs/rocksdb/rocksdb-6.14.5.ebuild b/dev-libs/rocksdb/rocksdb-6.14.5.ebuild index a1c12d2cf0bd..9b4a7a55f538 100644 --- a/dev-libs/rocksdb/rocksdb-6.14.5.ebuild +++ b/dev-libs/rocksdb/rocksdb-6.14.5.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/facebook/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm64 ~x86" IUSE="cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_sse4_2 jemalloc static-libs" COMMON_DEPEND=" diff --git a/dev-libs/tree-sitter/Manifest b/dev-libs/tree-sitter/Manifest new file mode 100644 index 000000000000..2959e6a352c9 --- /dev/null +++ b/dev-libs/tree-sitter/Manifest @@ -0,0 +1 @@ +DIST tree-sitter-0.17.3.tar.gz 519006 BLAKE2B 81eb9bdfc9f27e7b172b6c17333eece5515cf292d5b08eb5362f108db483e329ff6d309ccc40ef2de23d1a32c437cdbc1b9cf800146902a3d913feecf8b63269 SHA512 48a827d7bea184a84ad9f594bc5dc1869bad9aa2823f83d1ac7d58e6feaa092e7088e7eb0dcc6d3aa3810d25ff9f25ecb531751c77314ff7d07fa05f95b7a013 diff --git a/dev-libs/tree-sitter/files/tree-sitter-No-static-libs-gentoo.patch b/dev-libs/tree-sitter/files/tree-sitter-No-static-libs-gentoo.patch new file mode 100644 index 000000000000..dd898b059612 --- /dev/null +++ b/dev-libs/tree-sitter/files/tree-sitter-No-static-libs-gentoo.patch @@ -0,0 +1,21 @@ +diff --git a/Makefile b/Makefile +index 764f411a..86aaefd8 100644 +--- a/Makefile ++++ b/Makefile +@@ -41,7 +41,7 @@ ifneq (,$(filter $(shell uname),FreeBSD NetBSD DragonFly)) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig + endif + +-all: libtree-sitter.a libtree-sitter.$(SOEXTVER) ++all: libtree-sitter.$(SOEXTVER) + + libtree-sitter.a: $(OBJ) + $(AR) rcs $@ $^ +@@ -53,7 +53,6 @@ libtree-sitter.$(SOEXTVER): $(OBJ) + + install: all + install -d '$(DESTDIR)$(LIBDIR)' +- install -m755 libtree-sitter.a '$(DESTDIR)$(LIBDIR)'/libtree-sitter.a + install -m755 libtree-sitter.$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter.$(SOEXTVER) + ln -sf libtree-sitter.$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter.$(SOEXTVER_MAJOR) + ln -sf libtree-sitter.$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/libtree-sitter.$(SOEXT) diff --git a/dev-libs/tree-sitter/metadata.xml b/dev-libs/tree-sitter/metadata.xml new file mode 100644 index 000000000000..dcfdb27e8a99 --- /dev/null +++ b/dev-libs/tree-sitter/metadata.xml @@ -0,0 +1,18 @@ + + + + + abdelqaderali@protonmail.com + Ali Abdel-Qader + + + sarnex@gentoo.org + Nick Sarnie + + + tree-sitter/tree-sitter + + + Tree-sitter is a parser generator tool and an incremental parsing library. It can build a concrete syntax tree for a source file and efficiently update the syntax tree as the source file is edited. + + diff --git a/dev-libs/tree-sitter/tree-sitter-0.17.3.ebuild b/dev-libs/tree-sitter/tree-sitter-0.17.3.ebuild new file mode 100644 index 000000000000..b50d6429cd9a --- /dev/null +++ b/dev-libs/tree-sitter/tree-sitter-0.17.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Tree-sitter is a parser generator tool and an incremental parsing library." +HOMEPAGE="https://github.com/tree-sitter/tree-sitter" + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/${PN}/${PN}" +else + SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" + +PATCHES=( + "${FILESDIR}/${PN}-No-static-libs-gentoo.patch" +) + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/lib64" install +} diff --git a/dev-libs/tree-sitter/tree-sitter-9999.ebuild b/dev-libs/tree-sitter/tree-sitter-9999.ebuild new file mode 100644 index 000000000000..b50d6429cd9a --- /dev/null +++ b/dev-libs/tree-sitter/tree-sitter-9999.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Tree-sitter is a parser generator tool and an incremental parsing library." +HOMEPAGE="https://github.com/tree-sitter/tree-sitter" + +if [[ ${PV} == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/${PN}/${PN}" +else + SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" + +PATCHES=( + "${FILESDIR}/${PN}-No-static-libs-gentoo.patch" +) + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/lib64" install +} diff --git a/dev-libs/utfcpp/Manifest b/dev-libs/utfcpp/Manifest index eb0f6b3cda3c..3055ba566932 100644 --- a/dev-libs/utfcpp/Manifest +++ b/dev-libs/utfcpp/Manifest @@ -1 +1,3 @@ +DIST utfcpp-3.1.1.tar.gz 26374 BLAKE2B 93ad55c113c922e0105b509adf8dc1505e625bfeed0c60dabe7243ec288e3dd13b79b9382af2fff6daf780c5ebf9da32a492263d4998204222c1e446d16f4473 SHA512 720e2eba5c04f0bc4903a287138149a9cd432bc68bb163fe36b2e0d26d8bf616b4665f389b4a9c97af6ae7869e78973d97db976a4745512a241eebf774608997 +DIST utfcpp-3.1.2.tar.gz 26388 BLAKE2B f0ebf7f054c488259d2a409b2c5201b73e928901cf337cdc2a99a2f64deaf431ee60328b3b61e134d3cd49428eb0c921057ea248269029ef2838ed72dd8af7d7 SHA512 d43df19d9e8652291f1301a326ec0d592bad43d6ecf9086947037f0ae0c1e70c2d96082c48066639e2b7c57c0ea0e4782d6b215d017cf96a4c73ff3a15feec75 DIST utfcpp-3.1.tar.gz 25871 BLAKE2B 6bafb933b777e842375b3dc6b1b5bc41efb0e9f40bbd33ccbbaf07b57a28c4e485d596725297fc2de83c23fa3c66872519883727714d236f4a37e07ed4825fc9 SHA512 826ac7aa61215ac2144fa3f5edc7f291c3dd25dc69b0c82526840f4651f822515ec262915e1117d975e5c5dd729f6166806a5d397262f59a2b323eb7009671f5 diff --git a/dev-libs/utfcpp/utfcpp-3.1.1.ebuild b/dev-libs/utfcpp/utfcpp-3.1.1.ebuild new file mode 100644 index 000000000000..14032157c03c --- /dev/null +++ b/dev-libs/utfcpp/utfcpp-3.1.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 2015-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit cmake + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/nemtrif/utfcpp" + EGIT_SUBMODULES=() +fi + +DESCRIPTION="UTF-8 C++ library" +HOMEPAGE="https://github.com/nemtrif/utfcpp" +if [[ "${PV}" == "9999" ]]; then + SRC_URI="" +else + SRC_URI="https://github.com/nemtrif/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +fi + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="" +DEPEND="test? ( dev-cpp/gtest )" +RDEPEND="" + +src_prepare() { + sed -e "/add_subdirectory(extern\/gtest)/d" -i CMakeLists.txt || die + sed -e "s/gtest_main/gtest &/" -i tests/CMakeLists.txt || die + + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DUTF8_SAMPLES=OFF + -DUTF8_TESTS=$(usex test ON OFF) + ) + + cmake_src_configure +} diff --git a/dev-libs/utfcpp/utfcpp-3.1.2.ebuild b/dev-libs/utfcpp/utfcpp-3.1.2.ebuild new file mode 100644 index 000000000000..14032157c03c --- /dev/null +++ b/dev-libs/utfcpp/utfcpp-3.1.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 2015-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit cmake + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/nemtrif/utfcpp" + EGIT_SUBMODULES=() +fi + +DESCRIPTION="UTF-8 C++ library" +HOMEPAGE="https://github.com/nemtrif/utfcpp" +if [[ "${PV}" == "9999" ]]; then + SRC_URI="" +else + SRC_URI="https://github.com/nemtrif/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +fi + +LICENSE="Boost-1.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="" +DEPEND="test? ( dev-cpp/gtest )" +RDEPEND="" + +src_prepare() { + sed -e "/add_subdirectory(extern\/gtest)/d" -i CMakeLists.txt || die + sed -e "s/gtest_main/gtest &/" -i tests/CMakeLists.txt || die + + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DUTF8_SAMPLES=OFF + -DUTF8_TESTS=$(usex test ON OFF) + ) + + cmake_src_configure +} diff --git a/dev-libs/utfcpp/utfcpp-3.1.ebuild b/dev-libs/utfcpp/utfcpp-3.1.ebuild index 5afa6b050632..65c032f5f0ab 100644 --- a/dev-libs/utfcpp/utfcpp-3.1.ebuild +++ b/dev-libs/utfcpp/utfcpp-3.1.ebuild @@ -3,7 +3,7 @@ EAPI="7" -inherit cmake-utils +inherit cmake if [[ "${PV}" == "9999" ]]; then inherit git-r3 @@ -34,7 +34,7 @@ src_prepare() { sed -e "/add_subdirectory(extern\/gtest)/d" -i CMakeLists.txt || die sed -e "s/gtest_main/gtest &/" -i tests/CMakeLists.txt || die - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -43,5 +43,5 @@ src_configure() { -DUTF8_TESTS=$(usex test ON OFF) ) - cmake-utils_src_configure + cmake_src_configure } diff --git a/dev-libs/utfcpp/utfcpp-9999.ebuild b/dev-libs/utfcpp/utfcpp-9999.ebuild index 2b6fa17b5966..ca5002a61255 100644 --- a/dev-libs/utfcpp/utfcpp-9999.ebuild +++ b/dev-libs/utfcpp/utfcpp-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 2015-2019 Gentoo Authors +# Copyright 2015-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" -inherit cmake-utils +inherit cmake if [[ "${PV}" == "9999" ]]; then inherit git-r3 @@ -34,7 +34,7 @@ src_prepare() { sed -e "/add_subdirectory(extern\/gtest)/d" -i CMakeLists.txt || die sed -e "s/gtest_main/gtest &/" -i tests/CMakeLists.txt || die - cmake-utils_src_prepare + cmake_src_prepare } src_configure() { @@ -43,5 +43,5 @@ src_configure() { -DUTF8_TESTS=$(usex test ON OFF) ) - cmake-utils_src_configure + cmake_src_configure } diff --git a/dev-lua/Manifest.gz b/dev-lua/Manifest.gz index 39e7cd1eb0be..2848699de0fe 100644 Binary files a/dev-lua/Manifest.gz and b/dev-lua/Manifest.gz differ diff --git a/dev-lua/luasec/luasec-0.9-r100.ebuild b/dev-lua/luasec/luasec-0.9-r100.ebuild new file mode 100644 index 000000000000..d908b664a4c5 --- /dev/null +++ b/dev-lua/luasec/luasec-0.9-r100.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..3} ) +LUA_REQ_USE="deprecated" + +inherit lua toolchain-funcs + +DESCRIPTION="Lua binding for OpenSSL library to provide TLS/SSL communication" +HOMEPAGE="https://github.com/brunoos/luasec" +SRC_URI="https://github.com/brunoos/luasec/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="libressl" +REQUIRED_USE="${LUA_REQUIRED_USE}" + +RDEPEND=" + >=dev-lua/luasocket-3.0_rc1_p20200328-r100 + libressl? ( dev-libs/libressl:= ) + !libressl? ( dev-libs/openssl:0= ) + ${LUA_DEPS} +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + + # Respect users CFLAGS + sed -e 's/-O2//g' -i src/Makefile || die +} + +lua_src_compile() { + # Clean project, to compile it for every lua slot + emake clean + + # Generate SSL options + ${ELUA} src/options.lua -g /usr/include/openssl/ssl.h > src/options.c || die + + local myemakeargs=( + "CC=$(tc-getCC)" + "LD=$(tc-getCC)" + "INC_PATH=-I$(lua_get_include_dir)" + "LIB_PATH=$(lua_get_CFLAGS)" + "MYCFLAGS=${CFLAGS}" + "MYLDFLAGS=${LDFLAGS}" + ) + + emake "${myemakeargs[@]}" linux + + # Copy module to match the choosen LUA implementation + cp "src/ssl.so" "src/ssl-${ELUA}.so" || die +} + +src_compile() { + lua_foreach_impl lua_src_compile +} + +lua_src_install() { + # Use correct module for the choosen LUA implementation + cp "src/ssl-${ELUA}.so" "src/ssl.so" || die + + local emakeargs=( + "DESTDIR=${ED}" + "LUAPATH=$(lua_get_lmod_dir)" + "LUACPATH=$(lua_get_cmod_dir)" + ) + + emake "${emakeargs[@]}" install +} + +src_install() { + lua_foreach_impl lua_src_install + + einstalldocs +} diff --git a/dev-lua/luasocket/Manifest b/dev-lua/luasocket/Manifest index e050ea632440..ee78a7331866 100644 --- a/dev-lua/luasocket/Manifest +++ b/dev-lua/luasocket/Manifest @@ -1 +1,2 @@ DIST luasocket-3.0_rc1.tar.gz 328598 BLAKE2B 9cc382d909cfa018edec237ac901220cccb0cf0e3a775b9cd8083487ace42a94dfd280f9423097f677f37ee9f85afcfff844250cd49c0f813b7c50c3adc532c5 SHA512 f6efce259aaacaa11472911471f8a13b118fe009b8953a82c6aa18b9ec829cd1293180904e56935cb130d36d267e3f27c91db2d78e03f7488f3e100571ed0540 +DIST luasocket-3.0_rc1_p20200328.tar.gz 335628 BLAKE2B 9e5d3e415337903b689705669b586c4481179a319b4e3428823c8f442d04f26db86bfeca66db7e58d157e31431c31e4f687403f7163b75f57d6f87cdb934717f SHA512 bdf7086a0504b0072b9cfd1266fc4ae89504053801722859a426f567fca00ed76f4c295c2a3a968e93f0036d9b792cf97561e9baa82c09ea23999cfd473227eb diff --git a/dev-lua/luasocket/luasocket-3.0_rc1_p20200328-r100.ebuild b/dev-lua/luasocket/luasocket-3.0_rc1_p20200328-r100.ebuild new file mode 100644 index 000000000000..479cb3ff4eef --- /dev/null +++ b/dev-lua/luasocket/luasocket-3.0_rc1_p20200328-r100.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGIT_COMMIT="5b18e475f38fcf28429b1cc4b17baee3b9793a62" +LUA_COMPAT=( lua5-{1..3} ) +LUA_REQ_USE="${MULTILIB_USEDEP}" + +inherit flag-o-matic lua multilib multilib-minimal toolchain-funcs + +DESCRIPTION="Networking support library for the Lua language" +HOMEPAGE=" + http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/ + https://github.com/diegonehab/luasocket +" +SRC_URI="https://github.com/diegonehab/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${EGIT_COMMIT}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" +REQUIRED_USE="${LUA_REQUIRED_USE}" +RESTRICT="test" + +RDEPEND="${LUA_DEPS}" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +HTML_DOCS="doc/." + +src_prepare() { + default + + # Respect users CFLAGS + sed -e 's/-O2 -ggdb3//g' -i src/makefile || die + + # Workaround for 32-bit systems + append-cflags -fno-stack-protector + + multilib_copy_sources +} + +lua_multilib_src_compile() { + # Clean project, to compile it for every lua slot + emake clean + + local myemakeargs=( + "CC=$(tc-getCC)" + "LD=$(tc-getCC)" + "LDFLAGS_linux=-O -fpic -shared -o" + "LUAINC_linux=$(lua_get_include_dir)" + "LUAV=${ELUA}" + "MIME_V=1.0.3-${ELUA}" + "MYCFLAGS=${CFLAGS}" + "MYLDFLAGS=${LDFLAGS}" + "SOCKET_V=3.0-rc1-${ELUA}" + ) + + emake "${myemakeargs[@]}" all +} + +multilib_src_compile() { + lua_foreach_impl lua_multilib_src_compile +} + +lua_multilib_src_install() { + local myemakeargs=( + "CDIR=$(lua_get_cmod_dir)" + "DESTDIR=${ED}" + "LDIR=$(lua_get_lmod_dir)" + "LUAPREFIX_linux=" + "MIME_V=1.0.3-${ELUA}" + "SOCKET_V=3.0-rc1-${ELUA}" + ) + + emake "${myemakeargs[@]}" install + emake "${myemakeargs[@]}" install-unix + + insinto "$(lua_get_include_dir)"/luasocket + doins src/*.h +} + +multilib_src_install() { + lua_foreach_impl lua_multilib_src_install +} + +multilib_src_install_all() { + einstalldocs +} diff --git a/dev-lua/luasocket/luasocket-3.0_rc1_p20200328.ebuild b/dev-lua/luasocket/luasocket-3.0_rc1_p20200328.ebuild new file mode 100644 index 000000000000..4591859cc608 --- /dev/null +++ b/dev-lua/luasocket/luasocket-3.0_rc1_p20200328.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +EGIT_COMMIT="5b18e475f38fcf28429b1cc4b17baee3b9793a62" +LUA_REQ_USE="${MULTILIB_USEDEP}" + +inherit flag-o-matic multilib multilib-minimal toolchain-funcs + +DESCRIPTION="Networking support library for the Lua language" +HOMEPAGE=" + http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/ + https://github.com/diegonehab/luasocket +" +SRC_URI="https://github.com/diegonehab/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${EGIT_COMMIT}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" +RESTRICT="test" + +RDEPEND=">=dev-lang/lua-5.1.5-r2:0[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +HTML_DOCS="doc/." + +src_prepare() { + default + + # Respect users CFLAGS + sed -e 's/-O2 -ggdb3//g' -i src/makefile || die + + # Workaround for 32-bit systems + append-cflags -fno-stack-protector + + multilib_copy_sources +} + +multilib_src_compile() { + local myemakeargs=( + "CC=$(tc-getCC)" + "LD=$(tc-getCC)" + "LDFLAGS_linux=-O -fpic -shared -o" + "LUAINC_linux=$($(tc-getPKG_CONFIG) --variable INSTALL_INC lua)/lua$($(tc-getPKG_CONFIG) --variable V lua)" + "LUAV=$($(tc-getPKG_CONFIG) --variable V lua)" + "MYCFLAGS=${CFLAGS}" + "MYLDFLAGS=${LDFLAGS}" + ) + + emake "${myemakeargs[@]}" all +} + +multilib_src_install() { + local myemakeargs=( + "CDIR=$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)" + "DESTDIR=${ED}" + "LDIR=$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)" + "LUAPREFIX_linux=" + ) + + emake "${myemakeargs[@]}" install + emake "${myemakeargs[@]}" install-unix + + insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_INC lua)/$($(tc-getPKG_CONFIG) --variable V lua)"/luasocket + doins src/*.h +} + +multilib_src_install_all() { + einstalldocs +} diff --git a/dev-lua/luasocket/metadata.xml b/dev-lua/luasocket/metadata.xml index 2af4fc2a4ace..a173d5088869 100644 --- a/dev-lua/luasocket/metadata.xml +++ b/dev-lua/luasocket/metadata.xml @@ -1,15 +1,19 @@ - - azamat.hackimov@gmail.com - Azamat H. Hackimov - - - proxy-maint@gentoo.org - Proxy Maintainers - - - diegonehab/luasocket - + + azamat.hackimov@gmail.com + Azamat H. Hackimov + + + proxy-maint@gentoo.org + Proxy Maintainers + + + conikost@gentoo.org + Conrad Kostecki + + + diegonehab/luasocket + diff --git a/dev-ml/Manifest.gz b/dev-ml/Manifest.gz index c58d31789611..00e253ee4d40 100644 Binary files a/dev-ml/Manifest.gz and b/dev-ml/Manifest.gz differ diff --git a/dev-ml/ocaml-gettext/files/oc43.patch b/dev-ml/ocaml-gettext/files/oc43.patch deleted file mode 100644 index 41996b941122..000000000000 --- a/dev-ml/ocaml-gettext/files/oc43.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: ocaml-gettext-0.3.5/ocaml-gettext/Makefile -=================================================================== ---- ocaml-gettext-0.3.5.orig/ocaml-gettext/Makefile -+++ ocaml-gettext-0.3.5/ocaml-gettext/Makefile -@@ -64,7 +64,6 @@ uninstall: ocaml-xgettext-uninstall - ocaml-xgettext: $(BUILDBIN) - $(OCAMLC) \ - -I +camlp4 dynlink.cma camlp4lib.cma \ -- unix.cma \ - `$(OCAMLFIND) query -r -predicates byte gettext.extract -i-format` \ - `$(OCAMLFIND) query -r -predicates byte gettext.extract -a-format` \ - `$(OCAMLFIND) query -r -predicates byte gettext.extract -o-format` \ diff --git a/dev-perl/Manifest.gz b/dev-perl/Manifest.gz index 9d2dcb88b9a9..0062ea35f96d 100644 Binary files a/dev-perl/Manifest.gz and b/dev-perl/Manifest.gz differ diff --git a/dev-perl/Search-Xapian/Manifest b/dev-perl/Search-Xapian/Manifest index b78953bd59b0..c9f2cf242401 100644 --- a/dev-perl/Search-Xapian/Manifest +++ b/dev-perl/Search-Xapian/Manifest @@ -1,3 +1,3 @@ DIST Search-Xapian-1.2.25.0.tar.gz 72097 BLAKE2B 9e9f54718bf597c7592cc936e23ce4684ba4104f890ee7216e303af9a075eb895459a46d17bd2c32820eb436545a8a9e008b17f83fa586bf3e9160d80813872d SHA512 2bb0bea59ddfd8159df0b3051034ca28478cb74832cfe7a103b8a4dbeddbd41f6223be6ad56eb3dcb8c7a785d2f7d500844c41f35da3997a843b3ba624a4e795 DIST Search-Xapian-1.2.25.2.tar.gz 72424 BLAKE2B b959e1f111def3660f17669e49dfa9bff95bc421bdde35dac22d5cad4d350057cf7b077f030797158c3ae6c7c292775f44e88381e685b9fb5e8364bef3d03403 SHA512 92b92f28cf50d162905ef230a28956a4e57d3baca81d227751e905756239be0f843b58f38a8dfdb6c8b6ae827e37a60d7df7022cfab43164293223dd430d4d2d -DIST Search-Xapian-1.2.25.3.tar.gz 73023 BLAKE2B a3a6c04c25ac623db1c5c0e873ff698382e3e610e90a6731b1fa6b4d8585181620bafa7431c6e133780e610011cfe50654244749d5e3e302b8b1d2e576074de2 SHA512 6e82a63b7fd7f1692e292edb1defc4cc2067e911780fa9698db29be408b9aa898a6d4c0f4a6bb143805632a1daf51c4a97cb62fb37adfbb0b77818773169bb6a +DIST Search-Xapian-1.2.25.4.tar.gz 75336 BLAKE2B 06e3fe3871f00c173f4c24303b33eb046867dda1274535c1d22b98027804df19b3dc6b80d6213c2090e05362c508d0e41b55cdc165ccedd8a45bfff19d4fe07b SHA512 14d34641583fb3cce3e7cd4b16e5001be9c7808d07e4942b4842196f36906649053d1ff522a5a1b82200ecd714c55afaf7bd653bf7df9a462db91d05cd12cb01 diff --git a/dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild b/dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild similarity index 100% rename from dev-perl/Search-Xapian/Search-Xapian-1.2.25.3.ebuild rename to dev-perl/Search-Xapian/Search-Xapian-1.2.25.4.ebuild diff --git a/dev-php/Manifest.gz b/dev-php/Manifest.gz index 035b0d45dbc5..a3a83475aac0 100644 Binary files a/dev-php/Manifest.gz and b/dev-php/Manifest.gz differ diff --git a/dev-php/PEAR-Archive_Tar/Manifest b/dev-php/PEAR-Archive_Tar/Manifest index 4aeaf6a7af59..7084a6282408 100644 --- a/dev-php/PEAR-Archive_Tar/Manifest +++ b/dev-php/PEAR-Archive_Tar/Manifest @@ -1 +1,2 @@ DIST Archive_Tar-1.4.10.tgz 21481 BLAKE2B d6658f344baee4c70aedc7c8e59d8e4e481a5c2fbd72920d65943e2d9cf3a6d955a77c62c58fe3391a9250206f105d96b2cf186cefd13a261269d29b27722350 SHA512 265a00b0e71e718a0a0f1f5640b2a95c3b5f3a62235477a22ef762109cb2f6dbdaa0319f2f5aed5fdd9b4f52317bf761b3fcefd03a82c941e71e04c1a3e4d2a9 +DIST Archive_Tar-1.4.11.tgz 21556 BLAKE2B f7e450f4581400159099dba023192ec4026da8867c675119001085651c20315523a58180e0ccd4528e3b1764e222945055702e0fd8e42bb5976b891230351f29 SHA512 a67ff191eb1d814094fc752b58b5d4b4d3db0fd2476fce403f8e5cac49a35fd1219167817dc84d6f957af87d326435aef000e2e0b16357a0d051ab407b76d2cc diff --git a/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.11.ebuild b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.11.ebuild new file mode 100644 index 000000000000..ec77b9463d55 --- /dev/null +++ b/dev-php/PEAR-Archive_Tar/PEAR-Archive_Tar-1.4.11.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="${PN/PEAR-/}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Tar file management class" +HOMEPAGE="https://pear.php.net/package/Archive_Tar" +SRC_URI="https://pear.php.net/get/${MY_P}.tgz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +# bzip2 and zlib are needed for compressed tarballs, and there's one +# call to preg_match to test paths against a pattern of files and +# directories that will be ignored. +RDEPEND="dev-lang/php:*[bzip2,pcre(+),zlib]" +PDEPEND="dev-php/PEAR-PEAR" +DEPEND="" + +S="${WORKDIR}/${MY_P}" + +src_install() { + insinto /usr/share/php + doins -r Archive + + dodoc docs/* +} diff --git a/dev-php/PEAR-Archive_Tar/metadata.xml b/dev-php/PEAR-Archive_Tar/metadata.xml index 75a6ba446036..76c401f1f8cd 100644 --- a/dev-php/PEAR-Archive_Tar/metadata.xml +++ b/dev-php/PEAR-Archive_Tar/metadata.xml @@ -8,4 +8,5 @@ Archive_Tar + diff --git a/dev-python/Manifest.gz b/dev-python/Manifest.gz index 198b121abd3f..7d0f63955a89 100644 Binary files a/dev-python/Manifest.gz and b/dev-python/Manifest.gz differ diff --git a/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild b/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild index 512eb0dc6fad..6555d13515e2 100644 --- a/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild +++ b/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/fantix/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86" DEPEND="test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] )" RDEPEND="dev-python/contextvars[${PYTHON_USEDEP}]" diff --git a/dev-python/aiohttp/aiohttp-3.7.2.ebuild b/dev-python/aiohttp/aiohttp-3.7.2.ebuild index 66cb76f26024..0969fb26d76f 100644 --- a/dev-python/aiohttp/aiohttp-3.7.2.ebuild +++ b/dev-python/aiohttp/aiohttp-3.7.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="doc test" RESTRICT="!test? ( test )" diff --git a/dev-python/asttokens/asttokens-2.0.4.ebuild b/dev-python/asttokens/asttokens-2.0.4.ebuild index 8edc051f2c99..d33cd9b5d356 100644 --- a/dev-python/asttokens/asttokens-2.0.4.ebuild +++ b/dev-python/asttokens/asttokens-2.0.4.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86" RDEPEND="dev-python/six[${PYTHON_USEDEP}]" BDEPEND=" diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest index a92e64e9bc1e..b77e066f9672 100644 --- a/dev-python/boto3/Manifest +++ b/dev-python/boto3/Manifest @@ -2,4 +2,6 @@ DIST boto3-1.15.18.tar.gz 336927 BLAKE2B 0ddc7fbd0fffcbeafeee7b9aa0f699087369f31 DIST boto3-1.16.16.tar.gz 338959 BLAKE2B e34c14b89ddd402e4ca7037e1fdbb5121ff9eb2c7fefb67eabadb378cc4f8e5f5ddc3c933d366d086155b4b16319ed9e7d85af21bca1da0f17be3c2171dc9c1a SHA512 b0d0cf8877ac66e28f925c3eda6e02c845c8753c96ebb8684d7eb3a3e82ac6323ae8775715bcf7c70889921e53b0224561460cbc0c95ae56a17d606c75245971 DIST boto3-1.16.20.tar.gz 339432 BLAKE2B fefe33be5baca95880a52856a6d6fb166895951b7eb83500420ef07058d91b465c2acc4ea5eb72a46b4de013fcd9136df2d60398cb75a46f199415ff43e366bb SHA512 7e88a70d7ae9065c3b749510b3bbfc36e2645abedf173cd8be79666895ede34f98c9a33bbe43b05843a4c809a29b4d2d925fd2398ab778f0f096597e98b204bc DIST boto3-1.16.21.tar.gz 339637 BLAKE2B 122025941b38dd94ccea22a5561ccac29f3033320da4e3f332a1200c84215bef1a320dc36ce59733265816d867c409449a32830df4f20fa08f943ca754fb9257 SHA512 b811e153b9c356e9e414e8a82076000d885e29778273d9e839d73e2b35405d23ae8236bb57c657c0f2ee6def48636bf024548cdc0f6e5e642c7b97d97b76307a +DIST boto3-1.16.22.tar.gz 339781 BLAKE2B d6703055d57f9d3486218efc3014439a1ca1335d28281793ddcf2c37dd42c1557e85503841e0d7306168d0eb546dbfc16fabeb53a7a00ee32b3b10e74cbfff94 SHA512 dd0df65efea8dc2138b1bfa3a1eb4e40c8e3408f34a36b38cd51346debb01a3e5179b841adbef6cf6fe1535adee9f09d19ff40ae284cfd3c2fabb42a4113f5a6 +DIST boto3-1.16.23.tar.gz 339889 BLAKE2B 0a41c084beba187a89ddf8a743c6dc4f3663aebae035468a76967e4b732abdad496bb2f0a516b5af76affa18f99d4c1a3405d0e152fb41fb1fae22a6728542e6 SHA512 942b0a540cdd6ed744bc1b4285ca8d9e3121193a59717fa247431d232f25cf042625abf82709cecef20611feb68735415be2e3187ebd4e6a1efd7488c0db14ff DIST boto3-1.16.9.tar.gz 337905 BLAKE2B ed01e28fd7e62e5e5028307c93f92004bfbecffa77bc2ba1d6574b92ec2c515d910eb5107ac5ee03e0aca909f97f379aa65b5f839c8067634fa69266c58de33f SHA512 7343b8432788ef981819f91fe2ba27c4ec3947d01ff55914f7c89607250ecf60db2da8d25c8a2c7001ef546a9abed4cb744c5937ca09497aa1a983049648bd5e diff --git a/dev-python/boto3/boto3-1.16.22.ebuild b/dev-python/boto3/boto3-1.16.22.ebuild new file mode 100644 index 000000000000..ccc99e1c2415 --- /dev/null +++ b/dev-python/boto3/boto3-1.16.22.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) +DISTUTILS_USE_SETUPTOOLS=bdepend +inherit distutils-r1 + +DESCRIPTION="The AWS SDK for Python" +HOMEPAGE="https://github.com/boto/boto3" +LICENSE="Apache-2.0" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/boto/boto3" + inherit git-r3 + BOTOCORE_PV=${PV} +else + SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + + # botocore is x.(y+3).z + BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" +fi + +RDEPEND=" + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] + >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] + >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx docs/source \ + 'dev-python/guzzle_sphinx_theme' +distutils_enable_tests nose + +python_prepare_all() { + # don't lock versions to narrow ranges + sed -e '/botocore/ d' \ + -e '/jmespath/ d' \ + -e '/s3transfer/ d' \ + -i setup.py || die + + # prevent an infinite loop + rm tests/functional/docs/test_smoke.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" +} diff --git a/dev-python/boto3/boto3-1.16.23.ebuild b/dev-python/boto3/boto3-1.16.23.ebuild new file mode 100644 index 000000000000..ccc99e1c2415 --- /dev/null +++ b/dev-python/boto3/boto3-1.16.23.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) +DISTUTILS_USE_SETUPTOOLS=bdepend +inherit distutils-r1 + +DESCRIPTION="The AWS SDK for Python" +HOMEPAGE="https://github.com/boto/boto3" +LICENSE="Apache-2.0" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/boto/boto3" + inherit git-r3 + BOTOCORE_PV=${PV} +else + SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + + # botocore is x.(y+3).z + BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)" +fi + +RDEPEND=" + >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}] + >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}] + >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + ) +" + +distutils_enable_sphinx docs/source \ + 'dev-python/guzzle_sphinx_theme' +distutils_enable_tests nose + +python_prepare_all() { + # don't lock versions to narrow ranges + sed -e '/botocore/ d' \ + -e '/jmespath/ d' \ + -e '/s3transfer/ d' \ + -i setup.py || die + + # prevent an infinite loop + rm tests/functional/docs/test_smoke.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + nosetests -v tests/unit/ tests/functional/ || die "test failed under ${EPYTHON}" +} diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest index 0aee042c9870..7963321d4200 100644 --- a/dev-python/botocore/Manifest +++ b/dev-python/botocore/Manifest @@ -2,4 +2,6 @@ DIST botocore-1.18.18.tar.gz 6942407 BLAKE2B e58183d5aa79a210d82c1dc21806c9c86f9 DIST botocore-1.19.16.tar.gz 7009239 BLAKE2B d582538f25c500297ab8a5ce3f054a5ba2f94d0d5f37d0aeee934943854bb5fc429e33040b56d1e06cfd93a51bd917c96dac9432c5b84d59513b47af52285ac1 SHA512 d36b580e0ad56143b9b36679d17910fcdb49ec132143441d6a078797f79bec1fd6f06b2afb8542e16e844fb892c2902aeab1cfcf66a8ddb9ecbcc92be4ced29d DIST botocore-1.19.20.tar.gz 7055105 BLAKE2B f25a6aff2073d8fa8de0c787b34239ee434c0616b2666b7191c5303e6d76389c883aca9a2b03243caf989f270f981bb69873ddbbf21a6afdd1073d8a6bb959dd SHA512 24c0e6e6a67d03374f86608762030e42cd14f2010763c57ed06d74a6a514a81dd25f9681bec890795ed6ec1f488aafeaeb3175e7264deb72438dde35e6e8398d DIST botocore-1.19.21.tar.gz 7060392 BLAKE2B 2539996a3aed89d9e76143c4e899cc09b278ef5fb23ea3b8cacc4af4a3b5287043f193e40ab07937147db70085aef688c8fe432124a0c0fe89f1ae7e2f003bec SHA512 43a656c29944dc3b0c84f321d251b3d135634ac8cd639a9c13a1f04a0e0e1421bd0c2ed8200f7e032faab6b45d7ea64f03991a90e5db837542501ae9f1843d6e +DIST botocore-1.19.22.tar.gz 7073938 BLAKE2B 41ec38e7abdff5e6fd4530dd39522a13d10c7048564002f5c4c99f9c13cf25b3b4a108ca651bee44f1e00d0b8b560e7c364021793a7fd50e3501ef54c153960e SHA512 69efd9f01cb9cb83d4234be6ad46d2f2584bfd274a96c27279c96d717de4ea83e8bb1b92baa29b06aacf21e0af9e40ab216e5ac7ffe004cc4a53bfcf6c32f59e +DIST botocore-1.19.23.tar.gz 7090433 BLAKE2B c5b6801e169b7c0325b33b005be0e4096442d5f9e09e7223d6668cdbd7a68b977284b4e660be5dfbf30ae661202691866dff2b3b1639d7467b3ff21ed6c90702 SHA512 9e984c48109f17126e380b0194e998c65ef02cba83ce3be6b3398a5913a41e23607779c82b90814d8193abdeb3a6cecedb443a6fc5d8d6b7ccb68ed0a0e0bc37 DIST botocore-1.19.9.tar.gz 6972834 BLAKE2B 3407c056c7995cc1ccb1b5b4c5b3a6254e38672b52e7889a7a022520283416e4dfcabd05c8ca0ed78e4624c7a20c9f43bfde87a76d7a72660b4c95256e4f9ca4 SHA512 8433f22ae7652e524a82da8d2ccda48da9eef44788333898b7526335d57a7757b80754f0d5c6a2c84ec3bde2ec9fc7da5cf872cbda7286f620b4f4878fe9a583 diff --git a/dev-python/botocore/botocore-1.19.22.ebuild b/dev-python/botocore/botocore-1.19.22.ebuild new file mode 100644 index 000000000000..ca40b64d111f --- /dev/null +++ b/dev-python/botocore/botocore-1.19.22.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="Low-level, data-driven core of boto 3" +HOMEPAGE="https://github.com/boto/botocore" +LICENSE="Apache-2.0" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/boto/botocore" + inherit git-r3 +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +fi + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + dev-python/jmespath[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/jsonschema[${PYTHON_USEDEP}] + ) +" + +PATCHES=( + "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" +) + +distutils_enable_sphinx docs/source \ + 'dev-python/guzzle_sphinx_theme' +distutils_enable_tests nose + +src_prepare() { + # unpin deps + sed -i -e "s:>=.*':':" setup.py || die + # very unstable + sed -i -e 's:test_stress_test_token_bucket:_&:' \ + tests/functional/retries/test_bucket.py || die + distutils-r1_src_prepare +} + +python_test() { + # note: suites need to be run separately as one of the unit tests + # seems to be leaking mocks and breaking a few functional tests + nosetests -v tests/unit || + die "unit tests failed under ${EPYTHON}" + nosetests -v tests/functional || + die "functional tests failed under ${EPYTHON}" +} diff --git a/dev-python/botocore/botocore-1.19.23.ebuild b/dev-python/botocore/botocore-1.19.23.ebuild new file mode 100644 index 000000000000..ca40b64d111f --- /dev/null +++ b/dev-python/botocore/botocore-1.19.23.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="Low-level, data-driven core of boto 3" +HOMEPAGE="https://github.com/boto/botocore" +LICENSE="Apache-2.0" +SLOT="0" + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/boto/botocore" + inherit git-r3 +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +fi + +RDEPEND=" + dev-python/six[${PYTHON_USEDEP}] + dev-python/jmespath[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/jsonschema[${PYTHON_USEDEP}] + ) +" + +PATCHES=( + "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch" +) + +distutils_enable_sphinx docs/source \ + 'dev-python/guzzle_sphinx_theme' +distutils_enable_tests nose + +src_prepare() { + # unpin deps + sed -i -e "s:>=.*':':" setup.py || die + # very unstable + sed -i -e 's:test_stress_test_token_bucket:_&:' \ + tests/functional/retries/test_bucket.py || die + distutils-r1_src_prepare +} + +python_test() { + # note: suites need to be run separately as one of the unit tests + # seems to be leaking mocks and breaking a few functional tests + nosetests -v tests/unit || + die "unit tests failed under ${EPYTHON}" + nosetests -v tests/functional || + die "functional tests failed under ${EPYTHON}" +} diff --git a/dev-python/executing/executing-0.5.3.ebuild b/dev-python/executing/executing-0.5.3.ebuild index 74e2e1504dcc..55499c0a2c0e 100644 --- a/dev-python/executing/executing-0.5.3.ebuild +++ b/dev-python/executing/executing-0.5.3.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86" # asttokens is optional runtime dep BDEPEND=" diff --git a/dev-python/fakeredis/fakeredis-1.4.3.ebuild b/dev-python/fakeredis/fakeredis-1.4.3.ebuild index 400a4e6c6370..989b57bc2d0b 100644 --- a/dev-python/fakeredis/fakeredis-1.4.3.ebuild +++ b/dev-python/fakeredis/fakeredis-1.4.3.ebuild @@ -16,7 +16,7 @@ SRC_URI=" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86" RDEPEND=" dev-python/redis-py[${PYTHON_USEDEP}] diff --git a/dev-python/flask-mongoengine/Manifest b/dev-python/flask-mongoengine/Manifest index 8219285ce808..5082bdcff310 100644 --- a/dev-python/flask-mongoengine/Manifest +++ b/dev-python/flask-mongoengine/Manifest @@ -1 +1,2 @@ DIST flask-mongoengine-0.9.5.gh.tar.gz 120281 BLAKE2B 454602e7e7f26db731379b01492c6cb1adf01369fd268236407c57753aeb68f17ce62d4c2e665e493d3c7c632e4f263af02b59e6580893afcc7b8659247fb42f SHA512 3588ae25e2f3643f5e240990f424b4f3754cea2f880b7b454c98afb3ea98fd81b783d74a45cf685fe59cfa8159b1ac39e840071f364ce98fb1a25cc9a09e0d5f +DIST flask-mongoengine-1.0.0.gh.tar.gz 123516 BLAKE2B 5dd6cf1d774973ef1883d824bdf467b53306773eff5f7016f6440a7ec55648012755a1270b8fca0974aff00dfb189c0f3f7d6985a01c098729517c0018513c8b SHA512 bd95a8248a972a41c92dc2711f866420aabba56062322801e473e0b347c95ad47da39439992ba6cf23a0981c422ae84756af3af95d1171acd6b321f9cbc63085 diff --git a/dev-python/flask-mongoengine/flask-mongoengine-1.0.0.ebuild b/dev-python/flask-mongoengine/flask-mongoengine-1.0.0.ebuild new file mode 100644 index 000000000000..37bd9cae8e24 --- /dev/null +++ b/dev-python/flask-mongoengine/flask-mongoengine-1.0.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) +inherit distutils-r1 + +DESCRIPTION="Flask support for MongoDB and with WTF model forms" +HOMEPAGE="https://pypi.org/project/flask-mongoengine/" +SRC_URI=" + https://github.com/MongoEngine/flask-mongoengine/archive/v${PV}.tar.gz + -> ${P}.gh.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +# TODO: make it spawn a local mongodb instance +RESTRICT="test" + +RDEPEND=">=dev-python/flask-1.1.2[${PYTHON_USEDEP}] + >=dev-python/mongoengine-0.20[${PYTHON_USEDEP}] + >=dev-python/flask-wtf-0.14.3[${PYTHON_USEDEP}]" + +distutils_enable_sphinx docs +distutils_enable_tests pytest + +python_prepare_all() { + sed -i -e '/addopts/d' setup.cfg || die + + # fails with mongomock installed + sed -e 's:test_connection__should_parse_mongo_mock_uri:_&:' \ + -i tests/test_connection.py || die + + distutils-r1_python_prepare_all +} diff --git a/dev-python/ifaddr/Manifest b/dev-python/ifaddr/Manifest index 72f8ee648008..d75dbe3f297e 100644 --- a/dev-python/ifaddr/Manifest +++ b/dev-python/ifaddr/Manifest @@ -1 +1,2 @@ DIST ifaddr-0.1.6.tar.gz 6526 BLAKE2B d30b955d42d0266a197214bbe16ff2a8b11e33b4305ae9ed128fca6719e2c86026c97b278b0abaf5f5f35f4c9b744e5b500b4a4c1783dede0ebd4aedff62803f SHA512 911f81c32e808b9e61f7e98b8c67dc9b40cb64de864843cd7239f08538c9ff7cd45c8f16428b2ce200ea5f213a539c7ed8479432e02feb5e82e917f838ee0cb6 +DIST ifaddr-0.1.7.tar.gz 9281 BLAKE2B 3f7d29b69462cbf592899f1b4035685d1e9bb4535b104e6e59b41fd51c4c2681d2502ad190dae633891aec90818bb330c1f8ea403be22d154d9e7de8a5a80dab SHA512 9a428dd6bb022c8f483b77df9e9301f96e9ba64207eda8b3956a7ca5993bfe97f222c451149851135d379db1a819c75d0834566f3b6501456b2f237b0645e300 diff --git a/dev-python/ifaddr/ifaddr-0.1.7.ebuild b/dev-python/ifaddr/ifaddr-0.1.7.ebuild new file mode 100644 index 000000000000..c125ab421907 --- /dev/null +++ b/dev-python/ifaddr/ifaddr-0.1.7.ebuild @@ -0,0 +1,18 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy3 python3_{6..9} ) + +inherit distutils-r1 + +DESCRIPTION="Enumerate IP addresses on the local network adapters" +HOMEPAGE="https://github.com/pydron/ifaddr" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" + +distutils_enable_tests pytest diff --git a/dev-python/immutables/Manifest b/dev-python/immutables/Manifest index 8f1838421886..58d1be513476 100644 --- a/dev-python/immutables/Manifest +++ b/dev-python/immutables/Manifest @@ -1,2 +1 @@ -DIST immutables-0.11.tar.gz 76589 BLAKE2B 64d7ac89dfe680d1fe78704c165a1fbb15559203980f1a8edd65fbd74589bf2038c799037189849a917555a67483e0cb352664b1d44f3ce161db6c88b878ae5a SHA512 fceb1feb5fd8de4444681cb89c6692206042d0f8f404d78848c379ca3afbb07425e2ba875f7b7cdb42bf126ea0b9f682c0b873c4867c5266cc77da28d29f6ab5 DIST immutables-0.14.tar.gz 79451 BLAKE2B b18b554536a92b6f23e4c8366161cd43c2bd75d81fc619bfc9760b265835c7fc729c797758f195bd50f81573c4c52d48449deabf19167321eabbbfdfd8961217 SHA512 244a1faab70d46333749abcc2a98f65802c656eb58b23353893a8d894aff4089ccf9ed43170aa0094d8ec2d59a0dc7014d8bf12ad1a044fc066b43ae968968ea diff --git a/dev-python/immutables/immutables-0.11.ebuild b/dev-python/immutables/immutables-0.11.ebuild deleted file mode 100644 index d2ef63b48f12..000000000000 --- a/dev-python/immutables/immutables-0.11.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2019-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6..9} ) -inherit distutils-r1 - -DESCRIPTION="A high-performance immutable mapping type for Python" -HOMEPAGE="https://github.com/MagicStack/immutables" -SRC_URI="https://github.com/MagicStack/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm64 ~ppc64 x86" - -distutils_enable_tests pytest diff --git a/dev-python/jaraco-packaging/Manifest b/dev-python/jaraco-packaging/Manifest index d0bd6c836512..5a0354192675 100644 --- a/dev-python/jaraco-packaging/Manifest +++ b/dev-python/jaraco-packaging/Manifest @@ -1 +1,2 @@ DIST jaraco.packaging-8.1.0.tar.gz 15322 BLAKE2B c354bec458a319bd9df0667c155203efa5c3de2d95218d0dd3a5878011d2d8fef694a490a2bac0035bff8daa18d1a3447c2c8dab7c0bd7bb09b62969f91d4709 SHA512 99996765cb047f2f0416d6afc4ff6ee0d84d03da0e07c7a7121518fbaf668f587c044f567c1d66a455372897ec1634ba5ee490552ac92064ca072e20b8f60a3b +DIST jaraco.packaging-8.1.1.tar.gz 14580 BLAKE2B 6ec709571d74a9c840652b565e42b5301ab1ad71df823df6fb972c110d7bc0dbfdbae0dd3cc7123b29076a42de0d2b716ef2bab8dd58ffeb2563a868d90bdc90 SHA512 c0724e8694c3019bf3be24d99c7cde6dca65851e288ae027eb0b0fdfde9e1260804db3f8690b3bf69abd1e1e50733178c0387a859b0d634e8096dc49537f5877 diff --git a/dev-python/jaraco-packaging/jaraco-packaging-8.1.1.ebuild b/dev-python/jaraco-packaging/jaraco-packaging-8.1.1.ebuild new file mode 100644 index 000000000000..3562cc7c22a5 --- /dev/null +++ b/dev-python/jaraco-packaging/jaraco-packaging-8.1.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( pypy3 python3_{6..9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit distutils-r1 + +MY_PN="${PN/-/.}" +DESCRIPTION="Tools to supplement packaging Python releases" +HOMEPAGE="https://github.com/jaraco/jaraco.packaging" +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +RDEPEND=" + $(python_gen_cond_dep 'dev-python/importlib_metadata[${PYTHON_USEDEP}]' pypy3 python3_{6,7}) + >=dev-python/namespace-jaraco-2[${PYTHON_USEDEP}] +" +DEPEND=" + dev-python/toml[${PYTHON_USEDEP}] + >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] +" + +distutils_enable_sphinx docs '>=dev-python/rst-linker-1.9' +distutils_enable_tests pytest + +python_test() { + # Override pytest options to skip flake8 + pytest -vv --override-ini="addopts=--doctest-modules" \ + || die "tests failed with ${EPYTHON}" +} + +# https://wiki.gentoo.org/wiki/Project:Python/Namespace_packages#File_collisions_between_pkgutil-style_packages +python_install() { + rm "${BUILD_DIR}"/lib/jaraco/__init__.py || die + # note: eclass may default to --skip-build in the future + distutils-r1_python_install --skip-build +} diff --git a/dev-python/jeepney/Manifest b/dev-python/jeepney/Manifest index fa22b3d99df9..a2155859b285 100644 --- a/dev-python/jeepney/Manifest +++ b/dev-python/jeepney/Manifest @@ -1,2 +1,3 @@ DIST jeepney-0.4.3.tar.gz 28121 BLAKE2B 2c9b5b5ec26a9af25d28af602827c73c8ec9377a88a4aa79b9a986675c1ef3f195763a338f3efa4ee371f7751dcf05a9f9cfed06c8d6677d81da3699773d5561 SHA512 bfb12c9259a57324759f8be44d1faf2c0535762e72db5f1370e64cb144c0fc537c9bc9cfb9b075932fb3a20e3ef4e0c990c10905cc5a69e3fb088e8de4193689 DIST jeepney-0.5.0.tar.gz 48460 BLAKE2B 5ce1fd0315ad839cf2e0ec5616a448da840d1d3b1720528a0cd858526815b062929ebdc92916820008969092bce470c88704deb96c6120c086f631d1312985b9 SHA512 ae80a363cac4944cb6a499450835176d63e29545b8025c6dd0241a08b35e7b2564beaab578cbba319799ec5530fd6fed7e9f910e401d68b46290617e5f739992 +DIST jeepney-0.6.0.tar.gz 49513 BLAKE2B e5f9b5104cf07dbcd2d40c2d22b690dfd56c456ab56daf44f4abee83f0bfe7e1dfbad797348044d51e3dc20fbc6ce68bf8df54f9c1e46d7a86ceb22d3ab30f8d SHA512 140be9dd28ed853d2d41b6a8bbeb2f22c0270ce7bf33b943ec2ac010db17d4f06e253fa8637fbbb3044fe9ffdbfa1e15f0c663eb44bdd538f8c47c2e7dab3ca5 diff --git a/dev-python/jeepney/jeepney-0.6.0.ebuild b/dev-python/jeepney/jeepney-0.6.0.ebuild new file mode 100644 index 000000000000..1c412f4100c2 --- /dev/null +++ b/dev-python/jeepney/jeepney-0.6.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=no +PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="Low-level, pure Python DBus protocol wrapper" +HOMEPAGE="https://gitlab.com/takluyver/jeepney" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86" +IUSE="examples" + +BDEPEND=" + test? ( + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/testpath[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme + +src_prepare() { + rm jeepney/io/tests/test_trio.py || die + distutils-r1_src_prepare +} + +python_install_all() { + if use examples; then + docompress -x "/usr/share/doc/${PF}/examples" + dodoc -r examples + fi + distutils-r1_python_install_all +} diff --git a/dev-python/miniupnpc/Manifest b/dev-python/miniupnpc/Manifest index e8a90f1282f2..eace9f0adc8e 100644 --- a/dev-python/miniupnpc/Manifest +++ b/dev-python/miniupnpc/Manifest @@ -1,5 +1,3 @@ -DIST miniupnpc-2.1.20191224.tar.gz 94740 BLAKE2B 85c0b3eb678685bc7192dbee9440ec5f5be80cbac4d6a4e0a6473662c66f05ef512322cd535a142ffe16d3099a86f78ea70645a7eb2979c373e7a486aeab0cd5 SHA512 d362f914ce9177c1bc46f1f3ae59069c61c0c9c1b6ea7e78003d6b46445d3550835ffc541c2649b5fbc997d035357b461148edb3648135f33d0ce98b54961917 -DIST miniupnpc-2.1.20191224.tar.gz.sig 543 BLAKE2B ddbde04faa7bce62fdbb5b555bda9dc9ff69f09cc97442049adc787a03ec91824f14cdddaef6e577cf8d08fa96202fc792333b8dab7e6e8c30847fa9302a35d0 SHA512 b8885d2002259c95ede7ab57aaf82db83c2bd7ace3d0986179efac4245ffd42161049e0167a9ac1ff18de6c8df4d39356f0fb6aa6dada7523a238b4db4838887 DIST miniupnpc-2.1.20201016.tar.gz 97682 BLAKE2B 2c98f71ff7262a24a69a9a4af411dbeb58c20ec4181bca8bbdd61c628bf5bd49f7e9b763b73ffb5d3508b5b545a0c918828ead2a376b57b8ea5051cd7b8e9c13 SHA512 d619f7e205cac68137020fab31e8bdaeebd09eeaca5e42e1e03a9e0085a64d635ec896862a488b0d57798d1e6ce96e2ba5652f60c0b8df9fc866eea90baea152 DIST miniupnpc-2.1.20201016.tar.gz.sig 543 BLAKE2B b8ddcadb58e7b8dc4646ea1ac4e10331fe70a5b9a27902dd5ad09ac306605160b63f2e21d96eda4aa0f77485800cb9c5aa110f215dbe3536a9f6ec1c4a5e9ed9 SHA512 fb7886d4198bd2ae1eeff293152ff509e7ebe6ff0f9b3c20d5824f7ca9f65091a61db2bc0a8ac9fb0449994aba594cff3bf6c556876dbb47d593ecf8b7b26d10 DIST miniupnpc-2.2.0.tar.gz 98348 BLAKE2B 3464dc7f0b5416b558d0dd49121f3b851d9808a516c19d4f99fdb205e20149f27ef495d9f8da09ad3a28656580bfc16d1cf99ef993e41e9600cfe427b4a776d2 SHA512 b5bb674f162cae3d9e0205a9cdf6acc1fb334ab8ac5330be924411a8fd46833fb916d09f947d1e40d05224df7df1ecf6d812037185690e5022287c2024eb183f diff --git a/dev-python/miniupnpc/miniupnpc-2.1.20191224.ebuild b/dev-python/miniupnpc/miniupnpc-2.1.20191224.ebuild deleted file mode 100644 index e2122994dfda..000000000000 --- a/dev-python/miniupnpc/miniupnpc-2.1.20191224.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) - -inherit distutils-r1 verify-sig - -DESCRIPTION="Python bindings for UPnP client library" -HOMEPAGE="http://miniupnp.free.fr/" -SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz - verify-sig? ( http://miniupnp.free.fr/files/${P}.tar.gz.sig )" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="" - -RDEPEND=">=net-libs/miniupnpc-${PV}:0=" -DEPEND="${RDEPEND}" -BDEPEND="verify-sig? ( app-crypt/openpgp-keys-miniupnp )" - -VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/miniupnp.asc - -PATCHES=( - "${FILESDIR}"/miniupnpc-2.0.20171102-shared-lib.patch -) - -# DOCS are installed by net-libs/miniupnpc. -DOCS=() - -# Example test command: -# python -c 'import miniupnpc; u = miniupnpc.UPnP(); u.discover(); u.selectigd(); print(u.externalipaddress())' diff --git a/dev-python/mongoengine/Manifest b/dev-python/mongoengine/Manifest index 318deff5f4f5..d3d7786870dc 100644 --- a/dev-python/mongoengine/Manifest +++ b/dev-python/mongoengine/Manifest @@ -1 +1,2 @@ DIST mongoengine-0.20.0.tar.gz 311698 BLAKE2B 11bae8d342a77bcc241884beb92d67a6d4f7112d0af3a467196eb94233b003aa27d019ab346140ce7430b4019879c8c86e01f3067677254559243b6d1f0ddc80 SHA512 ef973af9893f6e53811e1a47a131989f5a057af04ab9d512059f968af89fcd23f05d910c7de03330b5f4771db8e11ea2e48060f95ed790f8d238df6c6f7b9306 +DIST mongoengine-0.21.0.tar.gz 320173 BLAKE2B 6c53c8dd967209039a3c2b6e279e6a27cf7073a6284b0df70aff25004c8499e88088d934eadf2e23dc3f43cd2ebc0d3c202cfbee618772b8a794a6ef933a9a75 SHA512 37642e9c9333fb4480262e916d678ef04a1f839b62e7d58528485b7df7cb9b22d3cb0b093084fcb92e331698c7d5bf2411df5d0c6e6b9324748189b9084c3f54 diff --git a/dev-python/mongoengine/mongoengine-0.21.0.ebuild b/dev-python/mongoengine/mongoengine-0.21.0.ebuild new file mode 100644 index 000000000000..30844f5c2a35 --- /dev/null +++ b/dev-python/mongoengine/mongoengine-0.21.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) +inherit distutils-r1 + +DESCRIPTION="A Python Object-Document-Mapper for working with MongoDB" +HOMEPAGE="https://github.com/MongoEngine/mongoengine/" +SRC_URI="https://github.com/MongoEngine/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +# TODO: make it run a local database server +RESTRICT="test" + +RDEPEND="dev-python/blinker[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/pymongo[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( dev-python/mongomock[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest + +src_prepare() { + # TODO: investigate + sed -e 's:test_covered_index:_&:' \ + -i tests/document/test_indexes.py || die + # incompatible pillow? + sed -e 's:test_image_field_resize:_&:' \ + -e 's:test_image_field_thumbnail:_&:' \ + -i tests/fields/test_file_field.py || die + # no $eval + sed -e 's:test_exec_js_field_sub:_&:' \ + -e 's:test_exec_js_query:_&:' \ + -e 's:test_item_frequencies_normalize:_&:' \ + -e 's:test_item_frequencies_with_0_values:_&:' \ + -e 's:test_item_frequencies_with_False_values:_&:' \ + -e 's:test_item_frequencies_with_null_embedded:_&:' \ + -i tests/queryset/test_queryset.py || die + # TODO: investigate (wrong order? bad comparison?) + sed -e 's:test_distinct_ListField_EmbeddedDocumentField:_&:' \ + -i tests/queryset/test_queryset.py || die + + distutils-r1_src_prepare +} diff --git a/dev-python/passlib/Manifest b/dev-python/passlib/Manifest index dd4d6da38fe6..36ccb583c9ff 100644 --- a/dev-python/passlib/Manifest +++ b/dev-python/passlib/Manifest @@ -1,2 +1 @@ -DIST passlib-1.7.2.tar.gz 649654 BLAKE2B 40279113d9ff633cea47222f2d72af0abee78dc52a9b46adf66aaae213594eaae7f245cc80004f85b5055b882741b4bedfd81ee39132db23760d37a34e87ac6a SHA512 1ea0654b177b5ab2e1a7e5c3949642c34805ace6e4e4a0f82fafdb3f374edd99c667906ce598c335b668da049860648d5cbebb3e62d775898d5b0cb8cfc7bf53 DIST passlib-1.7.4.tar.gz 689844 BLAKE2B 38f616105ba70cf93cf36383c73f2a4da7bf66ced2844effffe74d9f7c29ee0aece5652974dd1414f16e32fbe6957e2e921cf01bc59daa70195a6d50a4a3bf2f SHA512 350bd6da5ac57e6c266ffe8bf9684c8c2cce3fc6b513eb6c7bc1b302d2d8a1b701e9c01c953782520a2ac37b7ec1f6d7bd5855f99f6ee0e2dbbf33f2d49a9530 diff --git a/dev-python/passlib/files/passlib-1.7.2-py39.patch b/dev-python/passlib/files/passlib-1.7.2-py39.patch deleted file mode 100644 index c5dbc208a88b..000000000000 --- a/dev-python/passlib/files/passlib-1.7.2-py39.patch +++ /dev/null @@ -1,19 +0,0 @@ -diff --git a/passlib/utils/__init__.py b/passlib/utils/__init__.py -index 69b55e5..d18ec50 100644 ---- a/passlib/utils/__init__.py -+++ b/passlib/utils/__init__.py -@@ -807,7 +807,13 @@ else: - - if isinstance(hash, bytes): - hash = hash.decode("ascii") -- result = _crypt(secret, hash) -+ try: -+ result = _crypt(secret, hash) -+ except OSError: -+ # new in py39 -- per https://bugs.python.org/issue39289, -+ # crypt() now throws OSError for various things, mainly unknown hash formats -+ # translating that to None for now (may revise safe_crypt behavior in future) -+ return None - if PYPY and isinstance(result, bytes): - result = result.decode("utf-8") - if not result or result[0:1] in _invalid_prefixes: diff --git a/dev-python/passlib/files/passlib-1.7.2-pypy3.patch b/dev-python/passlib/files/passlib-1.7.2-pypy3.patch deleted file mode 100644 index 304388196b23..000000000000 --- a/dev-python/passlib/files/passlib-1.7.2-pypy3.patch +++ /dev/null @@ -1,65 +0,0 @@ -diff -ur a/passlib/utils/__init__.py b/passlib/utils/__init__.py ---- a/passlib/utils/__init__.py 2019-11-19 11:41:26.000000000 -0800 -+++ b/passlib/utils/__init__.py 2019-12-03 14:16:15.153791186 -0800 -@@ -57,7 +57,7 @@ - ) - from passlib.exc import ExpectedStringError - from passlib.utils.compat import (add_doc, join_bytes, join_byte_values, -- join_byte_elems, irange, imap, PY3, u, -+ join_byte_elems, irange, imap, PY3, PYPY, u, - join_unicode, unicode, byte_elem_value, nextgetter, - unicode_or_bytes_types, - get_method_function, suppress_cause) -@@ -776,23 +776,41 @@ - - if PY3: - def safe_crypt(secret, hash): -- if isinstance(secret, bytes): -- # Python 3's crypt() only accepts unicode, which is then -- # encoding using utf-8 before passing to the C-level crypt(). -- # so we have to decode the secret. -- orig = secret -+ if not PYPY: -+ if isinstance(secret, bytes): -+ # Python 3's crypt() only accepts unicode, which is then -+ # encoding using utf-8 before passing to the C-level crypt(). -+ # so we have to decode the secret. -+ orig = secret -+ try: -+ secret = secret.decode("utf-8") -+ except UnicodeDecodeError: -+ return None -+ assert secret.encode("utf-8") == orig, \ -+ "utf-8 spec says this can't happen!" -+ if _NULL in secret: -+ raise ValueError("null character in secret") -+ else: -+ if isinstance(secret, str): -+ orig = secret -+ try: -+ secret = secret.encode("utf-8") -+ except UnicodeEncodeError: -+ return None -+ assert secret.decode("utf-8") == orig, \ -+ "utf-8 spec says this can't happen!" - try: -- secret = secret.decode("utf-8") -+ if _NULL in secret.decode("utf-8"): -+ raise ValueError("null character in secret") - except UnicodeDecodeError: - return None -- assert secret.encode("utf-8") == orig, \ -- "utf-8 spec says this can't happen!" -- if _NULL in secret: -- raise ValueError("null character in secret") -+ - if isinstance(hash, bytes): - hash = hash.decode("ascii") - result = _crypt(secret, hash) -- if not result or result[0] in _invalid_prefixes: -+ if PYPY and isinstance(result, bytes): -+ result = result.decode("utf-8") -+ if not result or result[0:1] in _invalid_prefixes: - return None - return result - else: diff --git a/dev-python/passlib/passlib-1.7.2.ebuild b/dev-python/passlib/passlib-1.7.2.ebuild deleted file mode 100644 index b54d3c320eb5..000000000000 --- a/dev-python/passlib/passlib-1.7.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Password hashing framework supporting over 20 schemes" -HOMEPAGE="https://foss.heptapod.net/python-libs/passlib/wikis/home" -SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86" -SLOT="0" -IUSE="+bcrypt doc +scrypt +totp" - -RDEPEND="bcrypt? ( dev-python/bcrypt[${PYTHON_USEDEP}] ) - totp? ( dev-python/cryptography[${PYTHON_USEDEP}] ) - scrypt? ( dev-python/scrypt[${PYTHON_USEDEP}] )" -BDEPEND=" - test? ( - dev-python/bcrypt[${PYTHON_USEDEP}] - dev-python/cryptography[${PYTHON_USEDEP}] - dev-python/scrypt[${PYTHON_USEDEP}] - )" - -PATCHES=( - "${FILESDIR}/passlib-1.7.2-pypy3.patch" - "${FILESDIR}/passlib-1.7.2-py39.patch" -) - -distutils_enable_tests nose - -python_install_all() { - distutils-r1_python_install_all - use doc && dodoc docs/{*.rst,requirements.txt,lib/*.rst} -} diff --git a/dev-python/passlib/passlib-1.7.4.ebuild b/dev-python/passlib/passlib-1.7.4.ebuild index 8c46a10032d2..b032c5ff2bdb 100644 --- a/dev-python/passlib/passlib-1.7.4.ebuild +++ b/dev-python/passlib/passlib-1.7.4.ebuild @@ -11,7 +11,7 @@ HOMEPAGE="https://foss.heptapod.net/python-libs/passlib/wikis/home" SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" LICENSE="BSD-2" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86" SLOT="0" IUSE="+bcrypt doc +scrypt +totp" diff --git a/dev-python/protobuf-python/Manifest b/dev-python/protobuf-python/Manifest index 77fbd5bd334f..f999d53e9889 100644 --- a/dev-python/protobuf-python/Manifest +++ b/dev-python/protobuf-python/Manifest @@ -1,3 +1,4 @@ DIST protobuf-3.12.2.tar.gz 5309688 BLAKE2B 6f04ab75a165d8135b4c1de210f8698f56f309f73d664192209de10580e0ef850bf56f6f394b860f21912e341141f7bbb1f63198eaee55fd7ad74d86b00c3b1f SHA512 84a349a1dcb5bce6a6a892cf11264390b557ed1e7b05883b71fa9cfb7460d9f73119da1f2861066869e33c752246ea438d5ce2c2b3ff7a4b07696d9450b7916b DIST protobuf-3.12.4.tar.gz 5310348 BLAKE2B 2630941672963165467221843c10079a0ed966f2fdfcbc970b0b41e1ed3c7f78734496c1fbd3ec509c68999a14f637fff267b309cf82a8acf2bb5a948484f79b SHA512 c5d24502b9a6be0a606a19213186fe462e0de6830547003636f0897781f36d0bd7e4e7d9689d96390a0399ce04b6438cda3a0fe6f97f0feb700a110e90beef0c DIST protobuf-3.13.0.tar.gz 5277913 BLAKE2B 168aaa5beef83be675cd2543ca8efeaf5174f5e7fd861a056b04b01c8c781dc7b1fcbd05068ae89f051dfacfdc47c34b19cc33c8d09dd3212d3827746e3408f2 SHA512 514efa65fc8a36bc0791e6d39bdfb07b2689e9c2a4b82536c657859b800e7bc1e1a0ae86a7ee33f30c43a473a49b5c346ce830ac0057b6da104ed37f90b8b0fd +DIST protobuf-3.14.0.tar.gz 5319779 BLAKE2B cea083eea4d7fec441536effdfe2bf1811913154b0cc0da2f14f4edeb0efb200236da102c36700e24fab73fd9883aa90576ad64603a7f175ebf5cef0dc29aae5 SHA512 9dabba81119cb6196ef5de382a1032c57f6e69038f4dce0156f8671b98e51bb5095915fb6d05bb5a8ad8b17b559e652e1e9a392dd30c7ed8dcf1d986c137be11 diff --git a/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild b/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild index ecca6acde4bd..bb2b74222cd9 100644 --- a/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild +++ b/dev-python/protobuf-python/protobuf-python-3.13.0-r1.ebuild @@ -24,7 +24,7 @@ fi LICENSE="BSD" SLOT="0/24" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="" BDEPEND="${PYTHON_DEPS} diff --git a/dev-python/protobuf-python/protobuf-python-3.14.0.ebuild b/dev-python/protobuf-python/protobuf-python-3.14.0.ebuild new file mode 100644 index 000000000000..68484e4d06d7 --- /dev/null +++ b/dev-python/protobuf-python/protobuf-python-3.14.0.ebuild @@ -0,0 +1,66 @@ +# Copyright 2008-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +PYTHON_COMPAT=(python{3_6,3_7,3_8,3_9}) +DISTUTILS_USE_SETUPTOOLS="bdepend" + +inherit distutils-r1 + +if [[ "${PV}" == "9999" ]]; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/protocolbuffers/protobuf" + EGIT_SUBMODULES=() +fi + +DESCRIPTION="Google's Protocol Buffers - Python bindings" +HOMEPAGE="https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf" +if [[ "${PV}" == "9999" ]]; then + SRC_URI="" +else + SRC_URI="https://github.com/protocolbuffers/protobuf/archive/v${PV}.tar.gz -> protobuf-${PV}.tar.gz" +fi + +LICENSE="BSD" +SLOT="0/25" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +IUSE="" + +BDEPEND="${PYTHON_DEPS} + ~dev-libs/protobuf-${PV} + dev-python/namespace-google[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" +DEPEND="${PYTHON_DEPS} + ~dev-libs/protobuf-${PV}" +RDEPEND="${BDEPEND} + ! /dev/null || die + eapply "${FILESDIR}/${PN}-3.13.0-google.protobuf.pyext._message.PyUnknownFieldRef.patch" + eapply_user + popd > /dev/null || die + + distutils-r1_python_prepare_all +} + +python_configure_all() { + mydistutilsargs=(--cpp_implementation) +} + +python_test() { + esetup.py test +} + +python_install_all() { + distutils-r1_python_install_all + + find "${D}" -name "*.pth" -type f -delete || die +} diff --git a/dev-python/protobuf-python/protobuf-python-9999.ebuild b/dev-python/protobuf-python/protobuf-python-9999.ebuild index faaae29a1aa5..cf83c9cb0fbd 100644 --- a/dev-python/protobuf-python/protobuf-python-9999.ebuild +++ b/dev-python/protobuf-python/protobuf-python-9999.ebuild @@ -3,7 +3,7 @@ EAPI="7" PYTHON_COMPAT=(python{3_6,3_7,3_8,3_9}) -DISTUTILS_USE_SETUPTOOLS="rdepend" +DISTUTILS_USE_SETUPTOOLS="bdepend" inherit distutils-r1 @@ -23,7 +23,7 @@ else fi LICENSE="BSD" -SLOT="0/24" +SLOT="0/25" KEYWORDS="" IUSE="" @@ -49,19 +49,12 @@ python_prepare_all() { popd > /dev/null || die distutils-r1_python_prepare_all - - sed -e "/^[[:space:]]*setup_requires = \['wheel'\],$/d" -i setup.py || die } python_configure_all() { mydistutilsargs=(--cpp_implementation) } -python_compile() { - python_is_python3 || local -x CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing" - distutils-r1_python_compile -} - python_test() { esetup.py test } diff --git a/dev-python/pycairo/Manifest b/dev-python/pycairo/Manifest index 560251fc7761..567b04530540 100644 --- a/dev-python/pycairo/Manifest +++ b/dev-python/pycairo/Manifest @@ -1,2 +1 @@ -DIST pycairo-1.19.1.tar.gz 205196 BLAKE2B 504334628daf75dd9145c97fbd86ea133b4be225ce7fa911b48231ebd5434678ffa7b1f185e0527f96b4b36955e788d0bb4fa4d308843e5ae9b20a41d2126301 SHA512 a7955a2566d5e5586154b62f3aeef824e1e6076cbd3eb86af8288fedcc7d61c4e36a53691298cf9df2e2df7fc96292f96dec92c5d4343e6c1b4c971e97d0650f DIST pycairo-1.20.0.tar.gz 344370 BLAKE2B b72a3dfd3ad6332f6be2c0fc0650ef87d97a51881bd239421cdb6355016e952093f9fa05b7872d7cce4a50bc4bac27ff0fb4c11e446e51ada9d7c1adc019a175 SHA512 d32d008b741653d02324b206a438f5fd85f2a433201d6f8b98c8f1adc712abea611a4b5ed95c55258efb662dc579eed6b2f752b10d9fc2b6a7c8e5edd19e5266 diff --git a/dev-python/pycairo/files/pycairo-1.19.1-py39.patch b/dev-python/pycairo/files/pycairo-1.19.1-py39.patch deleted file mode 100644 index 97b20227ce8b..000000000000 --- a/dev-python/pycairo/files/pycairo-1.19.1-py39.patch +++ /dev/null @@ -1,26 +0,0 @@ -From 3ecf0a4060d6de3b92a77a393ece663455cf6add Mon Sep 17 00:00:00 2001 -From: Christoph Reiter -Date: Sun, 10 May 2020 11:22:40 +0200 -Subject: [PATCH] tests: Fix syntax issue with Python 3.9 - -https://bugs.python.org/issue40246 - -I haven't actually tested with 3.9 yet, so this is just what I found -with grep. ---- - tests/test_enums.py | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/test_enums.py b/tests/test_enums.py -index 4bc2e3d..02756d0 100644 ---- a/tests/test_enums.py -+++ b/tests/test_enums.py -@@ -79,7 +79,7 @@ def get_prefix(t): - # special case.. - if name == "PathDataType": - name = "Path" -- return"_".join([s.upper() for s in re.findall('[A-Z][^A-Z]*', name)]) -+ return "_".join([s.upper() for s in re.findall('[A-Z][^A-Z]*', name)]) - - for t in types_: - for name in dir(t): diff --git a/dev-python/pycairo/pycairo-1.19.1.ebuild b/dev-python/pycairo/pycairo-1.19.1.ebuild deleted file mode 100644 index 8891e2387526..000000000000 --- a/dev-python/pycairo/pycairo-1.19.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{6..9} pypy3 ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="Python bindings for the cairo library" -HOMEPAGE="https://www.cairographics.org/pycairo/ https://github.com/pygobject/pycairo" -SRC_URI="https://github.com/pygobject/${PN}/releases/download/v${PV}/${P}.tar.gz" - -LICENSE="|| ( LGPL-2.1 MPL-1.1 )" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="examples" - -BDEPEND=" - test? ( - dev-python/hypothesis[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] - ) -" -RDEPEND=" - >=x11-libs/cairo-1.13.1[svg] -" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}/${P}-py39.patch" ) - -distutils_enable_sphinx docs \ - dev-python/sphinx_rtd_theme -distutils_enable_tests setup.py - -python_install() { - distutils-r1_python_install \ - install_pkgconfig --pkgconfigdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig" -} - -python_install_all() { - if use examples; then - dodoc -r examples - fi - - distutils-r1_python_install_all -} diff --git a/dev-python/pycairo/pycairo-1.20.0.ebuild b/dev-python/pycairo/pycairo-1.20.0.ebuild index 2f98d71c1866..31888e2eb104 100644 --- a/dev-python/pycairo/pycairo-1.20.0.ebuild +++ b/dev-python/pycairo/pycairo-1.20.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/pygobject/${PN}/releases/download/v${PV}/${P}.tar.gz LICENSE="|| ( LGPL-2.1 MPL-1.1 )" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="examples" BDEPEND=" diff --git a/dev-python/pylatex/Manifest b/dev-python/pylatex/Manifest index 65c065d5f204..772b2cf8d0ad 100644 --- a/dev-python/pylatex/Manifest +++ b/dev-python/pylatex/Manifest @@ -1,2 +1,2 @@ -DIST pylatex-1.3.3.tar.gz 300639 BLAKE2B ac8fad8fa7e6e821cda168f3ae8ffb5acec21d688761b153ef2f9383b6a2f2ac7daea65f04389eb1ba3152fc50176d73cb814a78d2b5250ead2c6647eb96635a SHA512 12f51805996d84840f68844b79384ce4d2c29dde4db06f73b8887fe012abeaa4b9c5cf5e449132e626132b50ba26f014a899d548e3c0def25289671fd92e41a6 DIST pylatex-1.4.0.tar.gz 301148 BLAKE2B 4d1fa6add43556b7b2c1ff13b3bc2130d06018499197c3d1f40c9180f4346e774d69c2a356d5eab6c8686957ebafac71a78506553cf7cd3cd57d03c0e0ffffd1 SHA512 0d9ab3e733c50b5a4dd7a6758193645c5532c9153972bbed244e3f7e2d6a946bd36af428197f9cdd1a3256f4cc0db5dc78248973f9b330684ce8651c4a59ad91 +DIST pylatex-1.4.1.tar.gz 301482 BLAKE2B c68c8bbf70c5099b3c3146922afe94dcf4f90bfc8644fa165ee27835f4a24642645f9849f2f9fd69656dc07dcc4807869275aacf33a1e5b9c59e539801f8e821 SHA512 55a5734e4d239cef4bcaafa0ba64eea013ba3e86d137de5a5f8311d70c949d783e2e7aad24d39d16a6febbe4bddc34e47248068e1328fe3f95f39a7c7019a3a9 diff --git a/dev-python/pylatex/pylatex-1.3.3.ebuild b/dev-python/pylatex/pylatex-1.4.1.ebuild similarity index 95% rename from dev-python/pylatex/pylatex-1.3.3.ebuild rename to dev-python/pylatex/pylatex-1.4.1.ebuild index deb15e20bc05..f7b9a7e488dc 100644 --- a/dev-python/pylatex/pylatex-1.3.3.ebuild +++ b/dev-python/pylatex/pylatex-1.4.1.ebuild @@ -13,17 +13,18 @@ inherit distutils-r1 optfeature DESCRIPTION="A Python library for creating LaTeX files and snippets" HOMEPAGE="https://github.com/JelteF/PyLaTeX" SRC_URI="https://github.com/JelteF/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~x86" IUSE="examples" RDEPEND=" dev-python/ordered-set[${PYTHON_USEDEP}] " -distutils_enable_tests nose +distutils_enable_tests pytest BDEPEND+=" test? ( @@ -34,8 +35,6 @@ BDEPEND+=" dev-texlive/texlive-latexextra )" -S="${WORKDIR}/${MY_P}" - python_install_all() { if use examples ; then dodoc -r examples diff --git a/dev-python/pyproject2setuppy/Manifest b/dev-python/pyproject2setuppy/Manifest index 5365acb67ad3..995ccc31f868 100644 --- a/dev-python/pyproject2setuppy/Manifest +++ b/dev-python/pyproject2setuppy/Manifest @@ -1 +1,2 @@ DIST pyproject2setuppy-8.tar.gz 9501 BLAKE2B d0c168efa2742732710a7d967ce0783a942d4718ae2be75e6263bb560500527ee11260c9b7362d10cb059171475dc647c0bc97e284554f2e159f470e3eb7f569 SHA512 527e2de790fb02373150db834d1a007a63b71f87ae01fef1dd9fc86a51ac6cafeac28fa3f39a2d484e7a9f84549d0ba285894cf9201f3b2b2a47965be29913cc +DIST pyproject2setuppy-9.tar.gz 9611 BLAKE2B 448e6ca468c2a5c1097e63316bf1a2da41dfc4a8dfa756553b56ebcbb66c43cce7dd57aeacce45491087b956a01b8ff2707fc5f60ada10a4f496c9c8f7c722c4 SHA512 bd337f392e3dfd686039714687bd8a57b7b946b486f5513bf603e322843a4d8f4c2fdca747e61090f00f3ed4a5284a2b182f064412a3c8e70f278a2be7551d93 diff --git a/dev-python/pyproject2setuppy/pyproject2setuppy-9.ebuild b/dev-python/pyproject2setuppy/pyproject2setuppy-9.ebuild new file mode 100644 index 000000000000..516b3db0af32 --- /dev/null +++ b/dev-python/pyproject2setuppy/pyproject2setuppy-9.ebuild @@ -0,0 +1,26 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=manual +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Cheap setup.py hack to install flit & poetry-based projects" +HOMEPAGE="https://github.com/mgorny/pyproject2setuppy" +SRC_URI=" + https://github.com/mgorny/pyproject2setuppy/archive/v${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" + +RDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}]" +BDEPEND="${RDEPEND}" + +distutils_enable_tests pytest diff --git a/dev-python/pypy-exe-bin/Manifest b/dev-python/pypy-exe-bin/Manifest index fc2b38b03da2..689d3fd9f329 100644 --- a/dev-python/pypy-exe-bin/Manifest +++ b/dev-python/pypy-exe-bin/Manifest @@ -2,5 +2,7 @@ DIST pypy-exe-7.3.1-1.amd64.xpak 13578971 BLAKE2B 6ff3c64ec88813ef68d325cff5e2da DIST pypy-exe-7.3.1-1.x86.xpak 10239654 BLAKE2B 2588e879e2bd3ea41938ec21f55167d118cb493680f8e7aded6d6c01bed6499efd65f7d7f56e305a4ebc2aab02adf9d58fceccb503dd0ff41e93c642baf2191c SHA512 110b202c805729bcd6789ea0f6c7bffe62ab23cbd33fcff572254f56f4da82e25f9f7f617c5a4b3911044c07ea33ae8d17bd8547bb7779ca517b973b553e6b1d DIST pypy-exe-7.3.2-1.amd64.xpak 13541084 BLAKE2B 8af5c35d99275a2131d4b6c51f505a9bf3015a144387030c78a490c331f1fb34b69106ad6ed961247b4de6a39d2fde47a1ebad204e3a3569f269ed7ee32559de SHA512 82d99e896954aec8749154e19d42636608403e4c4bece34e72b5804208cb42ed26bfdf4506ab2579a3b74d7cede97ef66b313ae9feeddabbfd79045090dc3035 DIST pypy-exe-7.3.2-1.x86.xpak 10216001 BLAKE2B 934be623ce1afa9d0bfb1b3725e89d994352c9d57b9807c6fa135a0aabe3c50633566425b25ebf98f1cec8160eadf5305033ac3f3ba4cfff5fb7b39e5d19f9c6 SHA512 9d25f1d82af3ed1c4d046e5f3434d12ed4c02eee4cc8adb64a03159bb48cf114f393bd60c67223447796726f59b622f8462ac439446eb14dcf2e76983da635e8 +DIST pypy-exe-7.3.3-1.amd64.xpak 13533778 BLAKE2B de70f6b47e9908757ae73c047f04fc8081bb422f5ba6c0e9a865dde2c9aebfc881858194b107bb3e0110d61de718fb8fe7db2aac0885bb6adca101b12e6e400f SHA512 f98b86ed44567979234460fc9df7b79477729bdcc233ab8dd3ba991f80a5f32c9111f263ef4df5b2703581431d7f92ee468f057ce95613deaf35176634f253e2 +DIST pypy-exe-7.3.3-1.x86.xpak 10258112 BLAKE2B 55744bb2b68dee5b959c8976ad62b0e8e4d633f2b31003fc14d8bae82b4b55e7927ea1296501207ee2377df456b469ce3594a65a5171c84188ef22b88370a051 SHA512 baa895377c3cbd090971660edf3b634ada20390ed940c72ba2e9fadce30d3c88125f4c52b11d17160a1ba1331e648d2bed37d6d533866ea97d786634b5ecc0a7 DIST pypy-exe-7.3.3_rc1-1.amd64.xpak 13533939 BLAKE2B 9b959a51e5e896d68d5321ac27f661900eda5407e6682883cea00e6d7363c4a1287044da47a7e750ae93fe9801a8ca3ee4fc9846b679998f3fbddefc19a62593 SHA512 a0c73ec6e300f0f52ac8f8305e92670eec8aacb11f7cb345804f042ae40d514ea1be2b14511422791e46b758437af49e43d409a27fb0087bf881143f6b265f17 DIST pypy-exe-7.3.3_rc1-1.x86.xpak 10254396 BLAKE2B e3fa75dc753cc64baca69f802f2f52557b4b374801df7ede216c10f485130b2beb321d404e592e5de49d048de89f1a4496e946ebc8e7a831b1de7806d32e99a7 SHA512 6fae90183fea72dd913342fb230aca09091d0ef94f81a62750f39885bbaec78e227eb282372fe9f869ade1abdaac0ee7c93900311d495dc10735fb4573aaf52b diff --git a/dev-python/pypy-exe-bin/pypy-exe-bin-7.3.3.ebuild b/dev-python/pypy-exe-bin/pypy-exe-bin-7.3.3.ebuild new file mode 100644 index 000000000000..cbfcb9fce7dd --- /dev/null +++ b/dev-python/pypy-exe-bin/pypy-exe-bin-7.3.3.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit pax-utils + +MY_P=pypy-exe-${PV}-1 +DESCRIPTION="PyPy executable (pre-built version)" +HOMEPAGE="https://pypy.org/" +SRC_URI=" + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/pypy/dev-python/pypy-exe/${MY_P}.xpak + -> ${MY_P}.amd64.xpak + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/pypy/dev-python/pypy-exe/${MY_P}.xpak + -> ${MY_P}.x86.xpak + )" +S="${WORKDIR}" + +LICENSE="MIT" +SLOT="${PV}" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=sys-libs/zlib-1.1.3:0/1 + dev-libs/libffi:0/7 + virtual/libintl:0/0 + dev-libs/expat:0/0 + app-arch/bzip2:0/1 + sys-libs/ncurses:0/6 + !dev-python/pypy-exe:${PV}" + +QA_PREBUILT=" + usr/lib/pypy2.7/pypy-c-${SLOT}" + +src_unpack() { + ebegin "Unpacking ${MY_P}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${MY_P} failed" +} + +src_install() { + insinto / + doins -r usr + fperms +x "/usr/lib/pypy2.7/pypy-c-${SLOT}" + pax-mark m "${ED}/usr/lib/pypy2.7/pypy-c-${SLOT}" +} diff --git a/dev-python/pypy-exe/Manifest b/dev-python/pypy-exe/Manifest index 3624fd594118..d4d8346024c7 100644 --- a/dev-python/pypy-exe/Manifest +++ b/dev-python/pypy-exe/Manifest @@ -1,3 +1,4 @@ DIST pypy2.7-v7.3.1-src.tar.bz2 21053306 BLAKE2B 071d59b7978c98e9ed9243d9a64d93d21b524351cb9a45e0f7d48828f919c84585a1164e7c38739fdd8828ab4b1eedade96dff7d64d0d9cbfe00c74d88d532bb SHA512 1bec44fa0fc4b1186e25f69303f9e332df32184be990d86fba41c40152664a93bd65eabf4dded133371271402cea9b150b60c13bce89d1004b276f0908c0b8f1 DIST pypy2.7-v7.3.2-src.tar.bz2 21142873 BLAKE2B e6bcd2dc28ef740962d053753ccd172e3895fc83fe23a319c003248e0986f9805839daddd13a0f480f1e9ee813979742699cb0bc8c42b6b05c193fedf67aea4f SHA512 b40d93d615a27e3a035007307a8ab2b49ff90f3047af914b268a80feb8219d372eca14c04a8b0dea91efb992653457b7c6d088c784de32c414cc48879f2d15fc +DIST pypy2.7-v7.3.3-src.tar.bz2 20881821 BLAKE2B ce1ecdd1fffe40574c7662da6038b84d2bca47ab168939ef0c12be2c6348317f17a94a3026e7fa53c71601edc153aefd98f770bd148e7af07ca751c0a5fc1252 SHA512 c2b6c44fdcac5f9445fab01572f859228fc286891fd09a4ddb95d283683d805276c853ec8e61fcd04cb9ee811d0e959d19bb03fdd7442c044f28a773633122e7 DIST pypy2.7-v7.3.3rc1-src.tar.bz2 20933100 BLAKE2B afbf3c15924e6a215b6323fe97e9782912f09ba1e1db6652b37897ead07deaaa97f591a91f3695e958e8e2dee2626bbda94c4043c025b3f52a12279dc66e483c SHA512 0ddbdcf7ef825888ff748ebdd84cb501653e3a4a0e506e35810f9693b5d3b388c2f636396616f0c8fcc96dc806fa02d74830c1f37ca11fdcfdfd32c3bcd1fdd0 diff --git a/dev-python/pypy-exe/pypy-exe-7.3.3.ebuild b/dev-python/pypy-exe/pypy-exe-7.3.3.ebuild new file mode 100644 index 000000000000..c0dee5cf1c60 --- /dev/null +++ b/dev-python/pypy-exe/pypy-exe-7.3.3.ebuild @@ -0,0 +1,167 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 ) +inherit check-reqs pax-utils python-any-r1 toolchain-funcs + +MY_P=pypy2.7-v${PV/_/} +DESCRIPTION="PyPy executable (build from source)" +HOMEPAGE="https://pypy.org/" +SRC_URI="https://buildbot.pypy.org/pypy/${MY_P}-src.tar.bz2" +S="${WORKDIR}/${MY_P}-src" + +LICENSE="MIT" +SLOT="${PV}" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 +jit low-memory ncurses cpu_flags_x86_sse2" + +RDEPEND=">=sys-libs/zlib-1.1.3:0= + dev-libs/libffi:0= + virtual/libintl:0= + dev-libs/expat:0= + bzip2? ( app-arch/bzip2:0= ) + ncurses? ( sys-libs/ncurses:0= ) + !dev-python/pypy-exe-bin:${PV}" +# don't enforce the dep on pypy with USE=low-memory since it's going +# to cause either collisions or circular dep on itself +DEPEND="${RDEPEND}" +BDEPEND=" + !low-memory? ( + || ( + dev-python/pypy + dev-lang/python:2.7 + ) + )" + +check_env() { + if use low-memory; then + if ! has_version -b dev-python/pypy && + ! has_version -b dev-python/pypy-bin + then + eerror "USE=low-memory requires a (possibly old) version of dev-python/pypy" + eerror "being installed. Please install it using e.g.:" + eerror + eerror " $ emerge -1v dev-python/pypy dev-python/pypy-exe-bin" + eerror + eerror "before attempting to build dev-python/pypy-exe[low-memory]." + die "dev-python/pypy needs to be installed for USE=low-memory" + fi + + CHECKREQS_MEMORY="1750M" + use amd64 && CHECKREQS_MEMORY="3500M" + else + CHECKREQS_MEMORY="3G" + use amd64 && CHECKREQS_MEMORY="6G" + fi + + check-reqs_pkg_pretend +} + +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && check_env +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]]; then + check_env + + use low-memory && EPYTHON= + if [[ ! ${EPYTHON} || ${EPYTHON} == pypy ]] && + { has_version -b dev-python/pypy || + has_version -b dev-python/pypy-bin; } + then + einfo "Using already-installed PyPy to perform the translation." + EPYTHON=pypy + else + einfo "Using ${EPYTHON} to perform the translation. Please note that upstream" + einfo "recommends using PyPy for that. If you wish to do so, please unset" + einfo "the EPYTHON variable." + python-any-r1_pkg_setup + fi + fi +} + +src_configure() { + tc-export CC + + local jit_backend + if use jit; then + jit_backend='--jit-backend=' + + # We only need the explicit sse2 switch for x86. + # On other arches we can rely on autodetection which uses + # compiler macros. Plus, --jit-backend= doesn't accept all + # the modern values... + + if use x86; then + if use cpu_flags_x86_sse2; then + jit_backend+=x86 + else + jit_backend+=x86-without-sse2 + fi + else + jit_backend+=auto + fi + fi + + local args=( + --no-shared + $(usex jit -Ojit -O2) + + ${jit_backend} + + pypy/goal/targetpypystandalone + ) + + # Avoid linking against libraries disabled by use flags + local opts=( + bzip2:bz2 + ncurses:_minimal_curses + ) + + local opt + for opt in "${opts[@]}"; do + local flag=${opt%:*} + local mod=${opt#*:} + + args+=( + $(usex ${flag} --withmod --withoutmod)-${mod} + ) + done + + local interp=( "${EPYTHON}" ) + if use low-memory; then + interp=( env PYPY_GC_MAX_DELTA=200MB + "${EPYTHON}" --jit loop_longevity=300 ) + fi + + if [[ ${EPYTHON} != pypy ]]; then + # reuse bundled pycparser to avoid external dep + mkdir -p "${T}"/pymod/cffi || die + : > "${T}"/pymod/cffi/__init__.py || die + cp -r lib_pypy/cffi/_pycparser "${T}"/pymod/cffi/ || die + local -x PYTHONPATH=${T}/pymod:${PYTHONPATH} + fi + + # translate into the C sources + # we're going to build them ourselves since otherwise pypy does not + # free up the unneeded memory before spawning the compiler + set -- "${interp[@]}" rpython/bin/rpython --batch --source "${args[@]}" + echo -e "\033[1m${@}\033[0m" + "${@}" || die "translation failed" +} + +src_compile() { + emake -C "${T}"/usession*-0/testing_1 +} + +src_install() { + local dest=/usr/lib/pypy2.7 + exeinto "${dest}" + newexe "${T}"/usession*-0/testing_1/pypy-c pypy-c-${PV} + insinto "${dest}"/include/${PV} + doins include/pypy_* + pax-mark m "${ED}${dest}/pypy-c-${PV}" +} diff --git a/dev-python/pypy/Manifest b/dev-python/pypy/Manifest index 72d575304bde..8e407250474b 100644 --- a/dev-python/pypy/Manifest +++ b/dev-python/pypy/Manifest @@ -1,5 +1,6 @@ DIST pypy2.7-v7.3.1-src.tar.bz2 21053306 BLAKE2B 071d59b7978c98e9ed9243d9a64d93d21b524351cb9a45e0f7d48828f919c84585a1164e7c38739fdd8828ab4b1eedade96dff7d64d0d9cbfe00c74d88d532bb SHA512 1bec44fa0fc4b1186e25f69303f9e332df32184be990d86fba41c40152664a93bd65eabf4dded133371271402cea9b150b60c13bce89d1004b276f0908c0b8f1 DIST pypy2.7-v7.3.2-src.tar.bz2 21142873 BLAKE2B e6bcd2dc28ef740962d053753ccd172e3895fc83fe23a319c003248e0986f9805839daddd13a0f480f1e9ee813979742699cb0bc8c42b6b05c193fedf67aea4f SHA512 b40d93d615a27e3a035007307a8ab2b49ff90f3047af914b268a80feb8219d372eca14c04a8b0dea91efb992653457b7c6d088c784de32c414cc48879f2d15fc +DIST pypy2.7-v7.3.3-src.tar.bz2 20881821 BLAKE2B ce1ecdd1fffe40574c7662da6038b84d2bca47ab168939ef0c12be2c6348317f17a94a3026e7fa53c71601edc153aefd98f770bd148e7af07ca751c0a5fc1252 SHA512 c2b6c44fdcac5f9445fab01572f859228fc286891fd09a4ddb95d283683d805276c853ec8e61fcd04cb9ee811d0e959d19bb03fdd7442c044f28a773633122e7 DIST pypy2.7-v7.3.3rc1-src.tar.bz2 20933100 BLAKE2B afbf3c15924e6a215b6323fe97e9782912f09ba1e1db6652b37897ead07deaaa97f591a91f3695e958e8e2dee2626bbda94c4043c025b3f52a12279dc66e483c SHA512 0ddbdcf7ef825888ff748ebdd84cb501653e3a4a0e506e35810f9693b5d3b388c2f636396616f0c8fcc96dc806fa02d74830c1f37ca11fdcfdfd32c3bcd1fdd0 DIST python-gentoo-patches-2.7.17-r1.tar.xz 14708 BLAKE2B f6e25236a471649de122d0f29506f7a4f34044a568ead47a68980411d9722b761fe1f9d653d5edccb6978b65c8c1eecbef55f403b94f32b37c0ad68e061505a8 SHA512 ecdde5e38c6fe5e69691fb3a68c8f4f43da7857d4abaff763d3cf6ad864ba43c769c03b186b60f2736a1ffb1e3e4c9982715d1b8a99ff3f5740096153bb8a90f DIST python-gentoo-patches-2.7.18-r1.tar.xz 15500 BLAKE2B 7008b29827dbbd80d4ab8f010ccf9efced99c6b4b9109e4430c0ba269ce53529cb6fedd832502c8d2d3aa21938749cc3591c2545b21c0a59a6e60f8598e84ccc SHA512 e656ab07281fd932b92165674619bbf55ecf410d2937ae4ae771d490b4532540498cc731d30d19c1e8aafd1f64df8a406bbfbb46ea985b3dcd8edb89a0b7f20f diff --git a/dev-python/pypy/pypy-7.3.3.ebuild b/dev-python/pypy/pypy-7.3.3.ebuild new file mode 100644 index 000000000000..dfe53d9ae357 --- /dev/null +++ b/dev-python/pypy/pypy-7.3.3.ebuild @@ -0,0 +1,176 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit pax-utils python-utils-r1 + +MY_P=pypy2.7-v${PV/_/} +# note: remember to update this to newest dev-lang/python:2.7 on bump +PATCHSET="python-gentoo-patches-2.7.18-r1" + +DESCRIPTION="A fast, compliant alternative implementation of the Python language" +HOMEPAGE="https://pypy.org/" +SRC_URI="https://buildbot.pypy.org/pypy/${MY_P}-src.tar.bz2 + https://dev.gentoo.org/~mgorny/dist/python/${PATCHSET}.tar.xz" +S="${WORKDIR}/${MY_P}-src" + +LICENSE="MIT" +# pypy -c 'import sysconfig; print sysconfig.get_config_var("SOABI")' +SLOT="0/73" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 gdbm +jit libressl ncurses sqlite tk" + +RDEPEND=" + || ( + dev-python/pypy-exe:${PV}[bzip2?,ncurses?] + dev-python/pypy-exe-bin:${PV} + ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + gdbm? ( sys-libs/gdbm:0= ) + sqlite? ( dev-db/sqlite:3= ) + tk? ( + dev-lang/tk:0= + dev-tcltk/tix:0= + ) + ! /dev/null || die + # TODO: cpy turkish locale patch now fixes C code + # probably needs better port to pypy, if it is broken there + eapply -p2 "${WORKDIR}/${PATCHSET}"/0010-use_pyxml.patch + popd > /dev/null || die + + # this test relies on pypy-c hardcoding correct build time paths + sed -i -e 's:test_executable_without_cwd:_&:' \ + lib-python/2.7/test/test_subprocess.py || die + # requires Internet + sed -i -e '/class NetworkedTests/i@unittest.skip("Requires networking")' \ + lib-python/2.7/test/test_ssl.py || die + + eapply_user +} + +src_compile() { + # copy over to make sys.prefix happy + cp -p "${BROOT}"/usr/lib/pypy2.7/pypy-c-${PV} pypy-c || die + cp -p "${BROOT}"/usr/lib/pypy2.7/include/${PV}/* include/ || die + # (not installed by pypy) + rm pypy/module/cpyext/include/_numpypy/numpy/README || die + mv pypy/module/cpyext/include/* include/ || die + mv pypy/module/cpyext/parse/*.h include/ || die + pax-mark m pypy-c + + einfo "Generating caches and CFFI modules ..." + + # Generate Grammar and PatternGrammar pickles. + ./pypy-c -c "import lib2to3.pygram, lib2to3.patcomp; lib2to3.patcomp.PatternCompiler()" \ + || die "Generation of Grammar and PatternGrammar pickles failed" + + # Generate cffi modules + # Please keep in sync with pypy/tool/build_cffi_imports.py! +#cffi_build_scripts = { +# "_ssl": "_ssl_build.py", +# "sqlite3": "_sqlite3_build.py", +# "audioop": "_audioop_build.py", +# "tk": "_tkinter/tklib_build.py", +# "curses": "_curses_build.py" if sys.platform != "win32" else None, +# "syslog": "_syslog_build.py" if sys.platform != "win32" else None, +# "gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, +# "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, +# "resource": "_resource_build.py" if sys.platform != "win32" else None, + cffi_targets=( ssl audioop syslog pwdgrp resource ) + use gdbm && cffi_targets+=( gdbm ) + use ncurses && cffi_targets+=( curses ) + use sqlite && cffi_targets+=( sqlite3 ) + use tk && cffi_targets+=( tkinter/tklib ) + + local t + # all modules except tkinter output to . + # tkinter outputs to the correct dir ... + cd lib_pypy || die + for t in "${cffi_targets[@]}"; do + # tkinter doesn't work via -m + ../pypy-c "_${t}_build.py" || die "Failed to build CFFI bindings for ${t}" + done + + # Cleanup temporary objects + find -name "_cffi_*.[co]" -delete || die + find -type d -empty -delete || die +} + +src_test() { + # (unset) + local -x PYTHONDONTWRITEBYTECODE= + local -x COLUMNS=80 + + local ignored_tests=( + # network + --ignore=lib-python/2.7/test/test_urllibnet.py + --ignore=lib-python/2.7/test/test_urllib2net.py + # lots of free space + --ignore=lib-python/2.7/test/test_zipfile64.py + ) + + ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -vv \ + "${ignored_tests[@]}" lib-python || die +} + +src_install() { + local dest=/usr/lib/pypy2.7 + einfo "Installing PyPy ..." + dosym pypy-c-${PV} "${dest}/pypy-c" + insinto "${dest}" + # preserve mtimes to avoid obsoleting caches + insopts -p + doins -r include lib_pypy lib-python + + # replace copied headers with symlinks + for x in "${BROOT}"/usr/lib/pypy2.7/include/${PV}/*; do + dosym "${PV}/${x##*/}" "${dest}/include/${x##*/}" + done + + dosym ../lib/pypy2.7/pypy-c /usr/bin/pypy + dodoc README.rst + + if ! use gdbm; then + rm -r "${ED}${dest}"/lib_pypy/gdbm.py \ + "${ED}${dest}"/lib-python/*2.7/test/test_gdbm.py || die + fi + if ! use sqlite; then + rm -r "${ED}${dest}"/lib-python/*2.7/sqlite3 \ + "${ED}${dest}"/lib_pypy/_sqlite3.py \ + "${ED}${dest}"/lib-python/*2.7/test/test_sqlite.py || die + fi + if ! use tk; then + rm -r "${ED}${dest}"/lib-python/*2.7/{idlelib,lib-tk} \ + "${ED}${dest}"/lib_pypy/_tkinter \ + "${ED}${dest}"/lib-python/*2.7/test/test_{tcl,tk,ttk*}.py || die + fi + + local -x EPYTHON=pypy + local -x PYTHON=${ED}${dest}/pypy-c-${PV} + # temporarily copy to build tree to facilitate module builds + cp -p "${BROOT}${dest}/pypy-c-${PV}" "${PYTHON}" || die + + echo "EPYTHON='${EPYTHON}'" > epython.py || die + python_moduleinto /usr/lib/pypy2.7/site-packages + python_domodule epython.py + + einfo "Byte-compiling Python standard library..." + python_optimize "${ED}${dest}" + + # remove to avoid collisions + rm "${PYTHON}" || die +} diff --git a/dev-python/pypy3-exe-bin/Manifest b/dev-python/pypy3-exe-bin/Manifest index 4a104ddd471e..1a0086f2133e 100644 --- a/dev-python/pypy3-exe-bin/Manifest +++ b/dev-python/pypy3-exe-bin/Manifest @@ -4,6 +4,10 @@ DIST pypy3-exe-7.3.2-r1-1.amd64.xpak 11745754 BLAKE2B 16b6b078609b6c6fb9f87c8d6f DIST pypy3-exe-7.3.2-r1-1.x86.xpak 9030835 BLAKE2B 8fe13acd6bb93a60ed3f4268c1c53e7bb0101c7f68a58ddda4f7cec8fc5d4b3df463de2fbb585adbfb04349a96807a6c34246ceab76e001bfedabaddba90750b SHA512 ab463d5df575b1b8a01fa129f96b1317de37d2a0de83d124d411be63add0a241700a918885ed7128221cadfbb0d3b0d49d32d57ec25c59ec45e26e5bb1c4c0c0 DIST pypy3-exe-7.3.2_p37-r1-1.amd64.xpak 11864985 BLAKE2B 69fe7b080ec4fe6cf3d0e06c0d7c00c17627259d57ff02a1dc0629374f92f425889a3e40b075f48687af47e97b2504252369bd106011961337fe1708d6e35561 SHA512 673de3083be18d9f62e9586eb0daae3e1a041f245ffb17fabb0b88ee6262cdd3ffd7dc723e6b72eb42057d0bbffbcc82a5c2864e585c5a1b184983445269500e DIST pypy3-exe-7.3.2_p37-r1-1.x86.xpak 9126391 BLAKE2B e8b68a1ce9ada6cf9a27dfcac78564d8a3020575ce9d1db7460c8aec8097abb6624bbce594d84556525253de8c620cb8acaf7e381af48d71b97bfdcfc5759a05 SHA512 29172e3d99775af10507167cd84f120677bfa752747b8d11f5434b16aea7eac9aa06bc820949cac132a2bd6e3c69df4da8a8a6bbba9cf4fe01db6cf1b0f725c6 +DIST pypy3-exe-7.3.3-1.amd64.xpak 11716026 BLAKE2B e57bc5e4420bb3d21f8ca9076f1795f33ba79fadb9ef6020a8597ac607e1173a11e440649a5ee7e308155ca28702e95aace36d5772f7ccc1d2c66b605a0c2a1d SHA512 462c1845f4566246df96abd59f2312fcd0ae1a9cf577ed6218aada4a95133f34a93f98a627fea5245ab79d9056fce00a2903503492e8f3e652a05b5832a5b67e +DIST pypy3-exe-7.3.3-1.x86.xpak 9041169 BLAKE2B 47a2352407387d96214b0e297cc82504afe8b64378a528349a32d751ac3acb068bbf720165dae94582816a0372d85a8e9ccd9f8d5bf03c63a9f5d8cbc9463480 SHA512 c3c44c1448be6d861ca788e17ca79a4fd68fa1751f3d1f47d2570e1d924343e35e106fee30f7da5b3e14a679f5d9048d5bc263a8ef49cac420349acad67530ed +DIST pypy3-exe-7.3.3_p37-1.amd64.xpak 11868037 BLAKE2B d23aa2c9dabbb1032ffce4176926f6996427dae05095c0842db3ac046e2234aef160cfcb84b9f2d146b76ae7315dd7d9c3c5ac974121ee876128f8977306e513 SHA512 7e26342c64a678058030bb38c29f5534c25694619942a66f4f507a615ee2798e2f631d81345ed269d252a3e68a79536e9248444c72563dddc1dc0a293457c76f +DIST pypy3-exe-7.3.3_p37-1.x86.xpak 9133686 BLAKE2B ae8e82cf1820e93a08c85177ba1e6547afa4e063277617efc5ce658b890526f546e7e4d5accf37f2189cc8d5203625175fb5413482c21aded7006208a57afc19 SHA512 ec5d3a521cb1d784b1083f86c0693db180f31015b56feca85bb85ab35dd3d461fc96d31ad7aaf8031ec8e0488151fbd3049cac83bc0edac5df99b062b49eb481 DIST pypy3-exe-7.3.3_rc1-1.amd64.xpak 11732062 BLAKE2B 8e2a6fbfdf3a4ada68a3f7f4993b82ca93e254ab74c3ffe581dd8e813d96663fc172bed75019c1058e48af8b6b0cd6146847e21e854d26d1e54744cc69341d22 SHA512 673765c986b78a6a00ff913c624d9d0868f6471e1f942dfab19c61c027ea459608c76c3c5a88c8a19444e958a6b882839ab10eadc0ee0b5f02df0f6ff203518b DIST pypy3-exe-7.3.3_rc1-1.x86.xpak 9036319 BLAKE2B d681c12cd496c9be7aea29bc9b6fbdbe1b30c38cfa511b39eae5ffb1a9b6ff06a5a728685ea8d0c0d2083dc153bd2a0c2d934381d60a1c89ba605abc629bd11c SHA512 f15f267b0e6f6edfee8aa501f9ce486612ccbbe6b60969247b81d1d0ada014704fb383d80fd93f875f2336268131884c513c02cf7396d5388019222edf41bbd1 DIST pypy3-exe-7.3.3_rc1_p37-1.amd64.xpak 11847540 BLAKE2B b817aac3c6a74295b4ee4c034b17600bb4400b9a50d61ff0dee1a969b68430d9121d92842435cd1e7e97b7540f343a78be95a4d857e0d8ee07c8cb4fe6388b13 SHA512 b6e1d6bbdb9092322e12e6edc190f588aef24dc90b6e332b23b9678cb68b149f4b029bf5f181b076907e9ce50b1114c4965e7636fc8e2077179c0a10e1376e7c diff --git a/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.3.ebuild b/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.3.ebuild new file mode 100644 index 000000000000..345dafd4e829 --- /dev/null +++ b/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.3.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit pax-utils + +MY_P=pypy3-exe-${PV}-1 +DESCRIPTION="PyPy3 executable (pre-built version)" +HOMEPAGE="https://pypy.org/" +SRC_URI=" + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/pypy/dev-python/pypy3-exe/${MY_P}.xpak + -> ${MY_P}.amd64.xpak + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/pypy/dev-python/pypy3-exe/${MY_P}.xpak + -> ${MY_P}.x86.xpak + )" +S="${WORKDIR}" + +LICENSE="MIT" +SLOT="${PV}" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=sys-libs/zlib-1.1.3:0/1 + dev-libs/libffi:0/7 + virtual/libintl:0/0 + dev-libs/expat:0/0 + app-arch/bzip2:0/1 + sys-libs/ncurses:0/6 + !dev-python/pypy-exe:${PV}" + +QA_PREBUILT=" + usr/lib/pypy3.6/pypy3-c-${SLOT}" + +src_unpack() { + ebegin "Unpacking ${MY_P}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${MY_P} failed" +} + +src_install() { + insinto / + doins -r usr + fperms +x "/usr/lib/pypy3.6/pypy3-c-${SLOT}" + pax-mark m "${ED}/usr/lib/pypy3.6/pypy3-c-${SLOT}" +} diff --git a/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.3_p37.ebuild b/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.3_p37.ebuild new file mode 100644 index 000000000000..e8930a159077 --- /dev/null +++ b/dev-python/pypy3-exe-bin/pypy3-exe-bin-7.3.3_p37.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit pax-utils + +MY_P=pypy3-exe-${PV}-1 +DESCRIPTION="PyPy3 executable (pre-built version)" +HOMEPAGE="https://pypy.org/" +SRC_URI=" + amd64? ( + https://dev.gentoo.org/~mgorny/binpkg/amd64/pypy/dev-python/pypy3-exe/${MY_P}.xpak + -> ${MY_P}.amd64.xpak + ) + x86? ( + https://dev.gentoo.org/~mgorny/binpkg/x86/pypy/dev-python/pypy3-exe/${MY_P}.xpak + -> ${MY_P}.x86.xpak + )" +S="${WORKDIR}" + +LICENSE="MIT" +SLOT="${PV}" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=sys-libs/zlib-1.1.3:0/1 + dev-libs/libffi:0/7 + virtual/libintl:0/0 + dev-libs/expat:0/0 + app-arch/bzip2:0/1 + sys-libs/ncurses:0/6 + !dev-python/pypy-exe:${PV}" + +PYPY_PV=${SLOT%_p*} +QA_PREBUILT=" + usr/lib/pypy3.7/pypy3-c-${PYPY_PV}" + +src_unpack() { + ebegin "Unpacking ${MY_P}.${ARCH}.xpak" + tar -x < <(xz -c -d --single-stream "${DISTDIR}/${MY_P}.${ARCH}.xpak") + eend ${?} || die "Unpacking ${MY_P} failed" +} + +src_install() { + insinto / + doins -r usr + fperms +x "/usr/lib/pypy3.7/pypy3-c-${PYPY_PV}" + pax-mark m "${ED}/usr/lib/pypy3.7/pypy3-c-${PYPY_PV}" +} diff --git a/dev-python/pypy3-exe/Manifest b/dev-python/pypy3-exe/Manifest index 09c8da41a5db..06254507392c 100644 --- a/dev-python/pypy3-exe/Manifest +++ b/dev-python/pypy3-exe/Manifest @@ -1,5 +1,7 @@ DIST pypy3.6-v7.3.1-src.tar.bz2 22712809 BLAKE2B 4250b3fe98c611b9635319c106b80e88ab469eab5f883babb738e175e7b7adc22c85f8ef3fdce1cdc127b521beef8d6c7862e188d8c8889c39f90136d6bbe374 SHA512 f8e32aae7f01225e0e4d6763eaac40fc02dffc3d0b6a30f22d422147f9be4f3290ea78160a912ffae311dea3d503eb31a7a4f3999d3b541fbccd93d1cef4ca56 DIST pypy3.6-v7.3.2-src.tar.bz2 22736022 BLAKE2B e2338ac3f7af06b987c43e93eab9ff14d46262143472b0393b30b011fff67d33add45d8198cee7109354e09c52a2540938abeef364b0cf12f2891ca9c7aac2a4 SHA512 ed861a57d6edf1548c061d10295313a05d0ac54fe68a8755211ff76fa2dc78d7b1479c6152dc5d0d1cdce4e247c240c1a2edf59ec8a53d0004ec7713514c9c35 +DIST pypy3.6-v7.3.3-src.tar.bz2 22484684 BLAKE2B a252e3070ec1c7cfd708cd694bd461d56241100463bac5ff7bbcf2d2667e01990ec8b4ceb947449ab1f620d0d5a8984bd8af3e2565555e5f73218e3c35ae1ebd SHA512 3bc9d9cc362f500e9e79c2694fc355706ac44d6dd5b8f5fb4d017d0997581472a9fdda08ccbe45469c7b52facdc0512be07843ba54d1d691fdb37f6628065879 DIST pypy3.6-v7.3.3rc1-src.tar.bz2 22401663 BLAKE2B 278b71a3b608999ee20b6558598eda453f3a87645965b8b705a11d05784722106c04b405375f62bd8e7ce2968df311314ee1672a2ddecb0f6afc49a3cbe8e670 SHA512 d865125925603e74412be7e750ab403670f05e76f2dfe6280c8b0ef123ed3e2f463d9457b65aa4f84c47a3529b2d3bca84b84307623bf995f60b549c85dcce2d DIST pypy3.7-v7.3.2-src.tar.bz2 25060911 BLAKE2B 35ecfee4c64e13539827c65a61e0cd359de4046f77553629cdf63479327c6ad86afd1443caa7a911a6271f496f0f3caf1b919ce91de717d0a71d008927b7f77b SHA512 563a9cf63e818b95aeb14c25b55bb5fb0bf8283f0b9f2bdd9a8833989beb651681f53f52368fb9db2c75fb60be0456eec87d48b557740b57847c4104003cb288 +DIST pypy3.7-v7.3.3-src.tar.bz2 24633503 BLAKE2B 0fb9fbb8866cf661c5b1d8d029fb2bc50737fae097875d0dac86c9ec21dc907093173b350a4f89d2c5a1fbed4c92ca4919f047536b828d4ee35583d615e7ddce SHA512 c98955e72dc0bd0452e4e16e0fe0ab318a34d6d57217ea33349e98ed047597ba97be7d15b41edd4dc85028fcca0a6257a4bb98fe96ce876e41a04df012261f4a DIST pypy3.7-v7.3.3rc1-src.tar.bz2 24511164 BLAKE2B 7fba1fde1bb248006f95fbb52dd9f237086f7221b99d6a288c1a32188a76ed76b1908e7f2054fd969b597c422c566214dd1e9ec409e243a776e8fa466fbf2039 SHA512 f98e7d209f75c4fa5645db16e1cc721ba80d44ad76030bd1c412800bb723ba528a83da89c8793a7e105d8391e72eeef7cb0198f9b30041178e90b628f14e5a3e diff --git a/dev-python/pypy3-exe/pypy3-exe-7.3.3.ebuild b/dev-python/pypy3-exe/pypy3-exe-7.3.3.ebuild new file mode 100644 index 000000000000..a8648c1e6ea9 --- /dev/null +++ b/dev-python/pypy3-exe/pypy3-exe-7.3.3.ebuild @@ -0,0 +1,156 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# pypy3 needs to be built using python 2 +PYTHON_COMPAT=( python2_7 ) +inherit check-reqs pax-utils python-any-r1 toolchain-funcs + +MY_P=pypy3.6-v${PV/_/} +DESCRIPTION="PyPy3 executable (build from source)" +HOMEPAGE="https://pypy.org/" +SRC_URI="https://buildbot.pypy.org/pypy/${MY_P}-src.tar.bz2" +S="${WORKDIR}/${MY_P}-src" + +LICENSE="MIT" +SLOT="${PV}" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 +jit low-memory ncurses cpu_flags_x86_sse2" + +RDEPEND=">=sys-libs/zlib-1.1.3:0= + dev-libs/libffi:0= + virtual/libintl:0= + dev-libs/expat:0= + bzip2? ( app-arch/bzip2:0= ) + ncurses? ( sys-libs/ncurses:0= ) + !dev-python/pypy3-exe-bin:${PV}" +DEPEND="${RDEPEND}" +BDEPEND=" + low-memory? ( dev-python/pypy ) + !low-memory? ( + || ( + dev-python/pypy + dev-lang/python:2.7 + ) + )" + +check_env() { + if use low-memory; then + CHECKREQS_MEMORY="1750M" + use amd64 && CHECKREQS_MEMORY="3500M" + else + CHECKREQS_MEMORY="3G" + use amd64 && CHECKREQS_MEMORY="6G" + fi + + check-reqs_pkg_pretend +} + +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && check_env +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]]; then + check_env + + # unset to allow forcing pypy below :) + use low-memory && EPYTHON= + if [[ ! ${EPYTHON} || ${EPYTHON} == pypy ]] && + { has_version -b dev-python/pypy || + has_version -b dev-python/pypy-bin; } + then + einfo "Using PyPy to perform the translation." + EPYTHON=pypy + else + einfo "Using ${EPYTHON:-python2} to perform the translation. Please note that upstream" + einfo "recommends using PyPy for that. If you wish to do so, please install" + einfo "dev-python/pypy and ensure that EPYTHON variable is unset." + python-any-r1_pkg_setup + fi + fi +} + +src_configure() { + tc-export CC + + local jit_backend + if use jit; then + jit_backend='--jit-backend=' + + # We only need the explicit sse2 switch for x86. + # On other arches we can rely on autodetection which uses + # compiler macros. Plus, --jit-backend= doesn't accept all + # the modern values... + + if use x86; then + if use cpu_flags_x86_sse2; then + jit_backend+=x86 + else + jit_backend+=x86-without-sse2 + fi + else + jit_backend+=auto + fi + fi + + local args=( + --no-shared + $(usex jit -Ojit -O2) + + ${jit_backend} + + pypy/goal/targetpypystandalone + ) + + # Avoid linking against libraries disabled by use flags + local opts=( + bzip2:bz2 + ncurses:_minimal_curses + ) + + local opt + for opt in "${opts[@]}"; do + local flag=${opt%:*} + local mod=${opt#*:} + + args+=( + $(usex ${flag} --withmod --withoutmod)-${mod} + ) + done + + local interp=( "${EPYTHON}" ) + if use low-memory; then + interp=( env PYPY_GC_MAX_DELTA=200MB + "${EPYTHON}" --jit loop_longevity=300 ) + fi + + if [[ ${EPYTHON} != pypy ]]; then + # reuse bundled pycparser to avoid external dep + mkdir -p "${T}"/pymod/cffi || die + : > "${T}"/pymod/cffi/__init__.py || die + cp -r lib_pypy/cffi/_pycparser "${T}"/pymod/cffi/ || die + local -x PYTHONPATH=${T}/pymod:${PYTHONPATH} + fi + + # translate into the C sources + # we're going to build them ourselves since otherwise pypy does not + # free up the unneeded memory before spawning the compiler + set -- "${interp[@]}" rpython/bin/rpython --batch --source "${args[@]}" + echo -e "\033[1m${@}\033[0m" + "${@}" || die "translation failed" +} + +src_compile() { + emake -C "${T}"/usession*-0/testing_1 +} + +src_install() { + local dest=/usr/lib/pypy3.6 + exeinto "${dest}" + newexe "${T}"/usession*-0/testing_1/pypy3-c pypy3-c-${PV} + insinto "${dest}"/include/${PV} + doins include/pypy_* + pax-mark m "${ED}${dest}/pypy3-c-${PV}" +} diff --git a/dev-python/pypy3-exe/pypy3-exe-7.3.3_p37.ebuild b/dev-python/pypy3-exe/pypy3-exe-7.3.3_p37.ebuild new file mode 100644 index 000000000000..5992fb3e87ef --- /dev/null +++ b/dev-python/pypy3-exe/pypy3-exe-7.3.3_p37.ebuild @@ -0,0 +1,157 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +# pypy3 needs to be built using python 2 +PYTHON_COMPAT=( python2_7 ) +inherit check-reqs pax-utils python-any-r1 toolchain-funcs + +PYPY_PV=${PV%_p37} +MY_P=pypy3.7-v${PYPY_PV/_/} +DESCRIPTION="PyPy3 executable (build from source)" +HOMEPAGE="https://pypy.org/" +SRC_URI="https://buildbot.pypy.org/pypy/${MY_P}-src.tar.bz2" +S="${WORKDIR}/${MY_P}-src" + +LICENSE="MIT" +SLOT="${PV}" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 +jit low-memory ncurses cpu_flags_x86_sse2" + +RDEPEND=">=sys-libs/zlib-1.1.3:0= + dev-libs/libffi:0= + virtual/libintl:0= + dev-libs/expat:0= + bzip2? ( app-arch/bzip2:0= ) + ncurses? ( sys-libs/ncurses:0= ) + !dev-python/pypy3-exe-bin:${PV}" +DEPEND="${RDEPEND}" +BDEPEND=" + low-memory? ( dev-python/pypy ) + !low-memory? ( + || ( + dev-python/pypy + dev-lang/python:2.7 + ) + )" + +check_env() { + if use low-memory; then + CHECKREQS_MEMORY="1750M" + use amd64 && CHECKREQS_MEMORY="3500M" + else + CHECKREQS_MEMORY="3G" + use amd64 && CHECKREQS_MEMORY="6G" + fi + + check-reqs_pkg_pretend +} + +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && check_env +} + +pkg_setup() { + if [[ ${MERGE_TYPE} != binary ]]; then + check_env + + # unset to allow forcing pypy below :) + use low-memory && EPYTHON= + if [[ ! ${EPYTHON} || ${EPYTHON} == pypy ]] && + { has_version -b dev-python/pypy || + has_version -b dev-python/pypy-bin; } + then + einfo "Using PyPy to perform the translation." + EPYTHON=pypy + else + einfo "Using ${EPYTHON:-python2} to perform the translation. Please note that upstream" + einfo "recommends using PyPy for that. If you wish to do so, please install" + einfo "dev-python/pypy and ensure that EPYTHON variable is unset." + python-any-r1_pkg_setup + fi + fi +} + +src_configure() { + tc-export CC + + local jit_backend + if use jit; then + jit_backend='--jit-backend=' + + # We only need the explicit sse2 switch for x86. + # On other arches we can rely on autodetection which uses + # compiler macros. Plus, --jit-backend= doesn't accept all + # the modern values... + + if use x86; then + if use cpu_flags_x86_sse2; then + jit_backend+=x86 + else + jit_backend+=x86-without-sse2 + fi + else + jit_backend+=auto + fi + fi + + local args=( + --no-shared + $(usex jit -Ojit -O2) + + ${jit_backend} + + pypy/goal/targetpypystandalone + ) + + # Avoid linking against libraries disabled by use flags + local opts=( + bzip2:bz2 + ncurses:_minimal_curses + ) + + local opt + for opt in "${opts[@]}"; do + local flag=${opt%:*} + local mod=${opt#*:} + + args+=( + $(usex ${flag} --withmod --withoutmod)-${mod} + ) + done + + local interp=( "${EPYTHON}" ) + if use low-memory; then + interp=( env PYPY_GC_MAX_DELTA=200MB + "${EPYTHON}" --jit loop_longevity=300 ) + fi + + if [[ ${EPYTHON} != pypy ]]; then + # reuse bundled pycparser to avoid external dep + mkdir -p "${T}"/pymod/cffi || die + : > "${T}"/pymod/cffi/__init__.py || die + cp -r lib_pypy/cffi/_pycparser "${T}"/pymod/cffi/ || die + local -x PYTHONPATH=${T}/pymod:${PYTHONPATH} + fi + + # translate into the C sources + # we're going to build them ourselves since otherwise pypy does not + # free up the unneeded memory before spawning the compiler + set -- "${interp[@]}" rpython/bin/rpython --batch --source "${args[@]}" + echo -e "\033[1m${@}\033[0m" + "${@}" || die "translation failed" +} + +src_compile() { + emake -C "${T}"/usession*-0/testing_1 +} + +src_install() { + local dest=/usr/lib/pypy3.7 + exeinto "${dest}" + newexe "${T}"/usession*-0/testing_1/pypy3-c pypy3-c-${PYPY_PV} + insinto "${dest}"/include/${PYPY_PV} + doins include/pypy_* + pax-mark m "${ED}${dest}/pypy3-c-${PYPY_PV}" +} diff --git a/dev-python/pypy3/Manifest b/dev-python/pypy3/Manifest index 09c8da41a5db..06254507392c 100644 --- a/dev-python/pypy3/Manifest +++ b/dev-python/pypy3/Manifest @@ -1,5 +1,7 @@ DIST pypy3.6-v7.3.1-src.tar.bz2 22712809 BLAKE2B 4250b3fe98c611b9635319c106b80e88ab469eab5f883babb738e175e7b7adc22c85f8ef3fdce1cdc127b521beef8d6c7862e188d8c8889c39f90136d6bbe374 SHA512 f8e32aae7f01225e0e4d6763eaac40fc02dffc3d0b6a30f22d422147f9be4f3290ea78160a912ffae311dea3d503eb31a7a4f3999d3b541fbccd93d1cef4ca56 DIST pypy3.6-v7.3.2-src.tar.bz2 22736022 BLAKE2B e2338ac3f7af06b987c43e93eab9ff14d46262143472b0393b30b011fff67d33add45d8198cee7109354e09c52a2540938abeef364b0cf12f2891ca9c7aac2a4 SHA512 ed861a57d6edf1548c061d10295313a05d0ac54fe68a8755211ff76fa2dc78d7b1479c6152dc5d0d1cdce4e247c240c1a2edf59ec8a53d0004ec7713514c9c35 +DIST pypy3.6-v7.3.3-src.tar.bz2 22484684 BLAKE2B a252e3070ec1c7cfd708cd694bd461d56241100463bac5ff7bbcf2d2667e01990ec8b4ceb947449ab1f620d0d5a8984bd8af3e2565555e5f73218e3c35ae1ebd SHA512 3bc9d9cc362f500e9e79c2694fc355706ac44d6dd5b8f5fb4d017d0997581472a9fdda08ccbe45469c7b52facdc0512be07843ba54d1d691fdb37f6628065879 DIST pypy3.6-v7.3.3rc1-src.tar.bz2 22401663 BLAKE2B 278b71a3b608999ee20b6558598eda453f3a87645965b8b705a11d05784722106c04b405375f62bd8e7ce2968df311314ee1672a2ddecb0f6afc49a3cbe8e670 SHA512 d865125925603e74412be7e750ab403670f05e76f2dfe6280c8b0ef123ed3e2f463d9457b65aa4f84c47a3529b2d3bca84b84307623bf995f60b549c85dcce2d DIST pypy3.7-v7.3.2-src.tar.bz2 25060911 BLAKE2B 35ecfee4c64e13539827c65a61e0cd359de4046f77553629cdf63479327c6ad86afd1443caa7a911a6271f496f0f3caf1b919ce91de717d0a71d008927b7f77b SHA512 563a9cf63e818b95aeb14c25b55bb5fb0bf8283f0b9f2bdd9a8833989beb651681f53f52368fb9db2c75fb60be0456eec87d48b557740b57847c4104003cb288 +DIST pypy3.7-v7.3.3-src.tar.bz2 24633503 BLAKE2B 0fb9fbb8866cf661c5b1d8d029fb2bc50737fae097875d0dac86c9ec21dc907093173b350a4f89d2c5a1fbed4c92ca4919f047536b828d4ee35583d615e7ddce SHA512 c98955e72dc0bd0452e4e16e0fe0ab318a34d6d57217ea33349e98ed047597ba97be7d15b41edd4dc85028fcca0a6257a4bb98fe96ce876e41a04df012261f4a DIST pypy3.7-v7.3.3rc1-src.tar.bz2 24511164 BLAKE2B 7fba1fde1bb248006f95fbb52dd9f237086f7221b99d6a288c1a32188a76ed76b1908e7f2054fd969b597c422c566214dd1e9ec409e243a776e8fa466fbf2039 SHA512 f98e7d209f75c4fa5645db16e1cc721ba80d44ad76030bd1c412800bb723ba528a83da89c8793a7e105d8391e72eeef7cb0198f9b30041178e90b628f14e5a3e diff --git a/dev-python/pypy3/pypy3-7.3.3.ebuild b/dev-python/pypy3/pypy3-7.3.3.ebuild new file mode 100644 index 000000000000..c0706600dea4 --- /dev/null +++ b/dev-python/pypy3/pypy3-7.3.3.ebuild @@ -0,0 +1,207 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 ) +inherit pax-utils python-any-r1 toolchain-funcs + +MY_P=pypy3.6-v${PV/_/} + +DESCRIPTION="A fast, compliant alternative implementation of the Python (3.6) language" +HOMEPAGE="https://pypy.org/" +SRC_URI="https://buildbot.pypy.org/pypy/${MY_P}-src.tar.bz2" +S="${WORKDIR}/${MY_P}-src" + +LICENSE="MIT" +# pypy3 -c 'import sysconfig; print(sysconfig.get_config_var("SOABI"))' +SLOT="0/pypy36-pp73" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 gdbm +jit libressl ncurses sqlite test tk" +RESTRICT="!test? ( test )" + +RDEPEND=" + || ( + dev-python/pypy3-exe:${PV}[bzip2?,ncurses?] + dev-python/pypy3-exe-bin:${PV} + ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + gdbm? ( sys-libs/gdbm:0= ) + sqlite? ( dev-db/sqlite:3= ) + tk? ( + dev-lang/tk:0= + dev-tcltk/tix:0= + ) + ! /dev/null || die + eapply "${FILESDIR}"/python-3.5-distutils-OO-build.patch + popd > /dev/null || die + + # see http://buildbot.pypy.org/summary?branch=py3.6&builder=pypy-c-jit-linux-x86-64 + sed -i -e 's:test_jumpy:_&:' \ + lib-python/3/test/test_dis.py || die + sed -i -e 's:test_get_and_set_scheduler_and_param:_&:' \ + lib-python/3/test/test_posix.py || die + sed -i -e 's:test_auto_history:_&:' \ + -e 's:test_history_size:_&:' \ + lib-python/3/test/test_readline.py || die + sed -i -e 's:test_eval_bytes_invalid_escape:_&:' \ + -e 's:test_eval_str_invalid_escape:_&:' \ + lib-python/3/test/test_string_literals.py || die + sed -i -e 's:test_jump_out_of_async_for_block:_&:' \ + -e 's:test_jump_over_async_for_block_before_else:_&:' \ + -e 's:test_no_jump_.*wards_into_async_for_block:_&:' \ + -e 's:test_no_jump_into_async_for_block_before_else:_&:' \ + -e 's:test_no_jump_from_yield:_&:' \ + lib-python/3/test/test_sys_settrace.py || die + sed -i -e 's:test_circular_imports:_&:' \ + lib-python/3/test/test_threaded_import.py || die + + # the first one's broken by sandbox, the second by our env + sed -i -e 's:test_empty_env:_&:' \ + -e 's:test_executable(:_&:' \ + -e 's:test_executable_without_cwd:_&:' \ + lib-python/3/test/test_subprocess.py || die + + # XXX + sed -i -e 's:test_locale:_&:' \ + lib-python/3/test/test_format.py || die + sed -i -e 's:test_decompressor_bug_28275:_&:' \ + lib-python/3/test/test_lzma.py || die + + eapply_user +} + +src_configure() { + tc-export CC +} + +src_compile() { + # copy over to make sys.prefix happy + cp -p "${BROOT}"/usr/lib/pypy3.6/pypy3-c-${PV} pypy3-c || die + cp -p "${BROOT}"/usr/lib/pypy3.6/include/${PV}/* include/ || die + # (not installed by pypy) + rm pypy/module/cpyext/include/_numpypy/numpy/README || die + mv pypy/module/cpyext/include/* include/ || die + mv pypy/module/cpyext/parse/*.h include/ || die + pax-mark m pypy3-c + + einfo "Generating caches and CFFI modules ..." + + # Generate Grammar and PatternGrammar pickles. + ./pypy3-c -c "import lib2to3.pygram, lib2to3.patcomp; lib2to3.patcomp.PatternCompiler()" \ + || die "Generation of Grammar and PatternGrammar pickles failed" + + # Generate cffi modules + # Please keep in sync with pypy/tool/build_cffi_imports.py! +#cffi_build_scripts = { +# "_blake2": "_blake2/_blake2_build.py", +# "_ssl": "_ssl_build.py", +# "sqlite3": "_sqlite3_build.py", +# "audioop": "_audioop_build.py", +# "tk": "_tkinter/tklib_build.py", +# "curses": "_curses_build.py" if sys.platform != "win32" else None, +# "syslog": "_syslog_build.py" if sys.platform != "win32" else None, +# "gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, +# "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, +# "resource": "_resource_build.py" if sys.platform != "win32" else None, +# "lzma": "_lzma_build.py", +# "_decimal": "_decimal_build.py", +# "_sha3": "_sha3/_sha3_build.py", + cffi_targets=( blake2/_blake2 sha3/_sha3 ssl + audioop syslog pwdgrp resource lzma decimal ) + use gdbm && cffi_targets+=( gdbm ) + use ncurses && cffi_targets+=( curses ) + use sqlite && cffi_targets+=( sqlite3 ) + use tk && cffi_targets+=( tkinter/tklib ) + + local t + # all modules except tkinter output to . + # tkinter outputs to the correct dir ... + cd lib_pypy || die + for t in "${cffi_targets[@]}"; do + # tkinter doesn't work via -m + ../pypy3-c "_${t}_build.py" || die "Failed to build CFFI bindings for ${t}" + done + + # Cleanup temporary objects + find -name "_cffi_*.[co]" -delete || die + find -type d -empty -delete || die +} + +src_test() { + # (unset) + local -x PYTHONDONTWRITEBYTECODE= + local -x COLUMNS=80 + + # Test runner requires Python 2 too. However, it spawns PyPy3 + # internally so that we end up testing the correct interpreter. + "${EPYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die +} + +src_install() { + local dest=/usr/lib/pypy3.6 + einfo "Installing PyPy ..." + dosym pypy3-c-${PV} "${dest}/pypy3-c" + insinto "${dest}" + # preserve mtimes to avoid obsoleting caches + insopts -p + doins -r include lib_pypy lib-python + + # replace copied headers with symlinks + for x in "${BROOT}"/usr/lib/pypy3.6/include/${PV}/*; do + dosym "${PV}/${x##*/}" "${dest}/include/${x##*/}" + done + + dosym ../lib/pypy3.6/pypy3-c /usr/bin/pypy3 + dodoc README.rst + + if ! use gdbm; then + rm -r "${ED}${dest}"/lib_pypy/_gdbm* || die + fi + if ! use sqlite; then + rm -r "${ED}${dest}"/lib-python/*3/sqlite3 \ + "${ED}${dest}"/lib_pypy/_sqlite3* \ + "${ED}${dest}"/lib-python/*3/test/test_sqlite.py || die + fi + if ! use tk; then + rm -r "${ED}${dest}"/lib-python/*3/{idlelib,tkinter} \ + "${ED}${dest}"/lib_pypy/_tkinter \ + "${ED}${dest}"/lib-python/*3/test/test_{tcl,tk,ttk*}.py || die + fi + + local -x EPYTHON=pypy3 + local -x PYTHON=${ED}${dest}/pypy3-c-${PV} + # temporarily copy to build tree to facilitate module builds + cp -p "${BROOT}${dest}/pypy3-c-${PV}" "${PYTHON}" || die + + echo "EPYTHON='${EPYTHON}'" > epython.py || die + python_moduleinto /usr/lib/pypy3.6/site-packages + python_domodule epython.py + + einfo "Byte-compiling Python standard library..." + python_optimize "${ED}${dest}" + + # remove to avoid collisions + rm "${PYTHON}" || die +} diff --git a/dev-python/pypy3/pypy3-7.3.3_p37.ebuild b/dev-python/pypy3/pypy3-7.3.3_p37.ebuild new file mode 100644 index 000000000000..9c1fc7d860ba --- /dev/null +++ b/dev-python/pypy3/pypy3-7.3.3_p37.ebuild @@ -0,0 +1,178 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 ) +inherit pax-utils python-any-r1 toolchain-funcs + +PYPY_PV=${PV%_p37} +MY_P=pypy3.7-v${PYPY_PV/_/} + +DESCRIPTION="A fast, compliant alternative implementation of the Python (3.7) language" +HOMEPAGE="https://pypy.org/" +SRC_URI="https://buildbot.pypy.org/pypy/${MY_P}-src.tar.bz2" +S="${WORKDIR}/${MY_P}-src" + +LICENSE="MIT" +# pypy3 -c 'import sysconfig; print(sysconfig.get_config_var("SOABI"))' +SLOT="0/pypy37-pp73" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="bzip2 gdbm +jit libressl ncurses sqlite test tk" +# pypy3.7 is in alpha state and a lot of tests are failing +RESTRICT="test" + +RDEPEND=" + || ( + dev-python/pypy3-exe:${PV}[bzip2?,ncurses?] + dev-python/pypy3-exe-bin:${PV} + ) + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + gdbm? ( sys-libs/gdbm:0= ) + sqlite? ( dev-db/sqlite:3= ) + tk? ( + dev-lang/tk:0= + dev-tcltk/tix:0= + ) + ! /dev/null || die + eapply "${FILESDIR}"/python-3.5-distutils-OO-build.patch + popd > /dev/null || die + + eapply_user +} + +src_configure() { + tc-export CC +} + +src_compile() { + # copy over to make sys.prefix happy + cp -p "${BROOT}"/usr/lib/pypy3.7/pypy3-c-${PYPY_PV} pypy3-c || die + cp -p "${BROOT}"/usr/lib/pypy3.7/include/${PYPY_PV}/* include/ || die + # (not installed by pypy) + rm pypy/module/cpyext/include/_numpypy/numpy/README || die + mv pypy/module/cpyext/include/* include/ || die + mv pypy/module/cpyext/parse/*.h include/ || die + pax-mark m pypy3-c + + einfo "Generating caches and CFFI modules ..." + + # Generate Grammar and PatternGrammar pickles. + ./pypy3-c -c "import lib2to3.pygram, lib2to3.patcomp; lib2to3.patcomp.PatternCompiler()" \ + || die "Generation of Grammar and PatternGrammar pickles failed" + + # Generate cffi modules + # Please keep in sync with pypy/tool/build_cffi_imports.py! +#cffi_build_scripts = { +# "_blake2": "_blake2/_blake2_build.py", +# "_ssl": "_ssl_build.py", +# "sqlite3": "_sqlite3_build.py", +# "audioop": "_audioop_build.py", +# "tk": "_tkinter/tklib_build.py", +# "curses": "_curses_build.py" if sys.platform != "win32" else None, +# "syslog": "_syslog_build.py" if sys.platform != "win32" else None, +# "gdbm": "_gdbm_build.py" if sys.platform != "win32" else None, +# "pwdgrp": "_pwdgrp_build.py" if sys.platform != "win32" else None, +# "resource": "_resource_build.py" if sys.platform != "win32" else None, +# "lzma": "_lzma_build.py", +# "_decimal": "_decimal_build.py", +# "_sha3": "_sha3/_sha3_build.py", + cffi_targets=( blake2/_blake2 sha3/_sha3 ssl + audioop syslog pwdgrp resource lzma decimal ) + use gdbm && cffi_targets+=( gdbm ) + use ncurses && cffi_targets+=( curses ) + use sqlite && cffi_targets+=( sqlite3 ) + use tk && cffi_targets+=( tkinter/tklib ) + + local t + # all modules except tkinter output to . + # tkinter outputs to the correct dir ... + cd lib_pypy || die + for t in "${cffi_targets[@]}"; do + # tkinter doesn't work via -m + ../pypy3-c "_${t}_build.py" || die "Failed to build CFFI bindings for ${t}" + done + + # Cleanup temporary objects + find -name "_cffi_*.[co]" -delete || die + find -type d -empty -delete || die +} + +src_test() { + # (unset) + local -x PYTHONDONTWRITEBYTECODE= + local -x COLUMNS=80 + + # Test runner requires Python 2 too. However, it spawns PyPy3 + # internally so that we end up testing the correct interpreter. + # (--deselect for failing doctests) + "${EPYTHON}" ./pypy/test_all.py --pypy=./pypy3-c -vv lib-python || die +} + +src_install() { + local dest=/usr/lib/pypy3.7 + einfo "Installing PyPy ..." + dosym pypy3-c-${PYPY_PV} "${dest}/pypy3-c" + insinto "${dest}" + # preserve mtimes to avoid obsoleting caches + insopts -p + doins -r include lib_pypy lib-python + + # replace copied headers with symlinks + for x in "${BROOT}"/usr/lib/pypy3.7/include/${PYPY_PV}/*; do + dosym "${PYPY_PV}/${x##*/}" "${dest}/include/${x##*/}" + done + + dosym ../lib/pypy3.7/pypy3-c /usr/bin/pypy3 + dodoc README.rst + + if ! use gdbm; then + rm -r "${ED}${dest}"/lib_pypy/_gdbm* || die + fi + if ! use sqlite; then + rm -r "${ED}${dest}"/lib-python/*3/sqlite3 \ + "${ED}${dest}"/lib_pypy/_sqlite3* \ + "${ED}${dest}"/lib-python/*3/test/test_sqlite.py || die + fi + if ! use tk; then + rm -r "${ED}${dest}"/lib-python/*3/{idlelib,tkinter} \ + "${ED}${dest}"/lib_pypy/_tkinter \ + "${ED}${dest}"/lib-python/*3/test/test_{tcl,tk,ttk*}.py || die + fi + + local -x EPYTHON=pypy3 + local -x PYTHON=${ED}${dest}/pypy3-c-${PYPY_PV} + # temporarily copy to build tree to facilitate module builds + cp -p "${BROOT}${dest}/pypy3-c-${PYPY_PV}" "${PYTHON}" || die + + echo "EPYTHON='${EPYTHON}'" > epython.py || die + python_moduleinto /usr/lib/pypy3.7/site-packages + python_domodule epython.py + + einfo "Byte-compiling Python standard library..." + python_optimize "${ED}${dest}" + + # remove to avoid collisions + rm "${PYTHON}" || die +} diff --git a/dev-python/pyqtgraph/pyqtgraph-0.11.0_rc0.ebuild b/dev-python/pyqtgraph/pyqtgraph-0.11.0_rc0.ebuild index d6e54830b5ac..c6a713fe7b54 100644 --- a/dev-python/pyqtgraph/pyqtgraph-0.11.0_rc0.ebuild +++ b/dev-python/pyqtgraph/pyqtgraph-0.11.0_rc0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 diff --git a/dev-python/pyquery/Manifest b/dev-python/pyquery/Manifest index b4cd5f54f220..4f3ec79b219b 100644 --- a/dev-python/pyquery/Manifest +++ b/dev-python/pyquery/Manifest @@ -1 +1,2 @@ DIST pyquery-1.4.1.tar.gz 47983 BLAKE2B eb8d0ca59122734a4c715c33f40fd0b5fcc8edcabe9e41649ddf332feb1df603f8527a668aa7b9d78974b3d049e774355296644abd9b4d426d96e6e3c7a74065 SHA512 e2bfbbf51f99a408e9696a2b9c15f8875813847a10b5bd93c4c7a6886ac1b3ae6c7883ec4fb64e9bccab2127617843961e181044fe927f3c80c8ac363ed86141 +DIST pyquery-1.4.3.tar.gz 47448 BLAKE2B 32451dfc8f8160207b4be12006ceba3098b8cb344bfa3e80ccf75f8cfca9542614ae78b9bfec773139cbbf12434201f92f8b4738e7d9e6241b3addfeb1bc8dda SHA512 cb61326e38f78763ca15de09e3a56dad776b3d4831b54eabf295db0f9af8bf04599642c73f5db3e3172b86d7b66ba2ef626c8cba2dfb458af6ac432d15ea7cba diff --git a/dev-python/pyquery/pyquery-1.4.3.ebuild b/dev-python/pyquery/pyquery-1.4.3.ebuild new file mode 100644 index 000000000000..cbc62b48fde8 --- /dev/null +++ b/dev-python/pyquery/pyquery-1.4.3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) + +inherit distutils-r1 optfeature + +DESCRIPTION="A jQuery-like library for python" +HOMEPAGE="https://github.com/gawel/pyquery" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/lxml-2.1[${PYTHON_USEDEP}] + >dev-python/cssselect-0.7.9[${PYTHON_USEDEP}] + >=dev-python/webob-1.1.9[${PYTHON_USEDEP}]" +DEPEND=" + test? ( ${RDEPEND} + dev-python/beautifulsoup[${PYTHON_USEDEP}] + dev-python/requests[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/webtest[${PYTHON_USEDEP}] + )" + +RESTRICT+=" !test? ( test )" + +PATCHES=( + "${FILESDIR}/pyquery-1.4.1-network-tests.patch" + "${FILESDIR}/pyquery-1.4.1-tests-pypy.patch" +) + +python_test() { + # The suite, it appears, requires this hard setting of PYTHONPATH! + PYTHONPATH=. nosetests || die "Tests fail with ${EPYTHON}" +} + +pkg_postinst() { + optfeature "Support for BeautifulSoup3 as a parser backend" dev-python/beautifulsoup +} diff --git a/dev-python/pytest-django/pytest-django-4.1.0.ebuild b/dev-python/pytest-django/pytest-django-4.1.0.ebuild index ffdfeaaaeff3..b51de52635ec 100644 --- a/dev-python/pytest-django/pytest-django-4.1.0.ebuild +++ b/dev-python/pytest-django/pytest-django-4.1.0.ebuild @@ -17,7 +17,7 @@ SRC_URI=" -> ${P}.gh.tar.gz" LICENSE="BSD" -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" SLOT="0" RDEPEND=" diff --git a/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild b/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild index b0f498123406..9e9fed2e016d 100644 --- a/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild +++ b/dev-python/python-swiftclient/python-swiftclient-3.10.1.ebuild @@ -22,6 +22,7 @@ DEPEND="dev-python/pbr[${PYTHON_USEDEP}] >=dev-python/coverage-4.0[${PYTHON_USEDEP}] !~dev-python/coverage-4.4[${PYTHON_USEDEP}] >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}] + dev-python/python-keystoneclient[${PYTHON_USEDEP}] >=dev-python/mock-1.2.0[${PYTHON_USEDEP}] >=dev-python/stestr-2.0.0[${PYTHON_USEDEP}] !~dev-python/stestr-3.0.0[${PYTHON_USEDEP}] @@ -39,8 +40,8 @@ python_prepare_all() { } python_test() { - testr init - testr run || die "tests failed under ${EPYTHON}" + stestr init + stestr run || die "tests failed under ${EPYTHON}" flake8 tests && einfo "run of tests folder by flake8 passed" flake8 bin/swift && einfo "run of ./bin/swift by flake8 passed" } diff --git a/dev-python/python-systemd/python-systemd-234.ebuild b/dev-python/python-systemd/python-systemd-234.ebuild index a04ef4c50fa5..dafd6dde7656 100644 --- a/dev-python/python-systemd/python-systemd-234.ebuild +++ b/dev-python/python-systemd/python-systemd-234.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/systemd/python-systemd/archive/v${PV}.tar.gz -> ${P} LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ppc ppc64 sparc x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/dev-python/python-utils/python-utils-2.3.0.ebuild b/dev-python/python-utils/python-utils-2.3.0.ebuild index 24e371d90eb6..1e71d600470d 100644 --- a/dev-python/python-utils/python-utils-2.3.0.ebuild +++ b/dev-python/python-utils/python-utils-2.3.0.ebuild @@ -2,8 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7} pypy3) -PATCHES=( "${FILESDIR}"/${P}-pytest-runner.patch ) +PYTHON_COMPAT=( python3_{6..9} pypy3) inherit distutils-r1 @@ -15,17 +14,15 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64" -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}]" -BDEPEND="${RDEPEND} - dev-python/pytest-flakes[${PYTHON_USEDEP}]" +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" + +PATCHES=( "${FILESDIR}"/${P}-pytest-runner.patch ) + +distutils_enable_tests pytest python_prepare_all() { find . -name '__pycache__' -prune -exec rm -rf {} \; || die "Cleaning __pycache__ failed" find . -name '*.pyc' -exec rm -f {} \; || die "Cleaning *.pyc failed" + sed -i -e '/--cov/d' -e '/--pep8/d' -e '/--flakes/d' pytest.ini || die distutils-r1_python_prepare_all } - -python_test() { - pytest -v || die -} diff --git a/dev-python/python-xlib/Manifest b/dev-python/python-xlib/Manifest index c1a9f5be732d..cfa068ce6e15 100644 --- a/dev-python/python-xlib/Manifest +++ b/dev-python/python-xlib/Manifest @@ -1 +1,2 @@ DIST python-xlib-0.28.tar.bz2 203306 BLAKE2B f8916fd0c62c8b4546f1c381fc9f13b1e86c4ae6da06434b666f4952ae6a28f06389b006d48dc3139f9018cc3c126ab8316b968e64da7b2f4d22bcc2a2c83bb9 SHA512 69c17486ffc465c2f5ca740761f52191b4ba86b1e11b047f146f949d8431a0ad7fb1007b7fe29fd659dc2e7be6facc9ea1d7b1e87cd534ae425555f0d512c4c2 +DIST python-xlib-0.29.tar.bz2 209322 BLAKE2B 4d94d99c8094947ce1acb84f3adc28ab4b6e9d6aaf61317b625e50578ece3800f6462551f8656b194d5635e3e35a5d6fec86d4eb553d7b65684a7f74fdf0dc14 SHA512 6275deb2c1e2068d560c45803e651fef9910b5cb921e043ed8204878a1f885b92122b6af3d4ac33f220231c1933d3150524169d0078f64b74df29a8f617d953a diff --git a/dev-python/python-xlib/python-xlib-0.29.ebuild b/dev-python/python-xlib/python-xlib-0.29.ebuild new file mode 100644 index 000000000000..576677a71c44 --- /dev/null +++ b/dev-python/python-xlib/python-xlib-0.29.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 virtualx + +DESCRIPTION="A fully functional X client library for Python, written in Python" +HOMEPAGE="https://github.com/python-xlib/python-xlib" +SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.bz2" + +LICENSE="LGPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="doc" + +RDEPEND="dev-python/six[${PYTHON_USEDEP}]" +BDEPEND="${RDEPEND} + dev-python/setuptools_scm[${PYTHON_USEDEP}] + doc? ( sys-apps/texinfo )" + +distutils_enable_tests unittest + +python_compile_all() { + use doc && emake -C doc/info +} + +src_test() { + virtx distutils-r1_src_test +} + +python_install_all() { + use doc && doinfo doc/info/*.info + distutils-r1_python_install_all +} diff --git a/dev-python/re-assert/re-assert-1.1.0.ebuild b/dev-python/re-assert/re-assert-1.1.0.ebuild index 9a5914b857f8..0e701ccf39a0 100644 --- a/dev-python/re-assert/re-assert-1.1.0.ebuild +++ b/dev-python/re-assert/re-assert-1.1.0.ebuild @@ -14,7 +14,7 @@ SRC_URI=" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" RDEPEND="dev-python/regex[${PYTHON_USEDEP}]" diff --git a/dev-python/sentry-sdk/sentry-sdk-0.18.0.ebuild b/dev-python/sentry-sdk/sentry-sdk-0.18.0.ebuild index d92a7e9b4c13..4851cb547191 100644 --- a/dev-python/sentry-sdk/sentry-sdk-0.18.0.ebuild +++ b/dev-python/sentry-sdk/sentry-sdk-0.18.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/sentry-python-${PV}" LICENSE="PSF-2" SLOT="0" -KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 x86" +KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 x86" RDEPEND=" dev-python/urllib3[${PYTHON_USEDEP}] diff --git a/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild b/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild index c95a72931379..8b4b5633c4f0 100644 --- a/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild +++ b/dev-python/sentry-sdk/sentry-sdk-0.19.4.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/sentry-python-${PV}" LICENSE="PSF-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" RDEPEND=" dev-python/urllib3[${PYTHON_USEDEP}] diff --git a/dev-python/sqlalchemy/sqlalchemy-1.3.20.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.3.20.ebuild index 6f25b32a231a..f7b24b4e48c3 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.3.20.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.3.20.ebuild @@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris" IUSE="examples +sqlite test" REQUIRED_USE="test? ( sqlite )" diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest index bc2eddeb5c1a..4dd885242533 100644 --- a/dev-python/tqdm/Manifest +++ b/dev-python/tqdm/Manifest @@ -1,3 +1,4 @@ DIST tqdm-4.49.0.tar.gz 151935 BLAKE2B 790e2912a402795af9aba2e4db80cf41a7cb08267dad5946d89b4d9fb8b8c7a1dd65f33dcaf315bbe82862c0c2934b2dd2b8cee894c592d5a61ac61dd8c5126f SHA512 44197eb09b90551eb66c8b2e0dc97f6864fc91654465e7d478ece6ecd610242d8e378c6814f9d3e1cf05b2db1aa533743535051ad456ec5ef6d477be906ee217 DIST tqdm-4.51.0.tar.gz 152976 BLAKE2B f9cef9de6a77c21e40394edd006fbd8fa913af4d3a9a8ac68bd9fde81b1eebc404f6fab90d9aadc57ce2ccfbc3a2f8d8879b151f6283dc34edc25d70f69ae6e1 SHA512 04bb2a173b9b79b76844fedbc14572fa955232d1dcb6ac55b7265c4cc7a4f712f2c2965ac3bcb9e10ea1bd041593230b047365816bf508d457d873a2d4830d3f DIST tqdm-4.52.0.tar.gz 180391 BLAKE2B f0dc1e991088deeb0160f227263c105dc0b2dd90be9be74eb0eecfc1195a6b831150d195ca6cfddeaef6deeef1b8c82df3240158792dfe9a238eb0c52730b570 SHA512 fe2161ac61528a4d3bf697dc6369fb06e2c0defb2275165a701a28b80bba98380ea156458b87a5c9c49d3fc6da56f05a54fbae935cf2a17d82eb5adaf79902f0 +DIST tqdm-4.53.0.tar.gz 179940 BLAKE2B 022fd8eae70a38306d201981bd6c2e469791abc86e3e10bf2bcbe4936e4e6791dc24b3e064c6adb830fd908a1544389fdba8f7017bee17632925c1bcc3d42349 SHA512 ffb06058a71e31497ced0b6b5ce8671a7e958968e0a08e1b68dc9f3a9acac415c1708f6669d369ab484bbc07a8fc06716ed32fde70f22c0dbd8242417f95a713 diff --git a/dev-python/tqdm/tqdm-4.53.0.ebuild b/dev-python/tqdm/tqdm-4.53.0.ebuild new file mode 100644 index 000000000000..d525d19a374e --- /dev/null +++ b/dev-python/tqdm/tqdm-4.53.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} ) + +inherit distutils-r1 + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/tqdm/tqdm" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +fi + +DESCRIPTION="Add a progress meter to your loops in a second" +HOMEPAGE="https://github.com/tqdm/tqdm" + +LICENSE="MIT" +SLOT="0" +IUSE="examples" + +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + dev-python/toml[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest + +python_test() { + # Skip unpredictable performance tests + pytest -vv --ignore 'tests/tests_perf.py' || + die "Tests failed with ${EPYTHON}" +} + +python_install() { + doman "${BUILD_DIR}"/lib/tqdm/tqdm.1 + rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die + distutils-r1_python_install +} + +python_install_all() { + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi + distutils-r1_python_install_all +} diff --git a/dev-python/urllib3/urllib3-1.26.2.ebuild b/dev-python/urllib3/urllib3-1.26.2.ebuild index d690d8c84ad2..df599361eb58 100644 --- a/dev-python/urllib3/urllib3-1.26.2.ebuild +++ b/dev-python/urllib3/urllib3-1.26.2.ebuild @@ -41,10 +41,6 @@ BDEPEND=" ) " -distutils_enable_sphinx docs \ - dev-python/alabaster \ - dev-python/mock - python_prepare_all() { # https://github.com/urllib3/urllib3/issues/1756 sed -e 's:10.255.255.1:240.0.0.0:' \ diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest index f24f1608ab6f..7d64807cd467 100644 --- a/dev-python/virtualenv/Manifest +++ b/dev-python/virtualenv/Manifest @@ -1,3 +1,4 @@ DIST virtualenv-16.7.10.tar.gz 5116776 BLAKE2B 42f0a4b4330850b504f8febd991ef6ecdcbb0821efdd94ca324a8cc34a68a760a8a98de97f0cb2384d8e6cbb0ce8f261995c6433886444e29b75ba0ce09ca12c SHA512 f06d7c354ce1910f04dbcbe1a77e60392653bbe4f638bafbe9284454db2c0e5d63cf9159201d0916fc01aaba91d45fb733b63096c38517fcd83fd00ed8b26d28 DIST virtualenv-20.0.35.tar.gz 8283086 BLAKE2B 66d6b22d9928bf3925c8911e24fa1ba22d1276518c23e0d951c58cca0cb34f67e5053f27882ab9eafbdba040a893861eadb40497398d9deaacb45c461bfa01cc SHA512 066cefbf9c6c77277a1c97c8cf555a8b4411784ad289c058f107872be15e9dd4ef9ac6e4ec64143e0b30512d9f454408e18e434ef8f9b2bfe3e6456fade71251 DIST virtualenv-20.1.0.tar.gz 8284462 BLAKE2B 4356c9c49f7bd2dbb6cf8998be5cd3970804bdec5e3c1223439700f4b5597cd843cdb17b722d54f0181094296247d1f2d4c27980679602b94020fdf1e95dd73f SHA512 740bf8ba30d836c240d248dd2fa31a8702cfa8f96a6192dd6430dbeff3ebbf0fe67d4fd2439ed4961869731520b097783a29381eae3f81f6700b6050b75422c8 +DIST virtualenv-20.2.0.tar.gz 8286133 BLAKE2B 79f14b54afb89c8c3d63f084d758d33f7672f533f346138f9a4f55aeada9cfc286136642245cef1617e2c6d5e968ad6b45c1e76da311748fd52d97cbbf8e4af0 SHA512 38d48c73230a71f308c807e34b78a80bd89a3a038afcbe6623b7ac3e7969689116870836a8e7980856077fc2eead0c14e16dfdc2d5ffb2976e0a9c4b13b5c2d0 diff --git a/dev-python/virtualenv/virtualenv-20.2.0.ebuild b/dev-python/virtualenv/virtualenv-20.2.0.ebuild new file mode 100644 index 000000000000..d04924a4c67c --- /dev/null +++ b/dev-python/virtualenv/virtualenv-20.2.0.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} pypy3 ) +DISTUTILS_USE_SETUPTOOLS=manual + +inherit distutils-r1 + +DESCRIPTION="Virtual Python Environment builder" +HOMEPAGE=" + https://virtualenv.pypa.io/en/stable/ + https://pypi.org/project/virtualenv/ + https://github.com/pypa/virtualenv/ +" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/appdirs-1.4.3[${PYTHON_USEDEP}] + >=dev-python/distlib-0.3.1[${PYTHON_USEDEP}] + >=dev-python/filelock-3[${PYTHON_USEDEP}] + >=dev-python/setuptools-41[${PYTHON_USEDEP}] + >=dev-python/six-1.9.0[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/importlib_metadata-0.12[${PYTHON_USEDEP}] + ' python3_{6,7} pypy3) + $(python_gen_cond_dep ' + >=dev-python/importlib_resources-1.0[${PYTHON_USEDEP}] + ' python3_6 pypy3)" +# coverage is used somehow magically in virtualenv, maybe it actually +# tests something useful +BDEPEND=" + dev-python/setuptools_scm[${PYTHON_USEDEP}] + test? ( + ${RDEPEND} + $(python_gen_cond_dep ' + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/flaky[${PYTHON_USEDEP}] + >=dev-python/pip-20.0.2[${PYTHON_USEDEP}] + >=dev-python/pytest-5[${PYTHON_USEDEP}] + >=dev-python/pytest-freezegun-0.4.1[${PYTHON_USEDEP}] + >=dev-python/pytest-mock-2.0.0[${PYTHON_USEDEP}] + >=dev-python/pytest-timeout-1.3.4[${PYTHON_USEDEP}] + dev-python/wheel[${PYTHON_USEDEP}] + >=dev-python/packaging-20.0[${PYTHON_USEDEP}] + ' 'python3*') + )" + +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme \ + dev-python/towncrier + +src_prepare() { + # we don't have xonsh + rm tests/unit/activation/test_xonsh.py || die + # require internet + sed -e 's:test_seed_link_via_app_data:_&:' \ + -i tests/unit/seed/embed/test_bootstrap_link_via_app_data.py || die + # TODO: investigate + sed -e 's:test_cross_major:_&:' \ + -i tests/unit/create/test_creator.py || die + + distutils-r1_src_prepare +} + +src_configure() { + export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} +} + +python_test() { + if [[ ${EPYTHON} == pypy3 ]]; then + # TODO: skip with better granularity + ewarn "Skipping broken tests on pypy3" + return + fi + + distutils_install_for_testing + + pytest -vv || die "Tests fail with ${EPYTHON}" +} + +pkg_postinst() { + elog "Please note that while virtualenv package no longer supports" + elog "Python 2.7, you can still create py2.7 virtualenvs via:" + elog " $ virtualenv -p 2.7 ..." +} diff --git a/dev-python/watchdog/Manifest b/dev-python/watchdog/Manifest index 5e0bb5bb29a4..e6f603028d71 100644 --- a/dev-python/watchdog/Manifest +++ b/dev-python/watchdog/Manifest @@ -1,2 +1,3 @@ DIST watchdog-0.10.3.tar.gz 89215 BLAKE2B bbe8a2ab3f84b7eff60d4ebd38ac928db85998910fc5b107dcd645c9b91388a9e45d317777f08288ce3bc2befcf9310bb7c8aef4f8e3309481919dc87e84b2a1 SHA512 6061b1393cd07038ee22271101bd6d5c847ee9732b14f63bbb5d94fba9f8273ca728cdc58b6f53a95d8213d0ed35bc71e8bb9c54960bf3aea2f64da066a864f5 +DIST watchdog-0.10.4.tar.gz 90303 BLAKE2B 0c057fe35383deaa6b7a66c24c07b2260153e94072b2769dd023210e0e5af90b4556ac18a4e8cab8af794c9dad8709205d9f48022458ee6c93fc0f2926b6f372 SHA512 abaadebd74dd869af545b5a3f10edc9d58f4f0f31f43aaf2244aed2c0ef56828f0b4cf9eda919727c832b20c79e95f50df7193dc8ea9d05d28a52dc322a3a497 DIST watchdog-0.8.3.tar.gz 83154 BLAKE2B d5d0635e83bbcd31544d5ea5811c2f202b0da76bd7a4086e8fc61e3293640e701b04599f95decaa82bee3705dbd6b91ad24b9dbd20edcfc329913600c8a3c932 SHA512 61f1db886e8e9a6d78b569329f4d5944c296778a5a34f94fbf115a748fb4c3be422bf4d3cc828e22fcdcd380fdf9009f5bd91a8a5edc87089afc58297a0b946f diff --git a/dev-python/watchdog/watchdog-0.10.4.ebuild b/dev-python/watchdog/watchdog-0.10.4.ebuild new file mode 100644 index 000000000000..44f305c9f08e --- /dev/null +++ b/dev-python/watchdog/watchdog-0.10.4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend +PYTHON_COMPAT=( python3_{6..9} ) + +inherit distutils-r1 optfeature + +DESCRIPTION="Python API and shell utilities to monitor file system events" +HOMEPAGE="https://github.com/gorakhargosh/watchdog" +SRC_URI="https://github.com/gorakhargosh/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86" + +CDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]" +RDEPEND="${CDEPEND} + dev-python/argh[${PYTHON_USEDEP}] + dev-python/pathtools[${PYTHON_USEDEP}]" +DEPEND="${CDEPEND} + test? ( + >=dev-python/pytest-timeout-0.3[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest + +src_prepare() { + sed -i -e '/--cov/d' setup.cfg || die + # broken when django is installed + sed -i -e 's:test_eventlet_monkey_patching:_&:' \ + tests/test_skip_repeats_queue.py || die + default +} + +pkg_postinst() { + optfeature "Bash completion" dev-python/argcomplete +} diff --git a/dev-ruby/Manifest.gz b/dev-ruby/Manifest.gz index 3fdd6ff31a80..79c859f10c7c 100644 Binary files a/dev-ruby/Manifest.gz and b/dev-ruby/Manifest.gz differ diff --git a/dev-ruby/activesupport/activesupport-6.0.3.4-r1.ebuild b/dev-ruby/activesupport/activesupport-6.0.3.4-r1.ebuild new file mode 100644 index 000000000000..83895aef0e7e --- /dev/null +++ b/dev-ruby/activesupport/activesupport-6.0.3.4-r1.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc" + +RUBY_FAKEGEM_GEMSPEC="activesupport.gemspec" + +RUBY_FAKEGEM_BINWRAP="" + +inherit ruby-fakegem + +DESCRIPTION="Utility Classes and Extension to the Standard Library" +HOMEPAGE="https://github.com/rails/rails" +SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> rails-${PV}.tgz" + +LICENSE="MIT" +SLOT="$(ver_cut 1-2)" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~sparc ~x86" +IUSE="" + +RUBY_S="rails-${PV}/${PN}" + +ruby_add_rdepend " + >=dev-ruby/concurrent-ruby-1.0.2:1 + dev-ruby/i18n:1 + >=dev-ruby/tzinfo-1.1:1 + >=dev-ruby/minitest-5.1:5 + >=dev-ruby/zeitwerk-2.2:2 +" + +# memcache-client, nokogiri, builder, and redis are not strictly needed, +# but there are tests using this code. +ruby_add_bdepend "test? ( + >=dev-ruby/dalli-2.2.1 + >=dev-ruby/nokogiri-1.4.5 + >=dev-ruby/builder-3.1.0 + >=dev-ruby/listen-3.0.5:3 + dev-ruby/rack + dev-ruby/mocha + )" + +all_ruby_prepare() { + # Set the secure permissions that tests expect. + chmod 0755 "${HOME}" || die "Failed to fix permissions on home" + + # Remove items from the common Gemfile that we don't need for this + # test run. This also requires handling some gemspecs. + sed -i -e "/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|mysql\|journey\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|sprockets-rails\|redcarpet\|bcrypt\|uglifier\|minitest\|sprockets\|stackprof\|rack-cache\|redis\|sqlite\)/ s:^:#:" \ + -e '/:job/,/end/ s:^:#:' \ + -e '/group :doc/,/^end/ s:^:#:' \ + -e 's/gemspec/gemspec path: "activesupport"/' \ + -e '5igem "builder"; gem "rack"' ../Gemfile || die + rm ../Gemfile.lock || die + sed -i -e '1igem "tzinfo", "~> 1.1"' test/abstract_unit.rb || die + + # Avoid test that depends on timezone + sed -i -e '/test_implicit_coercion/,/^ end/ s:^:#:' test/core_ext/duration_test.rb || die + + # Avoid tests that seem to trigger race conditions. + rm -f test/evented_file_update_checker_test.rb || die + + # Avoid test that generates filename that is too long + sed -i -e '/test_filename_max_size/askip "gentoo"' test/cache/stores/file_store_test.rb || die + + # Avoid tests requiring a live redis running + rm -f test/cache/stores/redis_cache_store_test.rb || die + sed -i -e '/cache_stores:redis/ s:^:#:' Rakefile || die + sed -i -e '/test_redis_cache_store/askip "lacking keywords"' test/cache/cache_store_setting_test.rb || die +} diff --git a/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild b/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild index cb4afb5e8307..ae7052fef742 100644 --- a/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild +++ b/dev-ruby/duktape-rb/duktape-rb-2.3.0.0-r2.ebuild @@ -21,7 +21,7 @@ LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ppc" -COMMON_DEPEND="dev-lang/duktape" +COMMON_DEPEND="dev-lang/duktape:=" DEPEND+="${COMMON_DEPEND}" RDEPEND+="${COMMON_DEPEND}" diff --git a/dev-ruby/execjs/execjs-2.7.0-r1.ebuild b/dev-ruby/execjs/execjs-2.7.0-r1.ebuild new file mode 100644 index 000000000000..507e2b0a4aae --- /dev/null +++ b/dev-ruby/execjs/execjs-2.7.0-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_TASK_DOC="" + +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" +inherit ruby-fakegem + +DESCRIPTION="ExecJS lets you run JavaScript code from Ruby" +HOMEPAGE="https://github.com/rails/execjs" +SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos" + +IUSE="test" + +# execjs supports various javascript runtimes. They are listed in order +# as per the documentation. For now only include the ones already in the +# tree. + +RDEPEND+=" || ( dev-ruby/duktape-rb net-libs/nodejs )" + +all_ruby_prepare() { + sed -i -e "/bundler/d" Rakefile || die + # Avoid test requiring network connectivity. We could potentially + # substitute dev-ruby/coffee-script-source for this. + sed -i -e '/test_coffeescript/,/end/ s:^:#:' test/test_execjs.rb || die +} diff --git a/dev-ruby/execjs/execjs-2.7.0.ebuild b/dev-ruby/execjs/execjs-2.7.0.ebuild index 5d6a8fd9d8c7..b67bdd792e28 100644 --- a/dev-ruby/execjs/execjs-2.7.0.ebuild +++ b/dev-ruby/execjs/execjs-2.7.0.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://github.com/rails/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="amd64 arm arm64 ppc ppc64 x86 ~amd64-linux ~x64-macos" +KEYWORDS="amd64 arm arm64 ppc64 x86 ~amd64-linux ~x64-macos" IUSE="test" diff --git a/dev-ruby/facter/Manifest b/dev-ruby/facter/Manifest index 41baa7f3d54b..4aee4cb4dc85 100644 --- a/dev-ruby/facter/Manifest +++ b/dev-ruby/facter/Manifest @@ -1,3 +1,2 @@ -DIST facter-3.14.12.tar.gz 406896 BLAKE2B 5f25e9da754931c6318370877b0ab1158e47920c8d9776a24689b3b906a91beddfe6c32b584888f6c9131d8338eb3fcb3983f062767d16eb9da51572d0156c60 SHA512 599984d0cc86f65ab9c487963fe6e12513895079cf145d924910a53ceb702e3b59785ea073e695ec9acac36f8a7405ffcd1130eb338ce261a3af4213ef11f7d0 DIST facter-3.14.13.tar.gz 407204 BLAKE2B 12019c20284eb2a62fb65f2ab09246b98708b1aecb485700c2074865d02bb836f140802ad3b54f28c90fdd225b72e9216d21fb57dc0d82b8b3854607d5ba0eb7 SHA512 62910dc71aff0a0b0ef1ece054e0d1eea095c65ca6a34e17331aea943e217baa1a12bba1176143b652bb322195248a4aab1379eb69d6be419b73eb6ae3a8afac DIST facter-3.14.14.tar.gz 407276 BLAKE2B 5f911581773ef9a19ee42b5ed64114e2519ff88e024490d74bf9b1e777221d92d3ed502c8e6a0df573a5390fca323fcf0bcfdce6aeed25826c84efb3971307a5 SHA512 22e0ff0a9280be129f7587e24109f76f34660d99086378dd7e9ccc004c08a4fa5dd6f9ba50957c146ea40e26344ee87dbafd45b885f8f576192b6e572b084af7 diff --git a/dev-ruby/facter/facter-3.14.12.ebuild b/dev-ruby/facter/facter-3.14.12.ebuild deleted file mode 100644 index f2b40c9e3b70..000000000000 --- a/dev-ruby/facter/facter-3.14.12.ebuild +++ /dev/null @@ -1,99 +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" - -# git-r3 goes after ruby-ng so that it overrides src_unpack properly -inherit cmake-utils eutils ruby-ng - -DESCRIPTION="A cross-platform ruby library for retrieving facts from operating systems" -HOMEPAGE="http://www.puppetlabs.com/puppet/related-projects/facter/" - -LICENSE="Apache-2.0" -SLOT="0" -IUSE="test" -if [[ ${PV} == 9999 ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/puppetlabs/facter.git" - EGIT_BRANCH="master" -else - [[ "${PV}" = *_rc* ]] || \ - KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86" - SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -fi - -RESTRICT="!test? ( test )" - -ruby_add_bdepend "test? ( dev-ruby/rake dev-ruby/rspec:2 dev-ruby/mocha:0.14 )" - -RDEPEND=" - >=dev-cpp/cpp-hocon-0.2.1:= - >=dev-libs/leatherman-1.0.0:= - dev-libs/openssl:0= - sys-apps/util-linux - app-emulation/virt-what - net-misc/curl - dev-libs/boost:=[nls] - >=dev-cpp/yaml-cpp-0.5.1 - !1.1.0 + +EAPI=6 + +USE_RUBY="ruby24 ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG Readme.md" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +inherit ruby-fakegem + +DESCRIPTION="GetText but 3.5x faster, 560x less memory, clean namespace and threadsave!" +HOMEPAGE="https://github.com/grosser/fast_gettext" +SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/bundler )" + +all_ruby_prepare() { + rm Gemfile.lock || die + + # Remove jeweler and bump from Gemfile since they are not needed for tests. + sed -i -e '/jeweler/d' -e '/bump/d' -e '/appraisal/d' Gemfile || die + + # Avoid unneeded dependency on git and development dependencies. + sed -e '/git ls-files/ s:^:#:' \ + -e '/\(wwtd\|bump\|sqlite3\|activerecord\|i18n\)/ s:^:#:' \ + -i fast_gettext.gemspec || die + + # Avoid a test dependency on activerecord since this is now in the + # dependency tree for app-admin/puppet and many arches don't have + # rails keyworded. + sed -i -e '/active_record/ s:^:#:' spec/spec_helper.rb || die + rm -f spec/fast_gettext/translation_repository/db_spec.rb || die + sed -i -e '/works with DB repository/,/^ end/ s:^:#:' spec/fast_gettext/storage_spec.rb || die + sed -i -e '/with i18n loaded/,/^ end/ s:^:#:' spec/fast_gettext/vendor/string_spec.rb || die + + # Don't run a test that requires safe mode which we can't provide + # due to insecure directory settings for the portage dir. This spec + # also calls out to ruby which won't work with different ruby + # implementations. + sed -i -e '/can work in SAFE mode/,/^ end/ s:^:#:' spec/fast_gettext/translation_repository/mo_spec.rb || die +} + +each_ruby_prepare() { + # Make sure the right ruby interpreter is used + sed -i -e "s:bundle exec ruby:bundle exec ${RUBY}:" spec/fast_gettext/vendor/*spec.rb || die +} diff --git a/dev-ruby/gettext-setup/Manifest b/dev-ruby/gettext-setup/Manifest index 4818cee71f5f..d9d3c7ca35c0 100644 --- a/dev-ruby/gettext-setup/Manifest +++ b/dev-ruby/gettext-setup/Manifest @@ -1,3 +1,2 @@ DIST gettext-setup-0.30.tar.gz 15952 BLAKE2B d224e0fee34b0735fdf22abe2efe81b45c6494fc48ca509daf076cda9d3b83dc6dcd3e44c20ae9776d98b7d6128e5b9a93fa49ba1f2daa4b00929714e8d7365c SHA512 6ee398a131098f46dcc2951d166081a90872330b6ba5637292eb326b1bd6f40f46350f6be7b2b9ebee0c62442609700e06d25befcbcbf6510f3d96e656855124 -DIST gettext-setup-0.31.tar.gz 16043 BLAKE2B 762d40295644acaaae27045a8a03ddb6a9e0f44093754492da3af4ce9a65fe4f58b9eb53a5d837dd1e553a7301dde29cbe27d4f6a6e7c7fc737ca9516b6eb3c4 SHA512 ac408d37a4feb03043368db6dd1e0fe3cc1f08c5d0c161ae8e9b80d0ac514e7d5891fdbdbcafa7bc72c960d38b6965b73c56d5d4e9a3fe1da0502667c33142ef DIST gettext-setup-0.34.tar.gz 16010 BLAKE2B 3da3810bba89205a0a2856760b7fbe7a415207ccc45a3cd2e8aad658131dc751b1ad44178beaee2d0c67164a5e3e7b1ee0aba1c4e1b099f77643d72aec753de3 SHA512 479e2a79768923796960b45f1e3b3963939a4166c636ad4c3af60840a5c8449fa7fff81271b4c938e5a441146b25fcdd9fd8bb60e1df7ef31bb39efc56577572 diff --git a/dev-ruby/gettext-setup/gettext-setup-0.31.ebuild b/dev-ruby/gettext-setup/gettext-setup-0.31.ebuild deleted file mode 100644 index 0fc883565d7f..000000000000 --- a/dev-ruby/gettext-setup/gettext-setup-0.31.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby24 ruby25 ruby26" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="A gem to ease i18n" -HOMEPAGE="https://github.com/puppetlabs/gettext-setup-gem" -SRC_URI="https://github.com/puppetlabs/gettext-setup-gem/archive/${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="${PN}-gem-${PV}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" -IUSE="" - -ruby_add_rdepend " - >=dev-ruby/fast_gettext-1.1.0:0 - >=dev-ruby/ruby-gettext-3.0.2 - dev-ruby/locale -" - -all_ruby_prepare() { - sed -i -e 's/1.1.0/1.1/' \ - -e "s/spec.version.*$/spec.version = '${PV}'/" ${RUBY_FAKEGEM_GEMSPEC} || die - - sed -i -e '/simplecov/,/^end/ s:^:#: ; 1irequire "date"' spec/spec_helper.rb || die - - # Avoid spec with specific locale requirements - sed -i -e '/can clear the locale/,/^ end/ s:^:#:' spec/lib/gettext-setup/gettext_setup_spec.rb || die -} diff --git a/dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild b/dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild deleted file mode 100644 index e56f46d82428..000000000000 --- a/dev-ruby/gettext-setup/gettext-setup-0.34-r1.ebuild +++ /dev/null @@ -1,42 +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_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="A gem to ease i18n" -HOMEPAGE="https://github.com/puppetlabs/gettext-setup-gem" -SRC_URI="https://github.com/puppetlabs/gettext-setup-gem/archive/${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="${PN}-gem-${PV}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" -IUSE="" - -RDEPEND+=" dev-vcs/git" -DEPEND+=" test? ( dev-vcs/git )" - -ruby_add_rdepend " - >=dev-ruby/fast_gettext-1.1.0:0 - >=dev-ruby/ruby-gettext-3.0.2 - dev-ruby/locale -" - -all_ruby_prepare() { - sed -i -e 's/1.1.0/1.1/' \ - -e "s/spec.version.*$/spec.version = '${PV}'/" ${RUBY_FAKEGEM_GEMSPEC} || die - - sed -i -e '/simplecov/,/^end/ s:^:#: ; 1irequire "date"' spec/spec_helper.rb || die - - # Avoid spec with specific locale requirements - sed -i -e '/can clear the locale/,/^ end/ s:^:#:' spec/lib/gettext-setup/gettext_setup_spec.rb || die -} diff --git a/dev-ruby/gettext-setup/gettext-setup-0.34-r2.ebuild b/dev-ruby/gettext-setup/gettext-setup-0.34-r2.ebuild index ee59e09ee553..3c24ac24f1fd 100644 --- a/dev-ruby/gettext-setup/gettext-setup-0.34-r2.ebuild +++ b/dev-ruby/gettext-setup/gettext-setup-0.34-r2.ebuild @@ -19,7 +19,7 @@ RUBY_S="${PN}-gem-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 x86" IUSE="" RDEPEND+=" dev-vcs/git" diff --git a/dev-ruby/gettext-setup/gettext-setup-0.34.ebuild b/dev-ruby/gettext-setup/gettext-setup-0.34.ebuild deleted file mode 100644 index 1acc0f83dc31..000000000000 --- a/dev-ruby/gettext-setup/gettext-setup-0.34.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="A gem to ease i18n" -HOMEPAGE="https://github.com/puppetlabs/gettext-setup-gem" -SRC_URI="https://github.com/puppetlabs/gettext-setup-gem/archive/${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="${PN}-gem-${PV}" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" -IUSE="" - -ruby_add_rdepend " - >=dev-ruby/fast_gettext-1.1.0:0 - >=dev-ruby/ruby-gettext-3.0.2 - dev-ruby/locale -" - -all_ruby_prepare() { - sed -i -e 's/1.1.0/1.1/' \ - -e "s/spec.version.*$/spec.version = '${PV}'/" ${RUBY_FAKEGEM_GEMSPEC} || die - - sed -i -e '/simplecov/,/^end/ s:^:#: ; 1irequire "date"' spec/spec_helper.rb || die - - # Avoid spec with specific locale requirements - sed -i -e '/can clear the locale/,/^ end/ s:^:#:' spec/lib/gettext-setup/gettext_setup_spec.rb || die -} diff --git a/dev-ruby/nokogumbo/Manifest b/dev-ruby/nokogumbo/Manifest index 234c2b7fbd5f..ade4bd0e5ddd 100644 --- a/dev-ruby/nokogumbo/Manifest +++ b/dev-ruby/nokogumbo/Manifest @@ -1 +1,2 @@ DIST nokogumbo-2.0.2.tar.gz 295558 BLAKE2B ce52794eb3359ad34234d8f5faad4aff7c197326f6449a09a2264cb1a3d920886377f805e055980224644223d31a6621300c583a04f48ce8a8abe275b2614470 SHA512 fd115e072d2763ff63c46dc6f6117bb841b2c2ac28df0180d44a581a2a46f0b7b90ec17ae1b629e3e7c2f8a2cade53031cc118c8a946bbfb7e9e8600efefd67c +DIST nokogumbo-2.0.3.tar.gz 297394 BLAKE2B f1afcf516c5c47b15c8404e8c218af1f2ca0bce022fefacb39842527be7be38cbaf9d2fe0572afd8d9c1893a82428b903ccb8d4506043f766305d4d43aaf066b SHA512 b44af7394f0b2c7159b34ead2aa15e39cd08348c1e3d7c4d9a2830c0920ae1a0d22ff9ac32db8fa1bd69c8ce55bc4a32069572944b53ef0d743f8a40560bcb47 diff --git a/dev-ruby/nokogumbo/nokogumbo-2.0.3.ebuild b/dev-ruby/nokogumbo/nokogumbo-2.0.3.ebuild new file mode 100644 index 000000000000..43462c380e47 --- /dev/null +++ b/dev-ruby/nokogumbo/nokogumbo-2.0.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_RECIPE_TEST="none" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.md" + +RUBY_FAKEGEM_GEMSPEC="nokogumbo.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="A Nokogiri interface to the Gumbo HTML5 parser" +HOMEPAGE="https://github.com/rubys/nokogumbo" +SRC_URI="https://github.com/rubys/nokogumbo/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="2" +KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +# Contains a bundled and patched version of dev-libs/gumbo. + +ruby_add_rdepend ">=dev-ruby/nokogiri-1.8.4" + +all_ruby_prepare() { + # Define rakehome in scope + sed -i -e "1irakehome=File.expand_path('../../')" ext/nokogumbo/extconf.rb || die + + sed -i -e "s:require_relative ':require './:" ${RUBY_FAKEGEM_GEMSPEC} || die +} + +each_ruby_configure() { + ${RUBY} -Cext/nokogumbo extconf.rb || die + sed -i -e 's:-Wl,--no-undefined::' ext/nokogumbo/Makefile || die +} + +each_ruby_compile() { + emake -Cext/nokogumbo V=1 + cp ext/nokogumbo/nokogumbo.so lib/nokogumbo/ || die +} + +each_ruby_test() { + ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die +} diff --git a/dev-ruby/pdf-reader/pdf-reader-1.4.1-r3.ebuild b/dev-ruby/pdf-reader/pdf-reader-1.4.1-r3.ebuild new file mode 100644 index 000000000000..f2a8095194bb --- /dev/null +++ b/dev-ruby/pdf-reader/pdf-reader-1.4.1-r3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +GITHUB_USER=yob + +USE_RUBY="ruby24 ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_RECIPE_TEST="rspec3" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.rdoc TODO" + +RUBY_FAKEGEM_GEMSPEC="pdf-reader.gemspec" + +RUBY_FAKEGEM_BINWRAP="" + +inherit ruby-fakegem + +DESCRIPTION="PDF parser conforming as much as possible to the PDF specification from Adobe" +HOMEPAGE="https://github.com/yob/pdf-reader/" + +# We cannot use the gem distributions because they don't contain the +# tests' data, we have to rely on the git tags. +SRC_URI="https://github.com/${GITHUB_USER}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/afm-0.2.1 + =dev-ruby/ascii85-1* + =dev-ruby/hashery-2* + dev-ruby/ttfunk:* + dev-ruby/ruby-rc4" + +all_ruby_prepare() { + # Remove bundler support + sed -i -e '/[Bb]undler/d' spec/spec_helper.rb || die + + sed -i -e '/Ascii85/ s/1.0.0/1.0/' ${RUBY_FAKEGEM_GEMSPEC} || die +} + +all_ruby_install() { + all_fakegem_install + + docinto examples + dodoc examples/* +} diff --git a/dev-ruby/test-unit/Manifest b/dev-ruby/test-unit/Manifest index c6ce105367f5..e5a2fc99a280 100644 --- a/dev-ruby/test-unit/Manifest +++ b/dev-ruby/test-unit/Manifest @@ -2,3 +2,4 @@ DIST test-unit-3.3.3.gem 133120 BLAKE2B 37fc200b121e84046d1ee483277fc1274dc3bbcd DIST test-unit-3.3.4.gem 133120 BLAKE2B 1f0122ddfd6337a6dcf16c09f294b3632aff6b20491a6d6dd6ebead18570f4db42fcbc656aada7b11a46c0d04c4a1134356db3d101138739973687695221d819 SHA512 f8fb546ab764cc01f374fd387b26c0d49b5a572b4a428be9b7a583c449fcb73d4aa755f6666d16c7a62e24f263f91329e9e9f997646923b38a1e30af1bb3d168 DIST test-unit-3.3.5.gem 133120 BLAKE2B 8a799d05fc25a11421eb2385b435de5fc53ffdbffb3ee9c3d4761b11f3b40461ef12b4e2a5583d5ae20fc468846b923317a65cbfbded8dc6ddc066764f1cded4 SHA512 eab194e2361b7aa82dbe18d87dd309e81ddb1cb063e289b63a99c4803c0b88d0323a2028afd6585c14e11e458d4cd5ceb67e674bb7d5065d31b91649be2cbd68 DIST test-unit-3.3.6.gem 133120 BLAKE2B bbe79ee41f1e25b49099eb00c8c72dcdafd1b7cbae723c1b78240da000f433877790549c6b0503f654f28d86c87bb125578a6d87b41e8b0a28caba87dad1477c SHA512 af8a632117410b486920e77a5bf91afb774a548166ca5cdb2bdeac6c995bf2da6206d2b00e6904024e5e9bf0f68edf9872192faa471297e64c5d4bd4c554fae3 +DIST test-unit-3.3.7.gem 121856 BLAKE2B 507c9c538e89156d620b229e0144258def17975d41fa569178bb0c47761d5afdfd6cc8a99e3255e72df7a3eeeb65358faf1ed81571c12242559990762a09f69c SHA512 42419c947433330f06d68a26dc2c5e8309658d75aac44f6e391e02085eae1819937fa3ba86e86231dfca91e8de86252b7bc79dc5ffa1e1fb8b0f0ec9074a0056 diff --git a/dev-ruby/test-unit/test-unit-3.3.7.ebuild b/dev-ruby/test-unit/test-unit-3.3.7.ebuild new file mode 100644 index 000000000000..b77e6df078c2 --- /dev/null +++ b/dev-ruby/test-unit/test-unit-3.3.7.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_EXTRADOC="README.md doc-install/text/*.md" + +inherit ruby-fakegem + +DESCRIPTION="An xUnit family unit testing framework for Ruby" +HOMEPAGE="https://rubygems.org/gems/test-unit" + +LICENSE="|| ( Ruby GPL-2 ) PSF-2" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc test" + +ruby_add_rdepend "dev-ruby/power_assert" + +all_ruby_prepare() { + mv doc doc-install || die "moving doc directory out of the way failed" +} + +each_ruby_test() { + ${RUBY} test/run-test.rb || die "testsuite failed" +} + +all_ruby_install() { + all_fakegem_install + + newbin "${FILESDIR}"/testrb-3 testrb-2 +} diff --git a/dev-ruby/vcard/Manifest b/dev-ruby/vcard/Manifest index bb311958aaca..a03df8b0bc00 100644 --- a/dev-ruby/vcard/Manifest +++ b/dev-ruby/vcard/Manifest @@ -1 +1,2 @@ DIST vcard-0.2.16.gem 52224 BLAKE2B b8ee48d597e00fad376d632813fba61a22ae5b6b16ce3fc9c7b79839fd2f0d0f87b8bede3d3f6ebd41bb205a222fde540f4d3c46fcef8eb9b5a014ce8abf14da SHA512 33c8183d05b160e65a89747587f174dfa91b299c178c265645d271b54506734e818e3d3ac51a5b20fcddbc489b9ff910e321e5a1160f7b6254bc16faa185634b +DIST vcard-0.3.0.gem 54272 BLAKE2B ed019b7f771dbe2da574fc059dacdc8eb5b5eca735abe15c2d8aec08b4f91b22c413f317d4f39f100bc78d16bf8e3edf0e0a99d55b8fbdda5b47315bc33d37b1 SHA512 5b54bada881f4d6cce66bb76c15b3594e310659024d163598f857c4c434379c57e07f28873646d0a5a5aecef4313c8fc731313e80df5542e982f333c05802d4d diff --git a/dev-ruby/vcard/vcard-0.3.0.ebuild b/dev-ruby/vcard/vcard-0.3.0.ebuild new file mode 100644 index 000000000000..8c9fdf412fbb --- /dev/null +++ b/dev-ruby/vcard/vcard-0.3.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby25 ruby26 ruby27" + +# Avoid the complexity of the "rake" recipe and run testrb-2 manually. +RUBY_FAKEGEM_RECIPE_TEST=none +RUBY_FAKEGEM_RECIPE_DOC=none + +inherit ruby-fakegem + +DESCRIPTION="Ruby vcard support extracted from Vpim" +HOMEPAGE="https://github.com/qoobaa/vcard" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +ruby_add_bdepend "test? ( dev-ruby/test-unit:2 )" + +each_ruby_test() { + ruby-ng_testrb-2 --load-path=lib --pattern='.*_test\.rb' test/ +} diff --git a/dev-tcltk/Manifest.gz b/dev-tcltk/Manifest.gz index cea848fbd9bf..cabdd4734c08 100644 Binary files a/dev-tcltk/Manifest.gz and b/dev-tcltk/Manifest.gz differ diff --git a/dev-tcltk/tls/Manifest b/dev-tcltk/tls/Manifest index f8cdbefff33c..1a2304f61569 100644 --- a/dev-tcltk/tls/Manifest +++ b/dev-tcltk/tls/Manifest @@ -1 +1,2 @@ DIST tcltls-1.7.16.tar.gz 166439 BLAKE2B 855b61bf21e7635fc9c53838037136586552261bb0c3b4c4a52638e99358f418a2c0d606b5fb130e32004e3a34c80afea25be16f068ffb499d6636309e4ae2a3 SHA512 f63b885dbfaec5d9ae811c126bd0ff253787effd7b053282b9ee566e9fae54df940bc058a6c3dd22e31fcb9ec6ae1b286aa40efd69c3f01f5a3014aada730ab1 +DIST tcltls-1.7.22.tar.gz 165206 BLAKE2B 351a5ee6a50174db8b13c9232a617aa90480550520771004c318c063b7c9703cdf969c7d12c56c54483bce5d08a9b48c04906d2be3ef9e3de0ab74c5dac68346 SHA512 28c76a6e7333b6ed1d83234691d61c9e71a59d0a6a28182fc0f50e97cae7b54da63ac76527e3b16087f3eab0b9cfe19bad02362e485d0cf378724de534805e99 diff --git a/dev-tcltk/tls/tls-1.7.22.ebuild b/dev-tcltk/tls/tls-1.7.22.ebuild new file mode 100644 index 000000000000..c4f7c36511d5 --- /dev/null +++ b/dev-tcltk/tls/tls-1.7.22.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils + +MY_P="tcl${P}" + +DESCRIPTION="TLS OpenSSL extension to Tcl" +HOMEPAGE="http://tls.sourceforge.net/" +SRC_URI="https://core.tcl.tk/tcltls/uv/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="tk" + +DEPEND=" + dev-lang/tcl:0= + dev-libs/openssl:0= + tk? ( dev-lang/tk:0= )" +RDEPEND="${DEPEND}" + +RESTRICT="test" + +S="${WORKDIR}/${MY_P}" + +src_configure() { + econf \ + --with-ssl-dir="${EPREFIX}/usr" \ + --with-tcl="${EPREFIX}/usr/$(get_libdir)" +} + +src_install() { + default + dodoc tls.htm + + if [[ ${CHOST} == *-darwin* ]] ; then + # this is ugly, but fixing the makefile mess is even worse + local loc=usr/$(get_libdir)/tls1.7/libtls1.7.dylib + install_name_tool -id "${EPREFIX}"/${loc} "${ED}"/${loc} || die + fi +} diff --git a/dev-util/Manifest.gz b/dev-util/Manifest.gz index c31961c0f9a8..d842d439e5d7 100644 Binary files a/dev-util/Manifest.gz and b/dev-util/Manifest.gz differ diff --git a/dev-util/abi-dumper/Manifest b/dev-util/abi-dumper/Manifest index 16c2e4bf8e4a..4cb427e58cd9 100644 --- a/dev-util/abi-dumper/Manifest +++ b/dev-util/abi-dumper/Manifest @@ -1 +1,2 @@ DIST abi-dumper-1.1.tar.gz 49012 BLAKE2B ec86c073bccef5022376acf10b7e0b13d34bac8394277ae53c5ea9b981c4008c5895d3137e3ca0a5cfd64f2d2425cb13a0912f6dada048adfa290dd144ab58ed SHA512 28b791de74dafd0b3d78314c1c722d03bfeb0daa5cb702def9268e4c64f49c79b4fd92d4adf89a20f79c745ef70bc18d2b1143fbe0c7ad192b2f64cb1551b371 +DIST abi-dumper-1.2.tar.gz 47287 BLAKE2B 93aef6a4f11ce33f04d6778d02749b4caf2eb782297957c6295d0d27f43386a92e0207b9bf6fbd17ae5e7f09964677810d6c42d3aea589fcfa46ce5f8353ee16 SHA512 cb081a8aaa548bb2360cfe55d4258c263990a4cc36feaabdafa0dc32252d19ce3ce0209e6af14c03157a144fea0e5ecb6700848f74b4da4c3ee2cdb6f0d860d2 diff --git a/dev-util/abi-dumper/abi-dumper-1.2.ebuild b/dev-util/abi-dumper/abi-dumper-1.2.ebuild new file mode 100644 index 000000000000..954291e0ea90 --- /dev/null +++ b/dev-util/abi-dumper/abi-dumper-1.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Dump ABI of an ELF object containing DWARF debug info" +HOMEPAGE="https://github.com/lvc/abi-dumper" +SRC_URI="https://github.com/lvc/abi-dumper/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-lang/perl" +RDEPEND="${DEPEND} + dev-libs/elfutils + dev-util/vtable-dumper" + +src_compile() { + : +} + +src_install() { + dodir /usr + perl Makefile.pl -install -prefix "${EPREFIX}/usr" -destdir "${D}" || die + einstalldocs +} diff --git a/dev-util/bpftrace/files/bpftrace-0.10.0-install-libs.patch b/dev-util/bpftrace/files/bpftrace-0.10.0-install-libs.patch deleted file mode 100644 index cf5ed9d76b96..000000000000 --- a/dev-util/bpftrace/files/bpftrace-0.10.0-install-libs.patch +++ /dev/null @@ -1,148 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index e89a6a9..efa2ff3 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -90,9 +90,10 @@ find_package(FLEX REQUIRED) - bison_target(bison_parser src/parser.yy ${CMAKE_BINARY_DIR}/parser.tab.cc VERBOSE) - flex_target(flex_lexer src/lexer.l ${CMAKE_BINARY_DIR}/lex.yy.cc) - add_flex_bison_dependency(flex_lexer bison_parser) --add_library(parser ${BISON_bison_parser_OUTPUTS} ${FLEX_flex_lexer_OUTPUTS}) --target_compile_options(parser PRIVATE "-w") --target_include_directories(parser PUBLIC src src/ast ${CMAKE_BINARY_DIR}) -+add_library(bpftraceparser ${BISON_bison_parser_OUTPUTS} ${FLEX_flex_lexer_OUTPUTS}) -+target_compile_options(bpftraceparser PRIVATE "-w") -+target_include_directories(bpftraceparser PUBLIC src src/ast ${CMAKE_BINARY_DIR}) -+install(TARGETS bpftraceparser LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) - - include(CheckSymbolExists) - set(CMAKE_REQUIRED_DEFINITIONS -D_GNU_SOURCE) -diff --git a/resources/CMakeLists.txt b/resources/CMakeLists.txt -index a95c60a..f5c4d67 100644 ---- a/resources/CMakeLists.txt -+++ b/resources/CMakeLists.txt -@@ -1,6 +1,7 @@ --add_library(resources headers.cpp) -+add_library(bpftraceresources headers.cpp) - --target_include_directories(resources PUBLIC ../src) -+target_include_directories(bpftraceresources PUBLIC ../src) -+install(TARGETS bpftraceresources LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) - - function(embed_headers output) - file(WRITE ${output} "#include \"headers.h\"\n\nnamespace bpftrace {\n") -diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 4fa0418..4d0c2a9 100644 ---- a/src/CMakeLists.txt -+++ b/src/CMakeLists.txt -@@ -75,7 +75,8 @@ if (ALLOW_UNSAFE_PROBE) - target_compile_definitions(bpftrace PRIVATE HAVE_UNSAFE_PROBE) - endif(ALLOW_UNSAFE_PROBE) - --target_link_libraries(bpftrace arch ast parser resources) -+target_link_libraries(bpftrace bpftracearch bpftraceast bpftraceparser -+ bpftraceresources) - - target_link_libraries(bpftrace ${LIBBCC_LIBRARIES}) - if(STATIC_LINKING) -diff --git a/src/arch/CMakeLists.txt b/src/arch/CMakeLists.txt -index 7156276..32faeae 100644 ---- a/src/arch/CMakeLists.txt -+++ b/src/arch/CMakeLists.txt -@@ -1,10 +1,12 @@ - if(CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64") -- add_library(arch aarch64.cpp) -+ add_library(bpftracearch aarch64.cpp) - elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL "ppc64" OR - CMAKE_SYSTEM_PROCESSOR STREQUAL "ppc64le") -- add_library(arch ppc64.cpp) -+ add_library(bpftracearch ppc64.cpp) - elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") -- add_library(arch x86_64.cpp) -+ add_library(bpftracearch x86_64.cpp) - else() - message(FATAL_ERROR "Unsupported architecture: {CMAKE_SYSTEM_PROCESSOR}") - endif() -+ -+install(TARGETS bpftracearch LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) -diff --git a/src/ast/CMakeLists.txt b/src/ast/CMakeLists.txt -index 0d58cd9..e33d585 100644 ---- a/src/ast/CMakeLists.txt -+++ b/src/ast/CMakeLists.txt -@@ -1,4 +1,4 @@ --add_library(ast -+add_library(bpftraceast - ast.cpp - attachpoint_parser.cpp - codegen_llvm.cpp -@@ -8,16 +8,17 @@ add_library(ast - semantic_analyser.cpp - ) - --target_include_directories(ast PUBLIC ${CMAKE_SOURCE_DIR}/src) --target_include_directories(ast PUBLIC ${CMAKE_SOURCE_DIR}/src/ast) --target_include_directories(ast PUBLIC ${CMAKE_BINARY_DIR}) --target_link_libraries(ast arch) -+target_include_directories(bpftraceast PUBLIC ${CMAKE_SOURCE_DIR}/src) -+target_include_directories(bpftraceast PUBLIC ${CMAKE_SOURCE_DIR}/src/ast) -+target_include_directories(bpftraceast PUBLIC ${CMAKE_BINARY_DIR}) -+target_link_libraries(bpftraceast bpftracearch) -+install(TARGETS bpftraceast LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}) - - if (HAVE_KFUNC) -- target_compile_definitions(ast PRIVATE HAVE_KFUNC) -+ target_compile_definitions(bpftraceast PRIVATE HAVE_KFUNC) - endif(HAVE_KFUNC) - --add_dependencies(ast parser) -+add_dependencies(bpftraceast bpftraceparser) - - if (STATIC_LINKING) - set(clang_libs -@@ -41,26 +42,26 @@ if (STATIC_LINKING) - if(EMBED_LIBCLANG_ONLY) - unlink_transitive_dependency("${CLANG_EXPORTED_TARGETS}" "LLVM") - endif() -- target_link_libraries(ast ${CLANG_EMBEDDED_CMAKE_TARGETS}) -+ target_link_libraries(bpftraceast ${CLANG_EMBEDDED_CMAKE_TARGETS}) - else() - list(INSERT clang_libs 0 libclang.a) - endif() - - if(EMBED_LLVM) -- target_link_libraries(ast ${LLVM_EMBEDDED_CMAKE_TARGETS}) -+ target_link_libraries(bpftraceast ${LLVM_EMBEDDED_CMAKE_TARGETS}) - else() - llvm_map_components_to_libnames(llvm_libs bpfcodegen ipo irreader mcjit orcjit ${LLVM_TARGETS_TO_BUILD}) -- target_link_libraries(ast ${clang_libs}) -- target_link_libraries(ast ${llvm_libs}) -+ target_link_libraries(bpftraceast ${clang_libs}) -+ target_link_libraries(bpftraceast ${llvm_libs}) - endif() - else() - find_library(found_LLVM LLVM HINTS ${LLVM_LIBRARY_DIRS}) - if(found_LLVM) -- target_link_libraries(ast LLVM) -+ target_link_libraries(bpftraceast LLVM) - else() - llvm_map_components_to_libnames(_llvm_libs bpfcodegen ipo irreader mcjit orcjit ${LLVM_TARGETS_TO_BUILD}) - llvm_expand_dependencies(llvm_libs ${_llvm_libs}) -- target_link_libraries(ast ${llvm_libs}) -+ target_link_libraries(bpftraceast ${llvm_libs}) - endif() -- target_link_libraries(ast libclang) -+ target_link_libraries(bpftraceast libclang) - endif() -diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt -index 56bcb4a..3f874f8 100644 ---- a/tests/CMakeLists.txt -+++ b/tests/CMakeLists.txt -@@ -93,7 +93,8 @@ if(HAVE_BFD_DISASM) - endif(STATIC_LINKING) - endif(HAVE_BFD_DISASM) - --target_link_libraries(bpftrace_test arch ast parser resources) -+target_link_libraries(bpftrace_test bpftracearch bpftraceast bpftraceparser -+ bpftraceresources) - - target_link_libraries(bpftrace_test ${LIBBCC_LIBRARIES}) - if (STATIC_LINKING) diff --git a/dev-util/ccache/Manifest b/dev-util/ccache/Manifest index 9db6c02c4c05..35ac993d8d47 100644 --- a/dev-util/ccache/Manifest +++ b/dev-util/ccache/Manifest @@ -1,2 +1,3 @@ DIST ccache-3.7.12.tar.xz 354684 BLAKE2B b0b1028ede8206622c4b563cdc1351bdbe49ac11aa92d405c778af91db5bac029f7331371ef0a55bc3b1c7a0b60fbc5711277e048481bf0f4ad4b1be8acd3495 SHA512 0eb47869f86d36b3e5fad0d5073973f0444f3efe23fd14469a9e05154ea219228443098b1c5e4a8a0c5c78b4bfa7623735b50ebd6b8b4d0626766061850d6a62 DIST ccache-4.0.tar.xz 383264 BLAKE2B ef4ca19860e2a0d313354cbd59a9eff441e86663820e8233dcf4b45a008ffa330b4a4c22eb11f3c6a7a98950d7d247034e60eb71c84ec4471f60fa19591651bd SHA512 1e55767bc2919109ae3c9b74f0adcd518e7e11df45c3981b2e9f8b04a780f9730457eeef1df137c65ab20e0959600c5317f06b58ffb82f5806c7c9f6cc305715 +DIST ccache-4.1.tar.xz 389240 BLAKE2B 265ed6cd9602a04db0fadf63266d0fe1e78a74c69a27f05854a287e4048934d6afd63e71987bc525217782075c1a158601c400f3418caa0eb9730f34275bd08c SHA512 e80075eeea3fef8215de0a793e02381bfb59d7e74237fa34a49306047c60f0de0e678396ad3a9e5d86d3ad2aa21bbe29c7f0055f06b3ba2470f6895ce2eedd7b diff --git a/dev-util/ccache/ccache-4.1.ebuild b/dev-util/ccache/ccache-4.1.ebuild new file mode 100644 index 000000000000..8f04356c74b3 --- /dev/null +++ b/dev-util/ccache/ccache-4.1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake toolchain-funcs + +DESCRIPTION="fast compiler cache" +HOMEPAGE="https://ccache.dev/" +SRC_URI="https://github.com/ccache/ccache/releases/download/v${PV}/ccache-${PV}.tar.xz" + +LICENSE="GPL-3 LGPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="test" + +DEPEND="" +RDEPEND="${DEPEND} + dev-util/shadowman + sys-apps/gentoo-functions" +# clang-specific tests use dev-libs/elfutils to compare objects for equality. +# Let's pull in the dependency unconditionally. +DEPEND+=" + test? ( dev-libs/elfutils ) +" +BDEPEND=" + app-text/asciidoc +" + +RESTRICT="!test? ( test )" + +DOCS=( doc/{AUTHORS,MANUAL,NEWS}.adoc CONTRIBUTING.md README.md ) + +PATCHES=( + "${FILESDIR}"/${PN}-3.5-nvcc-test.patch + "${FILESDIR}"/${PN}-4.0-objdump.patch + "${FILESDIR}"/${PN}-4.1-avoid-run-user.patch +) + +src_prepare() { + cmake_src_prepare + + sed \ + -e "/^EPREFIX=/s:'':'${EPREFIX}':" \ + "${FILESDIR}"/ccache-config-3 > ccache-config || die + + # mainly used in tests + tc-export CC OBJDUMP +} + +src_install() { + cmake_src_install + + dobin ccache-config + insinto /usr/share/shadowman/tools + newins - ccache <<<"${EPREFIX}/usr/lib/ccache/bin" +} + +pkg_prerm() { + if [[ -z ${REPLACED_BY_VERSION} && ${ROOT:-/} == / ]] ; then + eselect compiler-shadow remove ccache + fi +} + +pkg_postinst() { + if [[ ${ROOT:-/} == / ]]; then + eselect compiler-shadow update ccache + fi +} diff --git a/dev-util/ccache/files/ccache-4.1-avoid-run-user.patch b/dev-util/ccache/files/ccache-4.1-avoid-run-user.patch new file mode 100644 index 000000000000..be7db76ecbf0 --- /dev/null +++ b/dev-util/ccache/files/ccache-4.1-avoid-run-user.patch @@ -0,0 +1,18 @@ +Gentoo's sandbox does not whitelist this path by default yet. +TODO: bug link. + +Until we have a sandbox whitelisting the path let's rely on ccache's default. +--- a/src/Config.cpp ++++ b/src/Config.cpp +@@ -885,11 +885,5 @@ Config::check_key_tables_consistency() + std::string + Config::default_temporary_dir(const std::string& cache_dir) + { +-#ifdef HAVE_GETEUID +- std::string user_tmp_dir = FMT("/run/user/{}", geteuid()); +- if (Stat::stat(user_tmp_dir).is_directory()) { +- return user_tmp_dir + "/ccache-tmp"; +- } +-#endif + return cache_dir + "/tmp"; + } diff --git a/dev-util/clazy/clazy-1.7-r1.ebuild b/dev-util/clazy/clazy-1.7-r1.ebuild index 099f3b851ada..db6385b555df 100644 --- a/dev-util/clazy/clazy-1.7-r1.ebuild +++ b/dev-util/clazy/clazy-1.7-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" LICENSE="LGPL-2+" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 ~x86" IUSE="" RDEPEND=" diff --git a/dev-util/clazy/clazy-1.7.ebuild b/dev-util/clazy/clazy-1.7.ebuild deleted file mode 100644 index a364a426b700..000000000000 --- a/dev-util/clazy/clazy-1.7.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake - -DESCRIPTION="Compiler plugin which allows clang to understand Qt semantics" -HOMEPAGE="https://apps.kde.org/en/clazy" -SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" - -LICENSE="LGPL-2+" -SLOT="0" -KEYWORDS="amd64" -IUSE="" - -RDEPEND=" - >=sys-devel/clang-5.0:= - >=sys-devel/llvm-5.0:= -" -DEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}/${P}-gnuinstalldirs.patch" ) - -src_prepare() { - cmake_src_prepare - - sed -e '/install(FILES README.md COPYING-LGPL2.txt checks.json DESTINATION/d' \ - -i CMakeLists.txt || die -} - -src_configure() { - # this package requires both llvm and clang of the same version. - # clang pulls in the equivalent llvm version, but not vice versa. - # so, we must find llvm based on the installed clang version. - # bug #681568 - local clang_version=$(best_version "sys-devel/clang") - export LLVM_ROOT="/usr/lib/llvm/$(ver_cut 1 ${clang_version##sys-devel/clang-})" - cmake_src_configure -} diff --git a/dev-util/clinfo/Manifest b/dev-util/clinfo/Manifest index 586b9a74ac1f..8ccf248d1444 100644 --- a/dev-util/clinfo/Manifest +++ b/dev-util/clinfo/Manifest @@ -1,2 +1,3 @@ DIST clinfo-2.2.18.03.26.tar.gz 38519 BLAKE2B 736036f4f84c170876b9b550bfe837c67a273cef9032af8734035edf5070d17d876d10f7d5c81889966df0a9ad4192c43c1501326188782cc674611ea57130ef SHA512 dec90a314e6c52e5501339dbe594cb57cfc8cae6855db7bb88b36984fd661e55f2cc8eb29fa546998862c806ec752bfc2b6a9e0d9d962370f84b0091605c1bcb DIST clinfo-2.2.18.04.06.tar.gz 41459 BLAKE2B e90a515fd9318aeced510cd97cc477e1925b37e2c389ffee0ec484563acc9f0f9a8880cb38575b299c4f63e1b4a6959064d7d0d45487f67d6fcf32ce91962a47 SHA512 4aa1623bd08602e2104b4ba3150f36a9e8e8fb25728d4a1792a9cc81a2a5952a4a78ccad0928f098ce4e8bc05f30d09267e01ccd81d541fdfb0bc7de46908faf +DIST clinfo-3.0.20.11.20.tar.gz 49196 BLAKE2B b9ea6a8dc8624ec717e5f2817d52e8284da870c1c1784f1d817e014f856df0bccd37a1b3b3e7cd0dd20dc831b7625e38bef237560826aa03bbe7f9158298b290 SHA512 eb582cf91bb5642a43207e653fef06f89c458b53264e2ce182429fc697ae1e3f6e2b66daa13ca22c758c58e2201007eb3f34182bba9912f136dab9c9db63d851 diff --git a/dev-util/clinfo/clinfo-3.0.20.11.20.ebuild b/dev-util/clinfo/clinfo-3.0.20.11.20.ebuild new file mode 100644 index 000000000000..fc1ca3477ce1 --- /dev/null +++ b/dev-util/clinfo/clinfo-3.0.20.11.20.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/Oblomov/clinfo.git" + inherit git-r3 + SRC_URI="" +else + SRC_URI="https://github.com/Oblomov/clinfo/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +DESCRIPTION="A tool to display info about the system's OpenCL capabilities" +HOMEPAGE="https://github.com/Oblomov/clinfo" +LICENSE="CC0-1.0" +SLOT="0" + +DEPEND=">=virtual/opencl-3" +RDEPEND="${DEPEND}" + +src_install() { + emake MANDIR="${ED}"/usr/share/man PREFIX="${ED}"/usr install +} diff --git a/dev-util/debugedit/Manifest b/dev-util/debugedit/Manifest index a8c1f1590b87..f75fa034aa90 100644 --- a/dev-util/debugedit/Manifest +++ b/dev-util/debugedit/Manifest @@ -1,2 +1 @@ -DIST rpm-4.15.1.tar.bz2 4243893 BLAKE2B 352695e1fdac231127c9a2a775ff1aa05c1f3acbb10b0678e06011f9e4a5124e48cc19dce83417866e0f3c92bfd94e9c52b8c1884151ee77559bea1020d3623e SHA512 6c66835da5a54349bcfba5cc69831c8c57568aabd53c5c2820ec78c361be5116fecd41777b097e9c49458f984a7beb054fa8ed453ff7263cad4a29a11f780767 DIST rpm-4.16.0.tar.bz2 4341683 BLAKE2B 5161e5dcc6d9a1f1d4b8e44740fb368050b808fd9e8b8276fb17b530a4642e1b9ad104b5a30c0071215aef7f823eeab10988dd41f73af1c52d575529c374b5eb SHA512 177119c3ac3d48980db55bb4ba0fdbb2a911968e5efc690bfa8cc343f850fc90531cc0dee6dd8e45d2b14f0d951ced35bd8893d24011b7f270745d281ddf4e3d diff --git a/dev-util/debugedit/debugedit-4.15.1.ebuild b/dev-util/debugedit/debugedit-4.15.1.ebuild deleted file mode 100644 index ffc8eec35d4e..000000000000 --- a/dev-util/debugedit/debugedit-4.15.1.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic - -MY_P=rpm-${PV} -DESCRIPTION="Stand-alone debugedit from RPM" -HOMEPAGE="https://rpm.org - https://github.com/rpm-software-management/rpm" -SRC_URI="http://ftp.rpm.org/releases/rpm-$(ver_cut 1-2).x/${MY_P}.tar.bz2" - -LICENSE="GPL-2+ LGPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm64 hppa ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND=" - sys-libs/zlib:= - >=dev-libs/popt-1.7 - >=dev-libs/elfutils-0.176-r1 - dev-libs/nss -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - eapply_user - - # cheat it into believing we're bundling db - mkdir -p db/dist || die - touch db/dist/configure || die - chmod +x db/dist/configure || die - echo 'install:' > db3/Makefile || die - - # TODO: why do we need to do this? - mkdir rpm || die - find -name '*.h' -exec cp {} rpm/ ';' || die -} - -src_configure() { - append-cppflags -I"${EPREFIX}/usr/include/nss" -I"${EPREFIX}/usr/include/nspr" - local myconf=( - # force linking to static librpmio - --disable-shared - - # disable linking compression libraries - ac_cv_header_bzlib_h=no - ac_cv_header_lzma_h=no - --disable-zstd - - # fake some libraries we don't use - ac_cv_header_magic_h=yes - ac_cv_lib_magic_magic_open=yes - - # use nss as crypto provider - --with-crypto=nss - - # disable other stuff irrelevant to debugedit - --disable-bdb - --disable-nls - --disable-plugins - --disable-python - --without-acl - --without-archive - --without-cap - --without-external-db - --without-hackingdocs - --without-lua - --without-selinux - ) - econf "${myconf[@]}" -} - -src_compile() { - emake -C misc - emake -C rpmio - emake debugedit -} - -src_test() { - : -} - -src_install() { - dobin debugedit -} diff --git a/dev-util/debugedit/debugedit-4.16.0.ebuild b/dev-util/debugedit/debugedit-4.16.0.ebuild index dc3a711d8087..ffc8eec35d4e 100644 --- a/dev-util/debugedit/debugedit-4.16.0.ebuild +++ b/dev-util/debugedit/debugedit-4.16.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://ftp.rpm.org/releases/rpm-$(ver_cut 1-2).x/${MY_P}.tar.bz2" LICENSE="GPL-2+ LGPL-2+" SLOT="0" -KEYWORDS="amd64 ~arm64 ~hppa ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 hppa ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux" IUSE="" RDEPEND=" diff --git a/dev-util/include-what-you-use/Manifest b/dev-util/include-what-you-use/Manifest index 8199d96737be..706b4c0b4297 100644 --- a/dev-util/include-what-you-use/Manifest +++ b/dev-util/include-what-you-use/Manifest @@ -1 +1,2 @@ DIST include-what-you-use-10.0.tar.gz 598644 BLAKE2B 36c81bd493edfdfdc4df31c2dcb49d5acd3f6016f706e0c9d2f031d668ca16d71797d40b04fc9dc25a21738f7075320406fd666db74a0baa3832c149fe674e0e SHA512 e54a7c7e3a6d3e0de7c263d1f26b373d95b8fab5f1f7e76f52d80341bda2bad0fb12238a325dc1e2f6d3ab5e6d8e0b4ed60b5a19dc82e06d480bcb461f9aefba +DIST include-what-you-use-11.0.tar.gz 603435 BLAKE2B 7bfa37349cc4bf5d07033c28d9d3851f0ce2093f1703a0392ac633ab2761dfdfb7cd923099177747e3389d2d41330351242c6f936399acf73119c201d8776978 SHA512 db15efa9b92015322e9a188be6cf16a5c6fd71271c94fde45245676f2a8f6ffe4c7837e3b0bb5f9be6cbe78aab245129816a3b046c44c261a2b7ab5c3a9ea7b9 diff --git a/dev-util/include-what-you-use/include-what-you-use-11.0.ebuild b/dev-util/include-what-you-use/include-what-you-use-11.0.ebuild new file mode 100644 index 000000000000..662b79bec3f4 --- /dev/null +++ b/dev-util/include-what-you-use/include-what-you-use-11.0.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} ) + +inherit cmake flag-o-matic llvm python-single-r1 + +# Sometimes the tag is clang_9, sometimes it's IWYU-0.13 +UPSTREAM_PV=0.15 + +DESCRIPTION="Find unused include directives in C/C++ programs" +HOMEPAGE="https://include-what-you-use.org/" +SRC_URI="https://github.com/${PN}/${PN}/archive/${UPSTREAM_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +LLVM_MAX_SLOT=11 + +RDEPEND="sys-devel/llvm:${LLVM_MAX_SLOT} + sys-devel/clang:${LLVM_MAX_SLOT} + ${PYTHON_DEPS} +" +DEPEND="${RDEPEND}" + +REQUIRED_USE=${PYTHON_REQUIRED_USE} + +S=${WORKDIR}/${PN}-${UPSTREAM_PV} + +pkg_setup() { + llvm_pkg_setup + python-single-r1_pkg_setup +} + +src_prepare() { + cmake_src_prepare + python_fix_shebang . +} + +src_configure() { + local mycmakeargs=( + # Note [llvm install path] + # Unfortunately all binaries using clang driver + # have to reside at the same path depth as + # 'clang' binary itself. See bug #625972 + # Thus as a hack we install it to the same directory + # as llvm/clang itself. + -DCMAKE_INSTALL_PREFIX="$(get_llvm_prefix "${LLVM_MAX_SLOT}")" + ) + cmake_src_configure +} + +src_test() { + "${EPYTHON}" run_iwyu_tests.py +} diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz index ba9f9c488050..271f8baaf9ee 100644 Binary files a/eclass/Manifest.gz and b/eclass/Manifest.gz differ diff --git a/eclass/ruby-utils.eclass b/eclass/ruby-utils.eclass index 3f2acc023a5f..45ad3d274028 100644 --- a/eclass/ruby-utils.eclass +++ b/eclass/ruby-utils.eclass @@ -28,10 +28,10 @@ if [[ ! ${_RUBY_UTILS} ]]; then # provide for a better first installation experience. # All stable RUBY_TARGETS -RUBY_TARGETS_PREFERENCE="ruby25 " +RUBY_TARGETS_PREFERENCE="ruby26 ruby25 " # All other active ruby targets -RUBY_TARGETS_PREFERENCE+="ruby26 ruby27" +RUBY_TARGETS_PREFERENCE+="ruby27" _ruby_implementation_depend() { diff --git a/games-action/0verkill/0verkill-0.16-r4.ebuild b/games-action/0verkill/0verkill-0.16-r4.ebuild index e1b5419bf8c6..39ebed3ca4cb 100644 --- a/games-action/0verkill/0verkill-0.16-r4.ebuild +++ b/games-action/0verkill/0verkill-0.16-r4.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit autotools @@ -18,13 +18,14 @@ DEPEND="X? ( x11-libs/libXpm )" RDEPEND=${DEPEND} PATCHES=( - "${FILESDIR}"/${P}-docs.patch - "${FILESDIR}"/${P}-home-overflow.patch - "${FILESDIR}"/${P}-segv.patch - "${FILESDIR}"/${P}-gentoo-paths.patch - "${FILESDIR}"/${P}-ovflfix.patch - "${FILESDIR}"/${P}-CC.patch - "${FILESDIR}"/${P}-underflow-check.patch #136222 + "${FILESDIR}"/${P}-docs.patch + "${FILESDIR}"/${P}-home-overflow.patch + "${FILESDIR}"/${P}-segv.patch + "${FILESDIR}"/${P}-gentoo-paths.patch + "${FILESDIR}"/${P}-ovflfix.patch + "${FILESDIR}"/${P}-CC.patch + "${FILESDIR}"/${P}-underflow-check.patch #136222 + "${FILESDIR}"/${P}-fno-common.patch ) src_prepare() { diff --git a/games-action/0verkill/files/0verkill-0.16-fno-common.patch b/games-action/0verkill/files/0verkill-0.16-fno-common.patch new file mode 100644 index 000000000000..bf03ff424e2f --- /dev/null +++ b/games-action/0verkill/files/0verkill-0.16-fno-common.patch @@ -0,0 +1,87 @@ +--- a/bot.c ++++ b/bot.c +@@ -104,7 +104,7 @@ + + /* objects */ + struct object_list objects; +-struct object_list *last_obj; ++extern struct object_list *last_obj; + struct it* hero; + + unsigned long_long game_start_offset; /* time difference between game start on this machine and on server */ +--- a/client.c ++++ b/client.c +@@ -97,7 +97,7 @@ + + /* objects */ + struct object_list objects; +-struct object_list *last_obj; ++extern struct object_list *last_obj; + struct it* hero; + + /* important sprites */ +--- a/data.c ++++ b/data.c +@@ -13,6 +13,9 @@ + #include "md5.h" + #include "error.h" + ++unsigned char *weapon_name[ARMS]; ++struct obj_attr_type obj_attr[N_TYPES]; ++struct weapon_type weapon[ARMS]; + + #ifdef TRI_D + int tri_d=0; +--- a/data.h ++++ b/data.h +@@ -62,7 +62,7 @@ + + #define ARMS 5 + +-unsigned char *weapon_name[ARMS]; ++extern unsigned char *weapon_name[ARMS]; + + /* STATUS + 0: walk +@@ -91,7 +91,8 @@ + bit 1=server updates + bit 2=server sends updates to clients + */ +-}obj_attr[N_TYPES]; ++}; ++extern struct obj_attr_type obj_attr[N_TYPES]; + + + /* weapon attribut table */ +@@ -107,7 +108,8 @@ + unsigned char add_ammo; + unsigned char max_ammo; + my_double shell_xspeed,shell_yspeed; +-}weapon[ARMS]; ++}; ++extern struct weapon_type weapon[ARMS]; + + + /* object in the game */ +--- a/editor.c ++++ b/editor.c +@@ -26,7 +26,7 @@ + int oldx=0,oldy=0; /* old cursor position */ + + struct object_list objects; +-struct object_list *last_obj; ++extern struct object_list *last_obj; + int level_number; + + +--- a/server.c ++++ b/server.c +@@ -100,7 +100,7 @@ + struct object_list objects; + + struct player_list *last_player; +-struct object_list *last_obj; ++extern struct object_list *last_obj; + + + #ifdef WIN32 diff --git a/games-action/Manifest.gz b/games-action/Manifest.gz index 46d61a17dec9..15369fc5f958 100644 Binary files a/games-action/Manifest.gz and b/games-action/Manifest.gz differ diff --git a/games-action/luola/files/luola-1.3.2-fno-common.patch b/games-action/luola/files/luola-1.3.2-fno-common.patch new file mode 100644 index 000000000000..e0b191df831f --- /dev/null +++ b/games-action/luola/files/luola-1.3.2-fno-common.patch @@ -0,0 +1,33 @@ +--- a/src/pilot.c ++++ b/src/pilot.c +@@ -43,6 +43,8 @@ + #define PILOT_STD_RADIUS 4.1 /* Normal radius for pilot */ + #define PILOT_PAR_RADIUS 8.0 /* Parachuting radius for pilot */ + ++struct Pilot Pilot; ++ + /* List of active pilots */ + struct dllist *pilot_list; + +--- a/src/pilot.h ++++ b/src/pilot.h +@@ -45,7 +45,8 @@ + int toofast; /* How long has the pilot been falling too fast */ + struct Spring *rope; /* The ninjarope */ + int ropectrl; /* -1 retracts rope, 1 extends it */ +-} Pilot; ++}; ++extern struct Pilot Pilot; + + /* Rope length limits. Actual rope length is nodelen*nodecount */ + static const double pilot_rope_minlen = 0.1; +--- a/tools/im_vwing.c ++++ b/tools/im_vwing.c +@@ -24,6 +24,7 @@ + #include + #include + #include ++#include + #include + + #include "im_vwing.h" diff --git a/games-action/luola/luola-1.3.2-r1.ebuild b/games-action/luola/luola-1.3.2-r1.ebuild index ff2ec53aa188..0a2f70c623da 100644 --- a/games-action/luola/luola-1.3.2-r1.ebuild +++ b/games-action/luola/luola-1.3.2-r1.ebuild @@ -1,22 +1,23 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit autotools desktop gnome2-utils +inherit autotools desktop xdg DESCRIPTION="A 2D multiplayer arcade game resembling V-Wing" HOMEPAGE="http://freshmeat.sourceforge.net/projects/luola" -SRC_URI="mirror://gentoo/${P}.tar.gz +SRC_URI=" + mirror://gentoo/${P}.tar.gz mirror://gentoo/stdlevels-6.0.tar.gz mirror://gentoo/nostalgia-1.2.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -RDEPEND="media-libs/libsdl[X,sound,joystick,video] +RDEPEND=" + media-libs/libsdl[X,sound,joystick,video] media-libs/sdl-gfx media-libs/sdl-image[jpeg,png] media-libs/sdl-mixer @@ -25,6 +26,7 @@ DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${P}-underlink.patch + "${FILESDIR}"/${P}-fno-common.patch ) src_prepare() { @@ -37,24 +39,14 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install + default + insinto /usr/share/${PN}/levels doins "${WORKDIR}"/*.{lev,png} - dodoc AUTHORS ChangeLog DATAFILE FAQ LEVELFILE README TODO \ - RELEASENOTES.txt ../README.Nostalgia + + dodoc DATAFILE LEVELFILE RELEASENOTES.txt ../README.Nostalgia newdoc ../README README.stdlevels + doicon -s 64 luola.png make_desktop_entry luola Luola } - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} diff --git a/games-arcade/Manifest.gz b/games-arcade/Manifest.gz index 6b4c8ae66e0f..2903cf88d6c3 100644 Binary files a/games-arcade/Manifest.gz and b/games-arcade/Manifest.gz differ diff --git a/games-arcade/primateplunge/files/primateplunge-1.1-fno-common.patch b/games-arcade/primateplunge/files/primateplunge-1.1-fno-common.patch new file mode 100644 index 000000000000..7905b0372e72 --- /dev/null +++ b/games-arcade/primateplunge/files/primateplunge-1.1-fno-common.patch @@ -0,0 +1,11 @@ +--- a/src/game.h ++++ b/src/game.h +@@ -125,7 +125,7 @@ + + + /* Glabals in main.c */ +-SDL_Surface *mainScreen; ++extern SDL_Surface *mainScreen; + + /* Globals in game.c */ + extern world* currentWorld; diff --git a/games-arcade/primateplunge/primateplunge-1.1-r2.ebuild b/games-arcade/primateplunge/primateplunge-1.1-r2.ebuild index 4023588bfee4..b14ba0d459b0 100644 --- a/games-arcade/primateplunge/primateplunge-1.1-r2.ebuild +++ b/games-arcade/primateplunge/primateplunge-1.1-r2.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + inherit autotools desktop DESCRIPTION="Help poor Monkey navigate his way down through treacherous areas" @@ -11,22 +12,27 @@ SRC_URI="https://www.aelius.com/${PN}/${P}.tar.gz" LICENSE="Primate-Plunge" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RESTRICT="mirror bindist" #465850 -DEPEND="media-libs/libsdl[sound,video] +DEPEND=" + media-libs/libsdl[sound,video] media-libs/sdl-mixer" RDEPEND="${DEPEND}" +PATCHES=( + "${FILESDIR}"/${P}-AC_SUBST.patch + "${FILESDIR}"/${P}-fno-common.patch +) + src_prepare() { default - eapply "${FILESDIR}"/${P}-AC_SUBST.patch eautoreconf } src_install() { default dodoc TIPS - newicon graphics/idle.bmp ${PN}.bmp - make_desktop_entry ${PN} "Primate Plunge" /usr/share/pixmaps/${PN}.bmp + + newicon graphics/idle.bmp primateplunge.bmp + make_desktop_entry primateplunge "Primate Plunge" /usr/share/pixmaps/primateplunge.bmp } diff --git a/games-arcade/sdlroids/files/sdlroids-1.3.4-Makefile.patch b/games-arcade/sdlroids/files/sdlroids-1.3.4-Makefile.patch new file mode 100644 index 000000000000..9577d4cb6582 --- /dev/null +++ b/games-arcade/sdlroids/files/sdlroids-1.3.4-Makefile.patch @@ -0,0 +1,15 @@ +--- a/Makefile.am ++++ b/Makefile.am +@@ -23,9 +23,9 @@ + GFXDIR="$(datadir)/sdlroids/bmp/" + + install-data-local: +- @/bin/sh $(srcdir)/mkinstalldirs $(SOUNDSDIR) $(GFXDIR) +- $(INSTALL_DATA) $(srcdir)/sounds/*.wav $(SOUNDSDIR) +- $(INSTALL_DATA) $(srcdir)/bmp/*.bmp $(GFXDIR) ++ @/bin/sh $(srcdir)/mkinstalldirs $(DESTDIR)$(SOUNDSDIR) $(DESTDIR)$(GFXDIR) ++ $(INSTALL_DATA) $(srcdir)/sounds/*.wav $(DESTDIR)$(SOUNDSDIR) ++ $(INSTALL_DATA) $(srcdir)/bmp/*.bmp $(DESTDIR)$(GFXDIR) + + # Data directories + INCLUDES=-Wall -Wcast-align -DDATADIR=\"$(datadir)/sdlroids/\" diff --git a/games-arcade/sdlroids/files/sdlroids-1.3.4-fno-common.patch b/games-arcade/sdlroids/files/sdlroids-1.3.4-fno-common.patch new file mode 100644 index 000000000000..6288adf913b1 --- /dev/null +++ b/games-arcade/sdlroids/files/sdlroids-1.3.4-fno-common.patch @@ -0,0 +1,140 @@ +--- a/getargs.h ++++ b/getargs.h +@@ -37,4 +37,4 @@ + + /* getargs() prototype */ + void getargs(int, char *[]); +-int flagargs[NUMARGS]; ++extern int flagargs[NUMARGS]; +--- a/sdl.c ++++ b/sdl.c +@@ -282,7 +282,7 @@ + #define SGN(a) (((a)<0) ? -1 : 1) + + /* Draw an horizontal line in the current color */ +-inline void draw_horzline(Sint16 x1, Sint16 x2, Sint32 y) ++void draw_horzline(Sint16 x1, Sint16 x2, Sint32 y) + { + int i; + if (x1 < x2) { +@@ -296,7 +296,7 @@ + } + + /* Draw an vertical line in the current color */ +-inline void draw_vertline(Sint16 x, Sint16 y1, Sint32 y2) ++void draw_vertline(Sint16 x, Sint16 y1, Sint32 y2) + { + int i; + if (y1 < y2) { +@@ -310,7 +310,7 @@ + } + + /* Draw a line between two coordinates */ +-inline void drawline(int x1,int y1,int x2,int y2) ++void drawline(int x1,int y1,int x2,int y2) + { + int d, x, y, ax, ay, sx, sy, dx, dy; + if((dx = x2 - x1) == 0) { /* vertical line */ +@@ -358,7 +358,7 @@ + } + } + +-inline void MoveTo(int x,int y) ++void MoveTo(int x,int y) + { + current_x = convx(x); + current_y = convy(y); +@@ -366,12 +366,12 @@ + + + /* Scaling blit function by Greg Velichansky */ +-inline Uint32 ifloor(Uint32 i) ++Uint32 ifloor(Uint32 i) + { + return i & 0xFFFF0000; + } + +-inline Uint32 iceil(Uint32 i) ++Uint32 iceil(Uint32 i) + { + return (i & 0xFFFF) ? i : ifloor(i) + (1<<16); + } +@@ -379,7 +379,7 @@ + + /* The most pedantic-a%& getpixel and putpixel ever, hopefully. */ + /* There may still be endianness bugs! These will be fixed after adequte testing. XXX XXX XXX */ +-inline int SDL_GetPixel (SDL_Surface *f, Uint32 x, Uint32 y, ++int SDL_GetPixel (SDL_Surface *f, Uint32 x, Uint32 y, + Uint8 *r, Uint8 *g, Uint8 *b) + { + /*const Uint32 mask[] = {0x0, 0xff, 0xffff, 0xffffff, 0xffffffff};*/ +@@ -515,7 +515,7 @@ + SDL_UnlockSurface(screen); + } + } +-inline void lock_graphics() { ++void lock_graphics() { + if ( SDL_MUSTLOCK(screen) ) { + if ( SDL_LockSurface(screen) < 0 ) { + return; +@@ -523,13 +523,13 @@ + } + } + +-inline void ResetRefreshCoords() ++void ResetRefreshCoords() + { + minx = miny = -1; + maxx = maxy = 0; + } + +-inline void RedrawObject() { ++void RedrawObject() { + if(minx >= 0) { + rects[rec_counter].x = minx; + rects[rec_counter].y = miny; +@@ -540,7 +540,7 @@ + } + + static int is_poly=0; +-inline void LineTo(int x,int y) ++void LineTo(int x,int y) + { + x = convx(x); y = convy(y); + drawline(current_x,current_y,x,y); +@@ -549,7 +549,7 @@ + } + + +-inline void Polyline(POINT *pts,int n) ++void Polyline(POINT *pts,int n) + { + int f; + if(n<2) return; +@@ -560,7 +560,7 @@ + LineTo(pts->x, pts->y); + } + +-inline void Circle(Sint16 x, Sint16 y, Sint32 r) ++void Circle(Sint16 x, Sint16 y, Sint32 r) + { + x = convx(x); + y = convy(y); +@@ -569,7 +569,7 @@ + } + + /* doesn't set current_[xy] because hyperoid.c doesn't need it to */ +-inline void SetPixel(Sint16 x, Sint16 y,Uint32 c) ++void SetPixel(Sint16 x, Sint16 y,Uint32 c) + { + current_color = c; + x = convx(x); +@@ -578,7 +578,7 @@ + } + + +-inline void set_colour(int c) ++void set_colour(int c) + { + current_color = c; + } diff --git a/games-arcade/sdlroids/files/1.3.4-sound.patch b/games-arcade/sdlroids/files/sdlroids-1.3.4-sound.patch similarity index 100% rename from games-arcade/sdlroids/files/1.3.4-sound.patch rename to games-arcade/sdlroids/files/sdlroids-1.3.4-sound.patch diff --git a/games-arcade/sdlroids/sdlroids-1.3.4-r4.ebuild b/games-arcade/sdlroids/sdlroids-1.3.4-r4.ebuild index 5500d6870314..30d2f85a7f33 100644 --- a/games-arcade/sdlroids/sdlroids-1.3.4-r4.ebuild +++ b/games-arcade/sdlroids/sdlroids-1.3.4-r4.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit desktop +EAPI=7 + +inherit autotools desktop DESCRIPTION="Asteroids Clone for X using SDL" HOMEPAGE="http://david.hedbor.org/projects/sdlroids/" @@ -11,24 +12,27 @@ SRC_URI="mirror://sourceforge/sdlroids/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~x86" -IUSE="" -DEPEND="media-libs/libsdl - media-libs/sdl-mixer -" -RDEPEND="${DEPEND}" +RDEPEND=" + media-libs/libsdl + media-libs/sdl-mixer" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/${P}-sound.patch + "${FILESDIR}"/${P}-Makefile.patch + "${FILESDIR}"/${P}-fno-common.patch +) src_prepare() { default - sed -i \ - -e 's/$(SOUNDSDIR)/$(DESTDIR)$(SOUNDSDIR)/' \ - -e 's/$(GFXDIR)/$(DESTDIR)$(GFXDIR)/' Makefile.in \ - || die "sed failed" - eapply "${FILESDIR}"/${PV}-sound.patch + mv configure.{in,ac} || die + eautoreconf } src_install() { default + newicon icons/sdlroids-48x48.xpm ${PN}.xpm make_desktop_entry ${PN} SDLRoids ${PN} } diff --git a/games-arcade/spout/files/spout-1.3-fno-common.patch b/games-arcade/spout/files/spout-1.3-fno-common.patch new file mode 100644 index 000000000000..37c1098b0826 --- /dev/null +++ b/games-arcade/spout/files/spout-1.3-fno-common.patch @@ -0,0 +1,18 @@ +--- a/piece.c ++++ b/piece.c +@@ -11,6 +11,7 @@ + + SDL_Surface *video, *layer; + SDL_Rect layerRect; ++int zoom, fullscreen; + + unsigned char *vBuffer = NULL; + +--- a/piece.h ++++ b/piece.h +@@ -53,4 +53,4 @@ + + int pcePadGet (); + +-int zoom, fullscreen; ++extern int zoom, fullscreen; diff --git a/games-arcade/spout/spout-1.3-r1.ebuild b/games-arcade/spout/spout-1.3-r1.ebuild index 876b18d55681..2057b0f1b3be 100644 --- a/games-arcade/spout/spout-1.3-r1.ebuild +++ b/games-arcade/spout/spout-1.3-r1.ebuild @@ -1,10 +1,12 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + inherit desktop readme.gentoo-r1 MY_P="spout-unix-${PV}" + DESCRIPTION="Abstract Japanese caveflier / shooter" HOMEPAGE="http://freshmeat.net/projects/spout/" SRC_URI="http://rohanpm.net/files/old/${MY_P}.tar.bz2" @@ -12,31 +14,31 @@ SRC_URI="http://rohanpm.net/files/old/${MY_P}.tar.bz2" LICENSE="LGPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" DEPEND=">=media-libs/libsdl-1.2.6" RDEPEND="${DEPEND}" S="${WORKDIR}/${MY_P}" -DISABLE_AUTOFORMATTING="yes" -DOC_CONTENTS=" -To play in fullscreen mode, do 'spout f'. -To play in a greater resolution, do 'spout x', where -x is an integer; the larger x is, the higher the resolution. - -To play: -* Accelerate - spacebar, enter, z, x -* Pause - escape -* Exit - shift+escape -* Rotate - left or right -" +PATCHES=( "${FILESDIR}"/${P}-fno-common.patch ) src_install() { dobin spout + einstalldocs + doicon spout.png make_desktop_entry spout "Spout" - einstalldocs + + local DOC_CONTENTS=" + To play in fullscreen mode, do 'spout f'. + To play in a greater resolution, do 'spout x', where + x is an integer; the larger x is, the higher the resolution. + + To play: + * Accelerate - spacebar, enter, z, x + * Pause - escape + * Exit - shift+escape + * Rotate - left or right" readme.gentoo_create_doc } diff --git a/games-arcade/xrick/files/xrick-021212-Makefile.patch b/games-arcade/xrick/files/xrick-021212-Makefile.patch new file mode 100644 index 000000000000..2911f4715d45 --- /dev/null +++ b/games-arcade/xrick/files/xrick-021212-Makefile.patch @@ -0,0 +1,30 @@ +--- a/Makefile ++++ b/Makefile +@@ -71,10 +71,8 @@ + all: + @echo "ROOTDIR=$(ROOTDIR)" > Makefile.global + @echo "XOBJ=$(XOBJ)" >> Makefile.global +- @echo "CFLAGS=-g -ansi -pedantic -Wall -W -O2 -I $(ROOTDIR)/include $(shell sdl-config --cflags)" >> Makefile.global +- @echo "LDFLAGS=-lz $(shell sdl-config --libs)" >> Makefile.global +- @echo "CC=gcc" >> Makefile.global +- @echo "CPP=gcc -E" >> Makefile.global ++ @echo "CFLAGS+=-pedantic -Wall -I$(ROOTDIR)/include $(shell sdl-config --cflags)" >> Makefile.global ++ @echo "LIBS+=-lz $(shell sdl-config --libs)" >> Makefile.global + $(MAKE) -C src all + + clean: +--- a/src/Makefile ++++ b/src/Makefile +@@ -40,10 +40,10 @@ + all: $(TARGET) + + $(TARGET): $(OBJECTS) $(XOBJ) +- $(CC) $(OBJECTS) $(XOBJ) $(LDFLAGS) -o $(TARGET) ++ $(CC) $(LDFLAGS) $(OBJECTS) $(XOBJ) -o $(TARGET) $(LIBS) + + %.o: %.c +- $(CC) $(CFLAGS) -c $< -o $@ ++ $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ + + xrick.res: xrick.rc + windres $< -O coff -o $@ diff --git a/games-arcade/xrick/files/xrick-021212-fno-common.patch b/games-arcade/xrick/files/xrick-021212-fno-common.patch new file mode 100644 index 000000000000..d3c05c30dbef --- /dev/null +++ b/games-arcade/xrick/files/xrick-021212-fno-common.patch @@ -0,0 +1,34 @@ +--- a/include/img.h ++++ b/include/img.h +@@ -27,7 +27,7 @@ + U8 *pixels; + } img_t; + +-img_t *IMG_SPLASH; ++extern img_t *IMG_SPLASH; + + #endif + +--- a/src/dat_snd.c ++++ b/src/dat_snd.c +@@ -19,14 +19,14 @@ + + sound_t *WAV_WAA; + sound_t *WAV_BOMB; +-sound_t *WAV_BULLET; +-sound_t *WAV_WALK; +-sound_t *WAV_JUMP; ++extern sound_t *WAV_BULLET; ++extern sound_t *WAV_WALK; ++extern sound_t *WAV_JUMP; + sound_t *WAV_TING; +-sound_t *WAV_BOMBSHHT; +-sound_t *WAV_BONUS; ++extern sound_t *WAV_BOMBSHHT; ++extern sound_t *WAV_BONUS; + sound_t *WAV_SHHT; +-sound_t *WAV_BOX; ++extern sound_t *WAV_BOX; + sound_t *WAV_DDDING; + + #endif /* ENABLE_SOUND */ diff --git a/games-arcade/xrick/xrick-021212-r2.ebuild b/games-arcade/xrick/xrick-021212-r2.ebuild index c24058e2784b..3ef05387653d 100644 --- a/games-arcade/xrick/xrick-021212-r2.ebuild +++ b/games-arcade/xrick/xrick-021212-r2.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit desktop +EAPI=7 + +inherit desktop toolchain-funcs DESCRIPTION="Clone of the Rick Dangerous adventure game from the 80's" HOMEPAGE="http://www.bigorno.net/xrick/" @@ -11,44 +12,51 @@ SRC_URI="http://www.bigorno.net/xrick/${P}.tgz" LICENSE="GPL-1+ xrick" SLOT="0" KEYWORDS="~amd64 ~ppc64 ~x86" -IUSE="" RESTRICT="mirror bindist" # bug #149097 DEPEND="media-libs/libsdl[video]" RDEPEND="${DEPEND}" +PATCHES=( + "${FILESDIR}"/${P}-exit.patch + "${FILESDIR}"/${P}-fullscreen.patch + "${FILESDIR}"/${P}-zlib.patch + "${FILESDIR}"/${P}-Makefile.patch + "${FILESDIR}"/${P}-fno-common.patch +) + src_unpack() { unpack ${A} - cd "${S}" + cd "${S}" || die unpack ./xrick.6.gz } src_prepare() { default - eapply "${FILESDIR}"/${P}*.patch + sed -i \ -e "/^run from/d" \ - -e "/data.zip/ s:the directory where xrick is:$(get_libdir)/${PN}.:" \ + -e "/data.zip/ s:the directory where xrick is:$(get_libdir)/xrick.:" \ xrick.6 || die sed -i \ - -e "s:data.zip:/usr/$(get_libdir)/${PN}/data.zip:" \ + -e "s:data.zip:${EPREFIX}/usr/$(get_libdir)/xrick/data.zip:" \ src/xrick.c || die +} - sed -i \ - -e "s/-g -ansi -pedantic -Wall -W -O2/${CFLAGS}/" \ - -e '/LDFLAGS/s/=/+=/' \ - -e '/CC=/d' \ - -e "/CPP=/ { s/gcc/\$(CC)/; s/\"/'/g }" \ - Makefile || die +src_configure() { + tc-export CC } src_install() { dobin xrick - insinto /usr/"$(get_libdir)"/${PN} + + insinto /usr/$(get_libdir)/xrick doins data.zip - newicon src/xrickST.ico ${PN}.ico - make_desktop_entry ${PN} ${PN} /usr/share/pixmaps/${PN}.ico + dodoc README KeyCodes doman xrick.6 + + newicon src/xrickST.ico xrick.ico + make_desktop_entry xrick xrick /usr/share/pixmaps/xrick.ico } diff --git a/games-board/Manifest.gz b/games-board/Manifest.gz index bf41b63dcf54..d7b1b84fa62d 100644 Binary files a/games-board/Manifest.gz and b/games-board/Manifest.gz differ diff --git a/games-board/tali/Manifest b/games-board/tali/Manifest index aa1df0b3ca2f..2a632e40b83b 100644 --- a/games-board/tali/Manifest +++ b/games-board/tali/Manifest @@ -1 +1,2 @@ DIST tali-3.36.4.tar.xz 1765348 BLAKE2B 0d4d8bb3b66d58295ecd13e6f985149efb412a6af420baefaea603c9cb043aaa3d353a4930abb18809f42ed2690c81455954778b1a326ca2e9ce36426d0a4668 SHA512 cd01a93ba96d5c8c264e2a73fba3dc16be72a1a1d50f40555e3ef381d3ab03797f25de2a2c7603bd35ac87568f3d43e3763ee65e95dffebe92eafb59d332a3df +DIST tali-3.38.2.tar.xz 1579972 BLAKE2B 1196f89b3cabcf1cffb36cba5b5e0c98edf9a07e6461bf39c054c35fbb622f3beabfd4e9563592fc44e81cfa18010343cf711b86c80cae33f4df38ad390736da SHA512 8084a3f82148a99c49423f9fd828732300e4c9283be7dbe235f9f74216862d321f106182f0ed95985f37c67e36b20dda5d48db2063a607b08126f3875dbcaae3 diff --git a/games-board/tali/tali-3.38.2.ebuild b/games-board/tali/tali-3.38.2.ebuild new file mode 100644 index 000000000000..b9cdede99543 --- /dev/null +++ b/games-board/tali/tali-3.38.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit gnome.org gnome2-utils meson xdg + +DESCRIPTION="Beat the odds in a poker-style dice game" +HOMEPAGE="https://wiki.gnome.org/Apps/Tali" + +LICENSE="GPL-2+ FDL-1.1+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="" + +DEPEND=" + dev-libs/glib:2 + >=x11-libs/gtk+-3.16:3 + dev-libs/libgnome-games-support:1= +" +RDEPEND="${DEPEND} + >=gnome-base/librsvg-2.32:2 +" +DEPEND=" + dev-libs/appstream-glib + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} diff --git a/games-emulation/Manifest.gz b/games-emulation/Manifest.gz index b6ee8bd64666..5c04191a4dcb 100644 Binary files a/games-emulation/Manifest.gz and b/games-emulation/Manifest.gz differ diff --git a/games-emulation/advancemame/advancemame-3.9.ebuild b/games-emulation/advancemame/advancemame-3.9.ebuild index 61a5a35b78d6..2759ceac28f3 100644 --- a/games-emulation/advancemame/advancemame-3.9.ebuild +++ b/games-emulation/advancemame/advancemame-3.9.ebuild @@ -43,6 +43,7 @@ PATCHES=( "${FILESDIR}"/${P}-blank-flags.patch "${FILESDIR}"/${P}-DESTDIR.patch "${FILESDIR}"/${P}-FHS.patch + "${FILESDIR}"/${P}-fno-common.patch ) src_prepare() { diff --git a/games-emulation/advancemame/files/advancemame-3.9-fno-common.patch b/games-emulation/advancemame/files/advancemame-3.9-fno-common.patch new file mode 100644 index 000000000000..c378b9aa919e --- /dev/null +++ b/games-emulation/advancemame/files/advancemame-3.9-fno-common.patch @@ -0,0 +1,33 @@ +From f8688cae05799a30cd5337e626a07fa9f004c0a3 Mon Sep 17 00:00:00 2001 +From: Andrea Mazzoleni +Date: Fri, 23 Oct 2020 21:29:41 +0200 +Subject: [PATCH] Fix build errors due new gcc 10 default for -fno-common + +--- + src/drivers/cavepgm.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/src/drivers/cavepgm.c b/src/drivers/cavepgm.c +index 38d3dae8..df6e97ab 100644 +--- a/src/drivers/cavepgm.c ++++ b/src/drivers/cavepgm.c +@@ -287,7 +287,7 @@ IGS PCB NO-0136 (Riser) + #include "timer.h" + + +-UINT16 *pgm_mainram, *pgm_bg_videoram, *pgm_tx_videoram, *pgm_videoregs, *pgm_rowscrollram; ++extern UINT16 *pgm_mainram, *pgm_bg_videoram, *pgm_tx_videoram, *pgm_videoregs, *pgm_rowscrollram; + static UINT8 *z80_mainram; + static UINT32 *arm7_shareram; + static UINT32 arm7_latch; +@@ -852,8 +852,8 @@ static void expand_32x32x5bpp(void) + /* This function expands the sprite colour data (in the A Roms) from 3 pixels + in each word to a byte per pixel making it easier to use */ + +-UINT8 *pgm_sprite_a_region; +-size_t pgm_sprite_a_region_allocate; ++extern UINT8 *pgm_sprite_a_region; ++extern size_t pgm_sprite_a_region_allocate; + + static void expand_colourdata(void) + { diff --git a/games-emulation/gens/files/gens-2.15.5-fno-common.patch b/games-emulation/gens/files/gens-2.15.5-fno-common.patch new file mode 100644 index 000000000000..b4493378e6f0 --- /dev/null +++ b/games-emulation/gens/files/gens-2.15.5-fno-common.patch @@ -0,0 +1,58 @@ +--- a/src/gens/gens_core/sound/ym2612.c ++++ b/src/gens/gens_core/sound/ym2612.c +@@ -241,7 +241,7 @@ + ***********************************************/ + + +-INLINE void ++void + CALC_FINC_SL (slot_ * SL, int finc, int kc) + { + int ksr; +@@ -284,7 +284,7 @@ + } + + +-INLINE void ++void + CALC_FINC_CH (channel_ * CH) + { + int finc, kc; +@@ -305,7 +305,7 @@ + ***********************************************/ + + +-INLINE void ++void + KEY_ON (channel_ * CH, int nsl) + { + slot_ *SL = &(CH->SLOT[nsl]); // on recupère le bon pointeur de slot +@@ -331,7 +331,7 @@ + } + + +-INLINE void ++void + KEY_OFF (channel_ * CH, int nsl) + { + slot_ *SL = &(CH->SLOT[nsl]); // on recupère le bon pointeur de slot +@@ -351,7 +351,7 @@ + } + + +-INLINE void ++void + CSM_Key_Control () + { + KEY_ON (&YM2612.CHANNEL[2], 0); +--- a/src/gens/segacd/cd_aspi.c ++++ b/src/gens/segacd/cd_aspi.c +@@ -55,7 +55,7 @@ + DWORD (*Get_ASPI_Version) (void); + DWORD (*Send_ASPI_Command) (LPSRB); + int ASPI_Command_Running; +-int CDROM_SPEED; ++extern int CDROM_SPEED; + int Num_CD_Drive; + int CUR_DEV; // a che serve? + int DEV_PAR[8][3]; diff --git a/games-emulation/gens/files/gens-2.15.5-zlib-OF.patch b/games-emulation/gens/files/gens-2.15.5-zlib-OF.patch new file mode 100644 index 000000000000..5a357cc633e0 --- /dev/null +++ b/games-emulation/gens/files/gens-2.15.5-zlib-OF.patch @@ -0,0 +1,7 @@ +--- a/src/gens/util/file/unzip.h ++++ b/src/gens/util/file/unzip.h +@@ -1,3 +1,4 @@ ++#define OF(x) x + /* unzip.h -- IO for uncompress .zip files using zlib + Version 0.15 beta, Mar 19th, 1998, + diff --git a/games-emulation/gens/gens-2.15.5-r1.ebuild b/games-emulation/gens/gens-2.15.5-r1.ebuild deleted file mode 100644 index de49e5ffa082..000000000000 --- a/games-emulation/gens/gens-2.15.5-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit desktop flag-o-matic - -DESCRIPTION="A Sega Genesis/CD/32X emulator" -HOMEPAGE="https://sourceforge.net/projects/gens/" -SRC_URI="mirror://sourceforge/gens/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=" - virtual/opengl - >=media-libs/libsdl-1.2[joystick,video] - x11-libs/gtk+:2 -" -DEPEND="${RDEPEND} - >=dev-lang/nasm-0.98 -" - -src_prepare() { - default - eapply \ - "${FILESDIR}"/${P}-romsdir.patch \ - "${FILESDIR}"/${P}-as-needed.patch \ - "${FILESDIR}"/${P}-ovflfix.patch \ - "${FILESDIR}"/${P}-gcc34.patch - sed -i -e '1i#define OF(x) x' src/gens/util/file/unzip.h || die - append-ldflags -Wl,-z,noexecstack -} - -src_configure() { - use amd64 && multilib_toolchain_setup x86 #441876 - econf \ - --disable-gtktest \ - --disable-sdltest -} - -src_install() { - DOCS="AUTHORS BUGS README gens.txt history.txt" \ - default - newicon pixmaps/gens_small.png ${PN}.png - make_desktop_entry "${PN}" "Gens" -} diff --git a/games-emulation/gens/gens-2.15.5-r2.ebuild b/games-emulation/gens/gens-2.15.5-r2.ebuild new file mode 100644 index 000000000000..7b8c385e9b04 --- /dev/null +++ b/games-emulation/gens/gens-2.15.5-r2.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MULTILIB_COMPAT=( abi_x86_32 ) + +inherit desktop flag-o-matic multilib-build + +DESCRIPTION="A Sega Genesis/CD/32X emulator" +HOMEPAGE="https://sourceforge.net/projects/gens/" +SRC_URI="mirror://sourceforge/gens/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + media-libs/libsdl[${MULTILIB_USEDEP},joystick,video] + sys-libs/zlib[${MULTILIB_USEDEP}] + virtual/opengl[${MULTILIB_USEDEP}] + x11-libs/gtk+:2[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND}" +BDEPEND=">=dev-lang/nasm-0.98" + +PATCHES=( + "${FILESDIR}"/${P}-romsdir.patch + "${FILESDIR}"/${P}-as-needed.patch + "${FILESDIR}"/${P}-ovflfix.patch + "${FILESDIR}"/${P}-gcc34.patch + "${FILESDIR}"/${P}-fno-common.patch + "${FILESDIR}"/${P}-zlib-OF.patch +) + +src_configure() { + append-ldflags -Wl,-z,noexecstack + use amd64 && multilib_toolchain_setup x86 #441876 + + econf \ + --disable-gtktest \ + --disable-sdltest +} + +src_install() { + default + dodoc gens.txt history.txt + + newicon pixmaps/gens_small.png gens.png + make_desktop_entry "gens" "Gens" +} diff --git a/games-fps/Manifest.gz b/games-fps/Manifest.gz index 33ee4dcb1afa..9080253ea771 100644 Binary files a/games-fps/Manifest.gz and b/games-fps/Manifest.gz differ diff --git a/games-fps/doomsday/doomsday-2.1.1-r1.ebuild b/games-fps/doomsday/doomsday-2.1.1-r1.ebuild index eb08301295ed..8aa9456f5752 100644 --- a/games-fps/doomsday/doomsday-2.1.1-r1.ebuild +++ b/games-fps/doomsday/doomsday-2.1.1-r1.ebuild @@ -5,11 +5,12 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7} ) -inherit cmake python-any-r1 readme.gentoo-r1 +inherit cmake python-any-r1 qmake-utils readme.gentoo-r1 DESCRIPTION="A modern gaming engine for Doom, Heretic, and Hexen" HOMEPAGE="https://www.dengine.net" SRC_URI="https://downloads.sourceforge.net/project/deng/Doomsday%20Engine/${PV}/${P}.tar.gz" + LICENSE="GPL-3+ LGPL-3+" SLOT="0" KEYWORDS="~amd64 ~arm ~x86" @@ -31,8 +32,7 @@ RDEPEND=" tools? ( sys-libs/ncurses:0= ) " DEPEND="${RDEPEND}" -BDEPEND=" - ${PYTHON_DEPS} +BDEPEND="${PYTHON_DEPS} virtual/pkgconfig " PDEPEND=" @@ -52,11 +52,11 @@ src_prepare() { } src_configure() { - export QT_SELECT=qt5 local mycmakeargs=( -DDENG_ASSIMP_EMBEDDED="OFF" -DDENG_ENABLE_TOOLS="$(usex tools)" -DPYTHON_EXECUTABLE="${PYTHON}" + -DQMAKE=$(qt5_get_bindir)/qmake ) cmake_src_configure } diff --git a/games-roguelike/Manifest.gz b/games-roguelike/Manifest.gz index a9edafe5b2f2..e5aa7cf727fc 100644 Binary files a/games-roguelike/Manifest.gz and b/games-roguelike/Manifest.gz differ diff --git a/games-roguelike/stone-soup/files/gitless.patch b/games-roguelike/stone-soup/files/gitless.patch deleted file mode 100644 index 3aaeb7470095..000000000000 --- a/games-roguelike/stone-soup/files/gitless.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- /Makefile 2019-04-15 19:34:40.604288477 -0500 -+++ /Makefile 2019-04-15 19:36:25.249286603 -0500 -@@ -1149,9 +1149,8 @@ - - LANGUAGES = $(filter-out en, $(notdir $(wildcard dat/descript/??))) - SRC_PKG_BASE := stone_soup --SRC_VERSION := $(shell git describe --tags $(MERGE_BASE) 2>/dev/null || cat util/release_ver) -+SRC_VERSION := $(shell cat util/release_ver) - MAJOR_VERSION = $(shell echo "$(SRC_VERSION)"|sed -r 's/-.*//;s/^([^.]+\.[^.]+).*/\1/') --RECENT_TAG := $(shell git describe --abbrev=0 --tags $(MERGE_BASE)) - - export SRC_VERSION - diff --git a/games-roguelike/stone-soup/files/pyyaml-safe-load.patch b/games-roguelike/stone-soup/files/pyyaml-safe-load.patch deleted file mode 100644 index dfbcdc96e1ad..000000000000 --- a/games-roguelike/stone-soup/files/pyyaml-safe-load.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- /util/species-gen.py 2019-04-18 23:19:07.444170831 -0500 -+++ /util/species-gen.py 2019-04-18 23:20:19.958169533 -0500 -@@ -417,7 +417,7 @@ - continue - f_path = os.path.join(args.datadir, f_name) - try: -- species_spec = yaml.load(open(f_path)) -+ species_spec = yaml.safe_load(open(f_path)) - except yaml.YAMLError as e: - print("Failed to load %s: %s" % (f_name, e)) - sys.exit(1) diff --git a/games-rpg/Manifest.gz b/games-rpg/Manifest.gz index c7da0085a0b5..622fb4b8295a 100644 Binary files a/games-rpg/Manifest.gz and b/games-rpg/Manifest.gz differ diff --git a/games-rpg/daimonin-client/daimonin-client-0.10.8.ebuild b/games-rpg/daimonin-client/daimonin-client-0.10.8.ebuild index 3ee1bd720d75..4cd5b7623861 100644 --- a/games-rpg/daimonin-client/daimonin-client-0.10.8.ebuild +++ b/games-rpg/daimonin-client/daimonin-client-0.10.8.ebuild @@ -1,13 +1,14 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit autotools eutils +inherit autotools desktop DESCRIPTION="A graphical 2D tile-based MMORPG" HOMEPAGE="http://daimonin.sourceforge.net/" -SRC_URI="https://dev.gentoo.org/~soap/distfiles/${P}.zip +SRC_URI=" + https://dev.gentoo.org/~soap/distfiles/${P}.zip music? ( mirror://sourceforge/daimonin/daimoninMusicLQ20100827.zip )" LICENSE="GPL-2" @@ -22,10 +23,10 @@ RDEPEND=" media-libs/sdl-mixer[vorbis] net-misc/curl sys-libs/zlib:=" -DEPEND="${RDEPEND} - app-arch/unzip" +DEPEND="${RDEPEND}" +BDEPEND="app-arch/unzip" -S=${WORKDIR}/daimonin-code-8183-trunk/client/make/linux +S="${WORKDIR}/daimonin-code-8183-trunk/client/make/linux" src_unpack() { unpack ${P}.zip @@ -42,6 +43,7 @@ src_prepare() { pushd ../../src >/dev/null || die eapply "${FILESDIR}"/${PN}-0.10.5-datadir.patch + eapply "${FILESDIR}"/${PN}-0.10.8-fno-common.patch popd >/dev/null || die eapply_user @@ -64,6 +66,7 @@ src_install() { cd ../.. || die dodoc README* + newicon bitmaps/pentagram.png "daimonin.png" make_desktop_entry "daimonin" "Daimonin" "daimonin" "Game;Amusement" } diff --git a/games-rpg/daimonin-client/files/daimonin-client-0.10.8-fno-common.patch b/games-rpg/daimonin-client/files/daimonin-client-0.10.8-fno-common.patch new file mode 100644 index 000000000000..d4369e5f3fbe --- /dev/null +++ b/games-rpg/daimonin-client/files/daimonin-client-0.10.8-fno-common.patch @@ -0,0 +1,128 @@ +--- a/dialog.c ++++ b/dialog.c +@@ -581,7 +581,7 @@ + /****************************************************************** + draws all options for the actual page. + ******************************************************************/ +-inline void optwin_draw_options(int x, int y) ++void optwin_draw_options(int x, int y) + { + #define LEN_NAME 111 + int i = -1, pos = 0, max = 0; +--- a/include/main.h ++++ b/include/main.h +@@ -118,7 +118,7 @@ + } + _bmaptype_table; + +-_bmaptype_table bmaptype_table[BMAPTABLE]; ++extern _bmaptype_table bmaptype_table[BMAPTABLE]; + + extern int bmaptype_table_size; + +@@ -306,7 +306,7 @@ + double killhour; + } _statometer; + +-struct statometer statometer; ++extern struct statometer statometer; + + extern time_t sleeptime; + +--- a/include/map.h ++++ b/include/map.h +@@ -70,7 +70,7 @@ + } + _mapdata; + +-struct MapCell ++typedef struct MapCell + { + short faces[MAXFACES]; + short pos[MAXFACES]; +@@ -85,7 +85,7 @@ + } + MapCell; + +-struct Map ++typedef struct Map + { + struct MapCell cells[MAP_MAX_SIZE][MAP_MAX_SIZE]; + } +--- a/include/menu.h ++++ b/include/menu.h +@@ -41,15 +41,15 @@ + #define MENU_ALL (MENU_NO & MENU_KEYBIND & MENU_SPELL & MENU_STATUS & MENU_OPTION & MENU_NPC & MENU_BOOK & MENU_QUEST) + + #define MENU_SOUND_VOL 40 +-struct _skill_list skill_list[SKILL_LIST_MAX]; ++extern struct _skill_list skill_list[SKILL_LIST_MAX]; + extern _dialog_list_set skill_list_set; + +-struct _spell_list spell_list[SPELL_LIST_MAX]; /* skill list entries */ ++extern struct _spell_list spell_list[SPELL_LIST_MAX]; /* skill list entries */ + extern _dialog_list_set spell_list_set; + + extern _dialog_list_set option_list_set; + +-struct _bindkey_list bindkey_list[BINDKEY_LIST_MAX]; ++extern struct _bindkey_list bindkey_list[BINDKEY_LIST_MAX]; + extern _dialog_list_set bindkey_list_set; + + extern _dialog_list_set create_list_set; +--- a/include/wrapper.h ++++ b/include/wrapper.h +@@ -118,7 +118,7 @@ + extern int parse_metaserver_data(char *info); + + #if defined( __WIN_32) || defined(__LINUX) +- FILE *msglog; ++ extern FILE *msglog; + #endif + + #if defined(HAVE_STRNICMP) +--- a/main.c ++++ b/main.c +@@ -24,6 +24,10 @@ + #include + #include + ++_bmaptype_table bmaptype_table[BMAPTABLE]; ++ ++struct statometer statometer; ++ + Account account; /* account data of this player, received from the server */ + + _server_char *first_server_char = NULL; /* list of possible chars/race with setup when we want create a char */ +@@ -33,7 +37,7 @@ + SDL_Surface *ScreenSurfaceMap; /* THE map surface (backbuffer)*/ + SDL_Surface *zoomed = NULL; + struct sockaddr_in insock; /* Server's attributes */ +-ClientSocket csocket; ++extern ClientSocket csocket; + int SocketStatusErrorNr; /* if an socket error, this is it */ + + _login_step LoginInputStep; +--- a/menu.c ++++ b/menu.c +@@ -29,6 +29,7 @@ + + struct _spell_list spell_list[SPELL_LIST_MAX]; /* skill list entries */ + struct _skill_list skill_list[SKILL_LIST_MAX]; /* skill list entries */ ++struct _bindkey_list bindkey_list[BINDKEY_LIST_MAX]; + + struct _dialog_list_set spell_list_set; + struct _dialog_list_set skill_list_set; +--- a/wrapper.c ++++ b/wrapper.c +@@ -22,6 +22,10 @@ + */ + #include + ++#if defined( __WIN_32) || defined(__LINUX) ++ FILE *msglog; ++#endif ++ + /* This is because PHYSFS_isInit() was introduced in 2.0.0 and some linux + * distros are still stuck in 1.x.x. So in time we can dump this global and + * use PHYSFS_isInit(). But for now, it's a simple query we can reproduce diff --git a/games-sports/Manifest.gz b/games-sports/Manifest.gz index 001c0eff8a7e..27f0457b8638 100644 Binary files a/games-sports/Manifest.gz and b/games-sports/Manifest.gz differ diff --git a/games-sports/bygfoot/bygfoot-2.3.2-r1.ebuild b/games-sports/bygfoot/bygfoot-2.3.2-r1.ebuild index 9ed990aea67c..6a48c7824293 100644 --- a/games-sports/bygfoot/bygfoot-2.3.2-r1.ebuild +++ b/games-sports/bygfoot/bygfoot-2.3.2-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit eutils vcs-clean +inherit desktop vcs-clean DESCRIPTION="GTK+2 Soccer Management Game" HOMEPAGE="http://bygfoot.sourceforge.net/" @@ -12,35 +12,32 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RDEPEND=" app-arch/zip media-libs/freetype:2 x11-libs/gtk+:2 virtual/libintl" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" sys-devel/gettext virtual/pkgconfig" -src_prepare() { - default - - sed -i \ - -e 's:$(gnulocaledir):/usr/share/locale:' \ - -e '/PACKAGE_LOCALE_DIR/s:\$(prefix)/\$(DATADIRNAME):/usr/share:' \ - -e '/bygfoot_LDADD/s/$/ -lm/' \ - po/Makefile.in.in src/Makefile.in || die -} +PATCHES=( + "${FILESDIR}"/${P}-Makefile.patch + "${FILESDIR}"/${P}-fno-common.patch +) src_configure() { econf --disable-gstreamer } src_install() { - emake DESTDIR="${D}" install + default + dodoc UPDATE + esvn_clean "${D}" - dodoc AUTHORS ChangeLog README TODO UPDATE + newicon support_files/pixmaps/bygfoot_icon.png ${PN}.png make_desktop_entry ${PN} Bygfoot } diff --git a/games-sports/bygfoot/files/bygfoot-2.3.2-Makefile.patch b/games-sports/bygfoot/files/bygfoot-2.3.2-Makefile.patch new file mode 100644 index 000000000000..306428a50055 --- /dev/null +++ b/games-sports/bygfoot/files/bygfoot-2.3.2-Makefile.patch @@ -0,0 +1,57 @@ +--- a/po/Makefile.in.in ++++ b/po/Makefile.in.in +@@ -28,7 +28,7 @@ + datarootdir = @datarootdir@ + datadir = @datadir@ + libdir = @libdir@ +-localedir = $(libdir)/locale ++localedir = @localedir@ + gnulocaledir = $(datadir)/locale + gettextsrcdir = $(datadir)/glib-2.0/gettext/po + subdir = po +@@ -129,7 +129,6 @@ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + case "$$cat" in \ +- *.gmo) destdir=$(gnulocaledir);; \ + *) destdir=$(localedir);; \ + esac; \ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ +@@ -183,8 +182,6 @@ + lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \ + rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ + rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ +- rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT); \ +- rm -f $(DESTDIR)$(gnulocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE)$(INSTOBJEXT).m; \ + done + if test "$(PACKAGE)" = "glib"; then \ + rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ +--- a/src/Makefile.in ++++ b/src/Makefile.in +@@ -206,7 +206,7 @@ + AM_CFLAGS = -Wall #-fprofile-arcs -ftest-coverage -pg + INCLUDES = \ + -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ +- -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ ++ -DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \ + @PACKAGE_CFLAGS@ @GST_CFLAGS@ + + bygfoot_SOURCES = \ +@@ -289,7 +289,7 @@ + xml_team.c file.h free.h main.h misc.h option.h player.h team.h variables.h xml_team.h \ + youth_academy.c free.h maths.h name.h option.h player.h team.h user.h youth_academy.h + +-bygfoot_LDADD = @PACKAGE_LIBS@ @GST_LIBS@ $(INTLLIBS) ++bygfoot_LDADD = @PACKAGE_LIBS@ @GST_LIBS@ $(INTLLIBS) -lm + all: all-am + + .SUFFIXES: +@@ -348,7 +348,7 @@ + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) + bygfoot$(EXEEXT): $(bygfoot_OBJECTS) $(bygfoot_DEPENDENCIES) + @rm -f bygfoot$(EXEEXT) +- $(LINK) $(bygfoot_OBJECTS) $(bygfoot_LDADD) $(LIBS) ++ $(LINK) $(bygfoot_OBJECTS) $(bygfoot_LDADD) $(LIBS) -lm + + mostlyclean-compile: + -rm -f *.$(OBJEXT) diff --git a/games-sports/bygfoot/files/bygfoot-2.3.2-fno-common.patch b/games-sports/bygfoot/files/bygfoot-2.3.2-fno-common.patch new file mode 100644 index 000000000000..931b7a01f7f9 --- /dev/null +++ b/games-sports/bygfoot/files/bygfoot-2.3.2-fno-common.patch @@ -0,0 +1,496 @@ +--- a/src/main.c ++++ b/src/main.c +@@ -61,6 +61,42 @@ + #include "window.h" + #include "xml_strategy.h" + ++// Global vars (-fno-common) ++Country country; ++GArray *users; ++gint season, week, week_round; ++OptionList options; ++OptionList constants; ++OptionList constants_app; ++OptionList settings; ++OptionList tokens; ++GArray *lg_commentary[LIVE_GAME_EVENT_END]; ++GArray *news[NEWS_ARTICLE_TYPE_END]; ++NewsPaper newspaper; ++GArray *transfer_list; ++GArray *season_stats; ++GArray *strategies; ++GArray *bets[2]; ++gfloat current_interest; ++GArray *jobs, *job_teams; ++gint counters[COUNT_END]; ++gint status[6]; ++gpointer statp; ++gint selected_row; ++GArray *name_lists; ++Windows window; ++GArray *live_games; ++gint cur_user; ++gint timeout_id; ++GRand *rand_generator; ++gint debug_level, debug_output; ++GList *support_directories; ++GList *root_definitions_directories; ++GList *definitions_directories; ++gchar *save_file; ++gboolean os_is_unix; ++OptionList hints; ++ + #define DEBUG_LEVEL_DEFAULT 0 + + #if defined(MAC_BUILD) || defined(G_OS_WIN32) +--- a/src/variables.h ++++ b/src/variables.h +@@ -33,89 +33,89 @@ + * The main variable of the game. + * @see Country + */ +-Country country; ++extern Country country; + + /** The array of human players. @see #User */ +-GArray *users; ++extern GArray *users; + + /** The season, week and week round numbers. + We keep track of the time in the game with these variables. */ +-gint season, week, week_round; ++extern gint season, week, week_round; + + /** Array of options that get read from + bygfoot.conf. */ +-OptionList options; ++extern OptionList options; + /** Array of constants that get read from the constants + file specified in bygfoot.conf. */ +-OptionList constants; ++extern OptionList constants; + /** Array of constants affecting game appearance rather than + behaviour. */ +-OptionList constants_app; ++extern OptionList constants_app; + /** Array with internal settings. */ +-OptionList settings; ++extern OptionList settings; + /* Array holding string replacement tokens. */ +-OptionList tokens; ++extern OptionList tokens; + + /** The array containing the live game commentary strings. */ +-GArray *lg_commentary[LIVE_GAME_EVENT_END]; ++extern GArray *lg_commentary[LIVE_GAME_EVENT_END]; + + /** The array containing the news article strings. */ +-GArray *news[NEWS_ARTICLE_TYPE_END]; ++extern GArray *news[NEWS_ARTICLE_TYPE_END]; + + /** Newspaper containing the news articles. */ +-NewsPaper newspaper; ++extern NewsPaper newspaper; + + /** The array containing players to be transfered. + @see TransferPlayer */ +-GArray *transfer_list; ++extern GArray *transfer_list; + + /** Array with season statistics (updated at the + end of each season. */ +-GArray *season_stats; ++extern GArray *season_stats; + + /** Array of available CPU strategies. */ +-GArray *strategies; ++extern GArray *strategies; + + /** Array of current and recent bets. */ +-GArray *bets[2]; ++extern GArray *bets[2]; + + /** Loan interest for the current week. */ +-gfloat current_interest; ++extern gfloat current_interest; + + /** Array of jobs in the job exchange and + teams going with the international jobs. */ +-GArray *jobs, *job_teams; ++extern GArray *jobs, *job_teams; + + /** Some counters we use. */ +-gint counters[COUNT_END]; ++extern gint counters[COUNT_END]; + + /** These help us keep track of what's happening. */ +-gint status[6]; ++extern gint status[6]; + + /** A pointer we store temporary stuff in. */ +-gpointer statp; ++extern gpointer statp; + + /** The currently selected row in the treeview. */ +-gint selected_row; ++extern gint selected_row; + + /** An array of name lists. */ +-GArray *name_lists; ++extern GArray *name_lists; + + /** The struct containing the window pointers. */ +-Windows window; ++extern Windows window; + + /** The variables for non-user live games (which aren't shown). */ +-GArray *live_games; ++extern GArray *live_games; + + /** The index of the current user in the #users array. */ +-gint cur_user; ++extern gint cur_user; + +-gint timeout_id; ++extern gint timeout_id; + +-GRand *rand_generator; ++extern GRand *rand_generator; + + /** Debug information. */ +-gint debug_level, debug_output; ++extern gint debug_level, debug_output; + + /** + The list of directories the file_find_support_file() function +@@ -123,24 +123,24 @@ + @see file_find_support_file() + @see file_add_support_directory_recursive() + */ +-GList *support_directories; ++extern GList *support_directories; + + /** + * The list of root defintions directories found (ending in definitions) + */ +-GList *root_definitions_directories; ++extern GList *root_definitions_directories; + + /** + * The list of defintions directories found + */ +-GList *definitions_directories; ++extern GList *definitions_directories; + + /** The name of the current save file (gets updated when a game is + saved or loaded). */ +-gchar *save_file; ++extern gchar *save_file; + + /** Whether we are using a Unix system or Windows. */ +-gboolean os_is_unix; ++extern gboolean os_is_unix; + + /** The hints displayed in the splash screen. */ +-OptionList hints; ++extern OptionList hints; +--- a/src/xml_country.c ++++ b/src/xml_country.c +@@ -65,7 +65,7 @@ + /** + * The state variable used in the XML parsing functions. + */ +-gint state; ++extern gint state; + Country *cntry; + + /** +--- a/src/xml_cup.c ++++ b/src/xml_cup.c +@@ -129,7 +129,7 @@ + /** + * The state variable used in the XML parsing functions. + */ +-gint state; ++extern gint state; + + /** The variable we will fill and append to an array. */ + Cup new_cup; +--- a/src/xml_league.c ++++ b/src/xml_league.c +@@ -123,7 +123,7 @@ + /** + * The state variable used in the XML parsing functions. + */ +-gint state; ++extern gint state; + + /** The new league we create and append to an array. */ + League new_league; +--- a/src/xml_lg_commentary.c ++++ b/src/xml_lg_commentary.c +@@ -80,7 +80,8 @@ + STATE_END + }; + +-gint state, commentary_idx, priority; ++extern gint state; ++gint commentary_idx, priority; + gchar *condition; + + /** Return the appropriate enum integer going with the event string. */ +--- a/src/xml_loadsave_cup.c ++++ b/src/xml_loadsave_cup.c +@@ -80,13 +80,13 @@ + TAG_END + }; + +-gint state; +-Cup *new_cup; +-CupChooseTeam new_choose_team; +-CupRound new_round; +-gchar *dirname; +-WeekBreak new_week_break; +-CupRoundWait new_wait; ++extern gint state; ++extern Cup *new_cup; ++extern CupChooseTeam new_choose_team; ++extern CupRound new_round; ++extern gchar *dirname; ++extern WeekBreak new_week_break; ++extern CupRoundWait new_wait; + + void + xml_loadsave_cup_start_element (GMarkupParseContext *context, +--- a/src/xml_loadsave_fixtures.c ++++ b/src/xml_loadsave_fixtures.c +@@ -47,7 +47,8 @@ + TAG_END + }; + +-gint state, residx1, residx2, teamidx, nameidx; ++extern gint state; ++gint residx1, residx2, teamidx, nameidx; + Fixture new_fixture; + GArray *fixtures_array; + +--- a/src/xml_loadsave_jobs.c ++++ b/src/xml_loadsave_jobs.c +@@ -48,7 +48,7 @@ + TAG_END + }; + +-gint state; ++extern gint state; + Job new_job; + + void +--- a/src/xml_loadsave_league.c ++++ b/src/xml_loadsave_league.c +@@ -67,12 +67,13 @@ + TAG_END + }; + +-gint promrankidx, state; ++gint promrankidx; ++extern gint state; + PromRelElement new_element; + PromGames new_prom_games; +-WeekBreak new_week_break; +-League *new_league; +-gchar *dirname; ++extern WeekBreak new_week_break; ++extern League *new_league; ++extern gchar *dirname; + + void + xml_loadsave_league_start_element (GMarkupParseContext *context, +--- a/src/xml_loadsave_leagues_cups.c ++++ b/src/xml_loadsave_leagues_cups.c +@@ -44,7 +44,7 @@ + TAG_END + }; + +-gint state; ++extern gint state; + const gchar *dir; + + void +--- a/src/xml_loadsave_league_stat.c ++++ b/src/xml_loadsave_league_stat.c +@@ -46,7 +46,8 @@ + TAG_END + }; + +-gint state, in_state, valueidx; ++extern gint state; ++gint in_state, valueidx; + Stat new_stat; + LeagueStat *lig_stat; + +--- a/src/xml_loadsave_live_game.c ++++ b/src/xml_loadsave_live_game.c +@@ -63,7 +63,8 @@ + TAG_END + }; + +-gint state, unitidx, ++extern gint state; ++gint unitidx, + statvalidx, statvalidx2, statplidx, statplidx2, + team_name_idx; + LiveGameUnit new_unit; +--- a/src/xml_loadsave_misc.c ++++ b/src/xml_loadsave_misc.c +@@ -53,8 +53,9 @@ + TAG_END + }; + +-gint state, countidx, oddidx, betidx; +-BetMatch new_bet; ++extern gint state; ++gint countidx, oddidx, betidx; ++extern BetMatch new_bet; + + void + xml_loadsave_misc_start_element (GMarkupParseContext *context, +--- a/src/xml_loadsave_newspaper.c ++++ b/src/xml_loadsave_newspaper.c +@@ -49,8 +49,8 @@ + TAG_END + }; + +-gint state; +-NewsPaperArticle new_article; ++extern gint state; ++extern NewsPaperArticle new_article; + + void + xml_loadsave_newspaper_start_element (GMarkupParseContext *context, +--- a/src/xml_loadsave_players.c ++++ b/src/xml_loadsave_players.c +@@ -69,8 +69,9 @@ + TAG_END + }; + +-gint state, etalidx, careeridx; +-Player new_player; ++extern gint state; ++gint etalidx, careeridx; ++extern Player new_player; + PlayerGamesGoals new_games_goals; + PlayerCard new_card; + +--- a/src/xml_loadsave_season_stats.c ++++ b/src/xml_loadsave_season_stats.c +@@ -46,7 +46,7 @@ + TAG_END + }; + +-gint state, in_state; ++extern gint state, in_state; + ChampStat new_champ_stat; + SeasonStat new_season_stat; + const gchar *dirname2; +--- a/src/xml_loadsave_table.c ++++ b/src/xml_loadsave_table.c +@@ -38,8 +38,8 @@ + TAG_END + }; + +-gint state, valueidx; +-TableElement new_element; ++extern gint state, valueidx; ++extern TableElement new_element; + Table *new_table; + + void +--- a/src/xml_loadsave_teams.c ++++ b/src/xml_loadsave_teams.c +@@ -53,12 +53,9 @@ + TAG_END + }; + +-gint state, etalidx, careeridx; ++extern gint state; + GArray *teams_array; + Team new_team; +-Player new_player; +-PlayerGamesGoals new_games_goals; +-PlayerCard new_card; + + void + xml_loadsave_teams_start_element (GMarkupParseContext *context, +--- a/src/xml_loadsave_transfers.c ++++ b/src/xml_loadsave_transfers.c +@@ -46,7 +46,8 @@ + TAG_END + }; + +-gint state, feeidx, wageidx; ++extern gint state; ++gint feeidx, wageidx; + Transfer new_transfer; + TransferOffer new_offer; + +--- a/src/xml_loadsave_users.c ++++ b/src/xml_loadsave_users.c +@@ -79,7 +79,8 @@ + TAG_END + }; + +-gint state, idx_mon_in, idx_mon_out, idx, ++extern gint state; ++gint idx_mon_in, idx_mon_out, idx, + idx_bet, idx_cnt; + User new_user; + UserHistory new_history; +--- a/src/xml_mmatches.c ++++ b/src/xml_mmatches.c +@@ -47,7 +47,7 @@ + /** + * The state variable used in the XML parsing functions. + */ +-gint state; ++extern gint state; + MemMatch new_match; + gchar *dirname; + GArray *mm_array; +--- a/src/xml_news.c ++++ b/src/xml_news.c +@@ -59,8 +59,9 @@ + STATE_END + }; + +-gint state, article_idx, priority; +-gchar *condition; ++extern gint state, priority; ++gint article_idx; ++extern gchar *condition; + NewsArticle new_article; + NewsText new_title, new_subtitle; + +--- a/src/xml_strategy.c ++++ b/src/xml_strategy.c +@@ -91,7 +91,8 @@ + STATE_STRATEGY_MATCH_ACTION_SUB_OUT_POS, + }; + +-gint state, action_id; ++extern gint state; ++gint action_id; + + #define curstrat g_array_index(strategies, Strategy, strategies->len - 1) + #define curprematch g_array_index(curstrat.prematch, StrategyPrematch, curstrat.prematch->len - 1) +--- a/src/xml_team.c ++++ b/src/xml_team.c +@@ -70,7 +70,8 @@ + STATE_END + }; + +-gint state, birth_year; ++extern gint state; ++gint birth_year; + Player new_player; + Team *team; + const gchar *d_file; diff --git a/games-strategy/Manifest.gz b/games-strategy/Manifest.gz index 350a2b1fcbed..dbcf0ac70139 100644 Binary files a/games-strategy/Manifest.gz and b/games-strategy/Manifest.gz differ diff --git a/games-strategy/freeciv/freeciv-2.6.2.ebuild b/games-strategy/freeciv/freeciv-2.6.2.ebuild index 2b5d791692c3..1b61b770630f 100644 --- a/games-strategy/freeciv/freeciv-2.6.2.ebuild +++ b/games-strategy/freeciv/freeciv-2.6.2.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="http://www.freeciv.org/" if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then SRC_URI="mirror://sourceforge/freeciv/${MY_P}.tar.bz2" - KEYWORDS="~amd64 ~x86" + KEYWORDS="~amd64 ~ppc64 ~x86" fi LICENSE="GPL-2+" diff --git a/games-util/Manifest.gz b/games-util/Manifest.gz index f412aaa6e81a..ed972ae1cc89 100644 Binary files a/games-util/Manifest.gz and b/games-util/Manifest.gz differ diff --git a/games-util/etswitch/etswitch-0.1.14-r1.ebuild b/games-util/etswitch/etswitch-0.1.14-r1.ebuild index da46e7ba4978..61b5ce230018 100644 --- a/games-util/etswitch/etswitch-0.1.14-r1.ebuild +++ b/games-util/etswitch/etswitch-0.1.14-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DESCRIPTION="*nix minimizer for a few games" HOMEPAGE="http://hem.bredband.net/b400150/" @@ -10,9 +10,9 @@ SRC_URI="http://hem.bredband.net/b400150/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -RDEPEND="x11-libs/libX11 +RDEPEND=" + x11-libs/libX11 x11-libs/libXxf86vm x11-libs/libXmu x11-libs/libXpm" @@ -21,10 +21,7 @@ DEPEND="${RDEPEND} x11-base/xorg-proto" PATCHES=( - "${FILESDIR}"/${P}-desktop-entry.patch - "${FILESDIR}"/${P}-glibc.patch + "${FILESDIR}"/${P}-desktop-entry.patch + "${FILESDIR}"/${P}-glibc.patch + "${FILESDIR}"/${P}-fno-common.patch ) - -src_configure() { - econf --datadir=/usr/share -} diff --git a/games-util/etswitch/files/etswitch-0.1.14-fno-common.patch b/games-util/etswitch/files/etswitch-0.1.14-fno-common.patch new file mode 100644 index 000000000000..f0bdebcb6a76 --- /dev/null +++ b/games-util/etswitch/files/etswitch-0.1.14-fno-common.patch @@ -0,0 +1,22 @@ +--- a/src/read_wid.c ++++ b/src/read_wid.c +@@ -62,6 +62,8 @@ + #include + extern int errno; + ++wid_info_struct *wid; ++ + /* + will try and read the wid file and malloc the game struct + if wid file is missing it will read the internal one +--- a/src/read_wid.h ++++ b/src/read_wid.h +@@ -38,7 +38,7 @@ + char *first_struct; + } wid_info_struct; + +-wid_info_struct *wid; /* global wid array */ ++extern wid_info_struct *wid; /* global wid array */ + + + diff --git a/games-util/fteqcc/files/fteqcc-2501-Makefile.patch b/games-util/fteqcc/files/fteqcc-2501-Makefile.patch new file mode 100644 index 000000000000..cc70e9be4d8b --- /dev/null +++ b/games-util/fteqcc/files/fteqcc-2501-Makefile.patch @@ -0,0 +1,61 @@ +--- a/Makefile ++++ b/Makefile +@@ -1,51 +1,19 @@ + QCC_OBJS=qccmain.o qcc_cmdlib.o qcc_pr_comp.o qcc_pr_lex.o comprout.o hash.o qcd_main.o + GTKGUI_OBJS=qcc_gtk.o qccguistuff.c + +-CC=gcc -Wall -DQCCONLY +- +-DO_CC=$(CC) $(BASE_CFLAGS) -o $@ -c $< $(CFLAGS) +- + all: qcc + +-BASE_CFLAGS=-ggdb +-CFLAGS = +- ++CFLAGS += -Wall ++CPPFLAGS += -DQCCONLY + + win_nocyg: $(QCC_OBJS) qccgui.c qccguistuff.c +- $(CC) $(BASE_CFLAGS) -o fteqcc.exe -O3 -s $(QCC_OBJS) -mno-cygwin -mwindows ++ $(CC) $(BASE_CFLAGS) -o fteqcc.exe $(QCC_OBJS) -mno-cygwin -mwindows + nocyg: $(QCC_OBJS) qccgui.c qccguistuff.c +- $(CC) $(BASE_CFLAGS) -o fteqcc.exe -O3 -s $(QCC_OBJS) -mno-cygwin ++ $(CC) $(BASE_CFLAGS) -o fteqcc.exe $(QCC_OBJS) -mno-cygwin + win: $(QCC_OBJS) qccgui.c qccguistuff.c +- $(CC) $(BASE_CFLAGS) -o fteqcc.exe -O3 -s $(QCC_OBJS) -mwindows ++ $(CC) $(BASE_CFLAGS) -o fteqcc.exe $(QCC_OBJS) -mwindows + qcc: $(QCC_OBJS) +- $(CC) $(BASE_CFLAGS) -o fteqcc.bin -O3 -s $(QCC_OBJS) +- +-qccmain.o: qccmain.c qcc.h +- $(DO_CC) +- +-qcc_cmdlib.o: qcc_cmdlib.c qcc.h +- $(DO_CC) +- +-qcc_pr_comp.o: qcc_pr_comp.c qcc.h +- $(DO_CC) +- +-qcc_pr_lex.o: qcc_pr_lex.c qcc.h +- $(DO_CC) +- +-comprout.o: comprout.c qcc.h +- $(DO_CC) +- +-hash.o: hash.c qcc.h +- $(DO_CC) +- +-qcd_main.o: qcd_main.c qcc.h +- $(DO_CC) +- +-qccguistuff.o: qccguistuff.c qcc.h +- $(DO_CC) +- +-qcc_gtk.o: qcc_gtk.c qcc.h +- $(DO_CC) `pkg-config --cflags gtk+-2.0` ++ $(CC) $(BASE_CFLAGS) $(LDFLAGS) -o fteqcc.bin $(QCC_OBJS) + + gtkgui: $(QCC_OBJS) $(GTKGUI_OBJS) +- $(CC) $(BASE_CFLAGS) -DQCCONLY -DUSEGUI -o fteqccgui.bin -O3 $(GTKGUI_OBJS) $(QCC_OBJS) `pkg-config --libs gtk+-2.0` ++ $(CC) $(CFLAGS) $(LDFLAGS) -DUSEGUI -o fteqccgui.bin $(GTKGUI_OBJS) $(QCC_OBJS) $(GTK_LIBS) diff --git a/games-util/fteqcc/files/fteqcc-2501-cleanup-source.patch b/games-util/fteqcc/files/fteqcc-2501-cleanup-source.patch index 35f3dcf100ae..be8cccb074b2 100644 --- a/games-util/fteqcc/files/fteqcc-2501-cleanup-source.patch +++ b/games-util/fteqcc/files/fteqcc-2501-cleanup-source.patch @@ -1,43 +1,5 @@ ---- qcc_pr_comp.c -+++ qcc_pr_comp.c -@@ -7322,7 +7322,7 @@ - QCC_def_t *def, *d; - QCC_function_t *f; - QCC_dfunction_t *df; -- int i; -+ int i = 0; - pbool shared=false; - pbool externfnc=false; - pbool isconstant = false; -@@ -8541,8 +8545,6 @@ - struct qcc_includechunk_s *oldcurrentchunk; - extern struct qcc_includechunk_s *currentchunk; - -- extern char qccmsourcedir[]; -- - ocompilingfile = compilingfile; - os_file = s_file; - os_file2 = s_file2; ---- hash.h -+++ hash.h -@@ -19,12 +19,12 @@ - int Hash_Key(char *name, int modulus); - void *Hash_Get(hashtable_t *table, char *name); - void *Hash_GetInsensative(hashtable_t *table, char *name); --void *Hash_GetKey(hashtable_t *table, int key); -+void *Hash_GetKey(hashtable_t *table, long key); - void *Hash_GetNext(hashtable_t *table, char *name, void *old); - void *Hash_GetNextInsensative(hashtable_t *table, char *name, void *old); - void *Hash_Add(hashtable_t *table, char *name, void *data, bucket_t *buck); - void *Hash_AddInsensative(hashtable_t *table, char *name, void *data, bucket_t *buck); - void Hash_Remove(hashtable_t *table, char *name); - void Hash_RemoveData(hashtable_t *table, char *name, void *data); --void Hash_RemoveKey(hashtable_t *table, int key); --void *Hash_AddKey(hashtable_t *table, int key, void *data, bucket_t *buck); -+void Hash_RemoveKey(hashtable_t *table, long key); -+void *Hash_AddKey(hashtable_t *table, long key, void *data, bucket_t *buck); ---- hash.c -+++ hash.c +--- a/hash.c ++++ b/hash.c @@ -68,7 +68,7 @@ } return NULL; @@ -91,3 +53,166 @@ { buck->next = buck->next->next; return; +--- a/hash.h ++++ b/hash.h +@@ -19,12 +19,12 @@ + int Hash_Key(char *name, int modulus); + void *Hash_Get(hashtable_t *table, char *name); + void *Hash_GetInsensative(hashtable_t *table, char *name); +-void *Hash_GetKey(hashtable_t *table, int key); ++void *Hash_GetKey(hashtable_t *table, long key); + void *Hash_GetNext(hashtable_t *table, char *name, void *old); + void *Hash_GetNextInsensative(hashtable_t *table, char *name, void *old); + void *Hash_Add(hashtable_t *table, char *name, void *data, bucket_t *buck); + void *Hash_AddInsensative(hashtable_t *table, char *name, void *data, bucket_t *buck); + void Hash_Remove(hashtable_t *table, char *name); + void Hash_RemoveData(hashtable_t *table, char *name, void *data); +-void Hash_RemoveKey(hashtable_t *table, int key); +-void *Hash_AddKey(hashtable_t *table, int key, void *data, bucket_t *buck); ++void Hash_RemoveKey(hashtable_t *table, long key); ++void *Hash_AddKey(hashtable_t *table, long key, void *data, bucket_t *buck); +--- a/qcc.h ++++ b/qcc.h +@@ -286,7 +286,7 @@ + #endif + + #ifdef WRITEASM +-FILE *asmfile; ++extern FILE *asmfile; + #endif + //============================================================================= + +@@ -830,23 +830,23 @@ + + typedef char PATHSTRING[MAX_DATA_PATH]; + +-PATHSTRING *precache_sounds; +-int *precache_sounds_block; +-int *precache_sounds_used; +-int numsounds; +- +-PATHSTRING *precache_textures; +-int *precache_textures_block; +-int numtextures; +- +-PATHSTRING *precache_models; +-int *precache_models_block; +-int *precache_models_used; +-int nummodels; +- +-PATHSTRING *precache_files; +-int *precache_files_block; +-int numfiles; ++extern PATHSTRING *precache_sounds; ++extern int *precache_sounds_block; ++extern int *precache_sounds_used; ++extern int numsounds; ++ ++extern PATHSTRING *precache_textures; ++extern int *precache_textures_block; ++extern int numtextures; ++ ++extern PATHSTRING *precache_models; ++extern int *precache_models_block; ++extern int *precache_models_used; ++extern int nummodels; ++ ++extern PATHSTRING *precache_files; ++extern int *precache_files_block; ++extern int numfiles; + + int QCC_CopyString (char *str); + +--- a/qccmain.c ++++ b/qccmain.c +@@ -2,6 +2,14 @@ + + #define PROGSUSED + #include "qcc.h" ++ ++#ifdef WRITEASM ++FILE *asmfile; ++#endif ++ ++int *precache_sounds_used; ++int *precache_models_used; ++ + int mkdir(const char *path); + + char QCC_copyright[1024]; +@@ -22,7 +30,7 @@ + void *FS_ReadToMem(char *fname, void *membuf, int *len); + void FS_CloseFromMem(void *mem); + +-struct qcc_includechunk_s *currentchunk; ++extern struct qcc_includechunk_s *currentchunk; + + unsigned int MAX_REGS; + +@@ -84,8 +92,8 @@ + hashtable_t compconstantstable; + hashtable_t globalstable; + hashtable_t localstable; +-hashtable_t floatconstdefstable; +-hashtable_t stringconstdefstable; ++extern hashtable_t floatconstdefstable; ++extern hashtable_t stringconstdefstable; + + pbool qccwarningdisabled[WARN_MAX]; + +@@ -1627,7 +1635,7 @@ + + #define PROGDEFS_MAX_SIZE 16384 + //write (to file buf) and add to the crc +-void inline Add(char *p, unsigned short *crc, char *file) ++void Add(char *p, unsigned short *crc, char *file) + { + char *s; + int i = strlen(file); +@@ -1643,7 +1651,7 @@ + #define ADD(p) Add(p, &crc, file) + //#define ADD(p) {char *s;int i = strlen(p);for(s=p;*s;s++,i++){QCC_CRC_ProcessByte(&crc, *s);file[i] = *s;}file[i]='\0';} + +-void inline Add3(char *p, unsigned short *crc, char *file) ++void Add3(char *p, unsigned short *crc, char *file) + { + char *s; + for(s=p;*s;s++) +@@ -3283,7 +3291,7 @@ + + + #ifdef QCCONLY +-progfuncs_t *progfuncs; ++extern progfuncs_t *progfuncs; + + /* + ============== +--- a/qcc_pr_comp.c ++++ b/qcc_pr_comp.c +@@ -733,7 +733,7 @@ + ============ + */ + QCC_def_t *QCC_PR_Statement ( QCC_opcode_t *op, QCC_def_t *var_a, QCC_def_t *var_b, QCC_dstatement_t **outstatement); +-int inline QCC_ShouldConvert(QCC_def_t *var, etype_t wanted) ++int QCC_ShouldConvert(QCC_def_t *var, etype_t wanted) + { + if (var->type->type == ev_integer && wanted == ev_function) + return 0; +@@ -7322,7 +7322,7 @@ + QCC_def_t *def, *d; + QCC_function_t *f; + QCC_dfunction_t *df; +- int i; ++ int i = 0; + pbool shared=false; + pbool externfnc=false; + pbool isconstant = false; +@@ -8541,8 +8541,6 @@ + struct qcc_includechunk_s *oldcurrentchunk; + extern struct qcc_includechunk_s *currentchunk; + +- extern char qccmsourcedir[]; +- + ocompilingfile = compilingfile; + os_file = s_file; + os_file2 = s_file2; diff --git a/games-util/fteqcc/fteqcc-2501.ebuild b/games-util/fteqcc/fteqcc-2501.ebuild index c03aa1ac4ee1..3791f964ea75 100644 --- a/games-util/fteqcc/fteqcc-2501.ebuild +++ b/games-util/fteqcc/fteqcc-2501.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit eutils flag-o-matic +EAPI=7 + +inherit edos2unix toolchain-funcs DESCRIPTION="QC compiler" HOMEPAGE="http://fteqw.sourceforge.net/" @@ -11,28 +12,24 @@ SRC_URI="mirror://sourceforge/fteqw/qclibsrc${PV}.zip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" RESTRICT="test" -DEPEND="app-arch/unzip" -RDEPEND="" +BDEPEND="app-arch/unzip" + +S="${WORKDIR}" -S=${WORKDIR} +PATCHES=( + "${FILESDIR}"/${P}-cleanup-source.patch + "${FILESDIR}"/${P}-Makefile.patch +) src_prepare() { - epatch "${FILESDIR}"/${P}-cleanup-source.patch - sed -i \ - -e '/^CC/d' \ - -e "s: -O3 : :g" \ - -e "s: -s : :g" \ - -e 's/-o fteqcc.bin/$(LDFLAGS) -o fteqcc.bin/' \ - Makefile || die "sed failed" + default edos2unix readme.txt - append-flags -DQCCONLY } -src_compile() { - emake BASE_CFLAGS="${CFLAGS} -Wall" +src_configure() { + tc-export CC } src_install() { diff --git a/games-util/game-device-udev-rules/Manifest b/games-util/game-device-udev-rules/Manifest index bb0a4866ef7c..0ee19b7cf455 100644 --- a/games-util/game-device-udev-rules/Manifest +++ b/games-util/game-device-udev-rules/Manifest @@ -1 +1 @@ -DIST steam-devices-46bd9ae69542577c0db44a4bd664585c03eaad9d.tar.gz 2104 BLAKE2B 82a62fbe12ed7474234376d2fc66b99985b828954a1c861db1ba03cb2d10344bdfc2c0c3755278b2a4e0086f5b4ddef211412316d1c7fc68beaffd42f9ace3d2 SHA512 55db08aa8f48d21b67ce7850b80629fd70761104b04e260188ff7e6c7267827e2756b7feed937a647711342616649fe638efe9f8b3a6f898a5c8dd557683d76f +DIST steam-devices-442b412ae2c1e20d6aa09f04f0245f9281788a71.tar.gz 2132 BLAKE2B ee8b22d5d29886f4dff126af6f54487212b8758afe4fc4b080ccccccbbc7d7893cee05612386f72cccd7050d415fc07b5fb8c9e4ca19b115304970c4934d1df7 SHA512 efc5359aa9b2015092df1c06079790739d11c955478aa91fc08d077ad51df9cc1be5ec6bc8596a68501fc987ba1993d66af2482a444df42f62b88142d50e660c diff --git a/games-util/game-device-udev-rules/files/60-game-input-20201025.rules b/games-util/game-device-udev-rules/files/60-game-input-20201121.rules similarity index 100% rename from games-util/game-device-udev-rules/files/60-game-input-20201025.rules rename to games-util/game-device-udev-rules/files/60-game-input-20201121.rules diff --git a/games-util/game-device-udev-rules/game-device-udev-rules-20201025.ebuild b/games-util/game-device-udev-rules/game-device-udev-rules-20201121.ebuild similarity index 97% rename from games-util/game-device-udev-rules/game-device-udev-rules-20201025.ebuild rename to games-util/game-device-udev-rules/game-device-udev-rules-20201121.ebuild index 79f0a6401254..4b228d828ccf 100644 --- a/games-util/game-device-udev-rules/game-device-udev-rules-20201025.ebuild +++ b/games-util/game-device-udev-rules/game-device-udev-rules-20201121.ebuild @@ -9,7 +9,7 @@ inherit udev # also has its own rules and more may be added later so we version it # independently. -STEAM_COMMIT="46bd9ae69542577c0db44a4bd664585c03eaad9d" +STEAM_COMMIT="442b412ae2c1e20d6aa09f04f0245f9281788a71" MY_P="steam-devices-${STEAM_COMMIT}" DESCRIPTION="udev rules for various game hardware devices" diff --git a/games-util/xqf/files/xqf-1.0.6.2-fno-common.patch b/games-util/xqf/files/xqf-1.0.6.2-fno-common.patch new file mode 100644 index 000000000000..15147ac6d917 --- /dev/null +++ b/games-util/xqf/files/xqf-1.0.6.2-fno-common.patch @@ -0,0 +1,21 @@ +--- a/src/filter.c ++++ b/src/filter.c +@@ -88,6 +88,8 @@ + const char* filter_quick_get(void); + void filter_quick_unset (void); + ++unsigned int current_server_filter; ++ + /* /QUICK FILTER */ + + struct filter filters[FILTERS_TOTAL] = { +--- a/src/filter.h ++++ b/src/filter.h +@@ -89,7 +89,6 @@ + + extern GArray* server_filters; + +-unsigned int current_server_filter; + extern unsigned int current_server_filter; + + diff --git a/games-util/xqf/files/xqf-1.0.6.2-underlink.patch b/games-util/xqf/files/xqf-1.0.6.2-underlink.patch index fe93c7624675..0e3ba3ed22e4 100644 --- a/games-util/xqf/files/xqf-1.0.6.2-underlink.patch +++ b/games-util/xqf/files/xqf-1.0.6.2-underlink.patch @@ -1,5 +1,25 @@ ---- xqf-xqf-1.0.6.2/src/Makefile.am -+++ xqf-xqf-1.0.6.2/src/Makefile.am +--- a/configure.in ++++ b/configure.in +@@ -23,6 +23,7 @@ + AC_ISC_POSIX + AC_PROG_LN_S + AC_PROG_RANLIB ++AM_PROG_AR + + dnl Checks for header files. + AC_HEADER_STDC +--- a/po/POTFILES.in ++++ b/po/POTFILES.in +@@ -21,6 +21,7 @@ + #src/rc.c + src/rcon.c + src/redial.c ++src/scripts.c + #src/server.c + #src/skin.c + #src/skin_pcx.c +--- a/src/Makefile.am ++++ b/src/Makefile.am @@ -41,6 +41,7 @@ $(GEOIP_LIB) \ $(PACKAGE_LIBS) \ diff --git a/games-util/xqf/xqf-1.0.6.2.ebuild b/games-util/xqf/xqf-1.0.6.2.ebuild index 5ea89476375a..9c9510182f86 100644 --- a/games-util/xqf/xqf-1.0.6.2.ebuild +++ b/games-util/xqf/xqf-1.0.6.2.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit autotools eutils +EAPI=7 + +inherit autotools DESCRIPTION="A server browser for many FPS games (frontend for qstat)" HOMEPAGE="http://xqf.github.io/en/" @@ -13,26 +14,28 @@ SLOT="0" KEYWORDS="~amd64 ~hppa ~x86" IUSE="bzip2 geoip nls" -RDEPEND="x11-libs/gtk+:2 +RDEPEND=" + x11-libs/gdk-pixbuf-xlib + x11-libs/gtk+:2 >=games-util/qstat-2.11 nls? ( virtual/libintl ) geoip? ( dev-libs/geoip ) bzip2? ( app-arch/bzip2 )" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig nls? ( sys-devel/gettext )" -S=${WORKDIR}/${PN}-${P} +S="${WORKDIR}/${PN}-${P}" -# bug #288853 -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-underlink.patch \ - "${FILESDIR}"/${P}-zlib-1.2.5.1-compile-fix.patch - sed -i \ - -e '/Icon/s/.png//' \ - xqf.desktop.in || die +PATCHES=( + "${FILESDIR}"/${P}-underlink.patch + "${FILESDIR}"/${P}-zlib-1.2.5.1-compile-fix.patch + "${FILESDIR}"/${P}-fno-common.patch +) +src_prepare() { + default mv configure.{in,ac} || die eautoreconf } diff --git a/gnome-base/Manifest.gz b/gnome-base/Manifest.gz index a8c7eae1e4db..fc608297bfb6 100644 Binary files a/gnome-base/Manifest.gz and b/gnome-base/Manifest.gz differ diff --git a/gnome-base/gnome-shell/Manifest b/gnome-base/gnome-shell/Manifest index 42105165f437..a6ac4f86d5df 100644 --- a/gnome-base/gnome-shell/Manifest +++ b/gnome-base/gnome-shell/Manifest @@ -1,5 +1,3 @@ -DIST gnome-shell-3.36.5-patchset.tar.xz 5296 BLAKE2B 6b353bd7714e2439590b74d25c964f06c8792337b22504b17cf37f4113bb0712d642fa1ab4fab9e1944544b3c57d6624c1758c97ef3b2f2a5ba2596305d4831e SHA512 669f8c2d5fe73c8f99f60ec38ac4b4fbf43e2d3667c1710f4f6179d77848f3f9d4245e22c128f41c1e594b44ba317b2430edbefa67c6886054d39726cdddd165 -DIST gnome-shell-3.36.5.tar.xz 1776080 BLAKE2B 82a53777a9fa56c3bd1c6914c1aefe85256d3cd640e95c9804b37c711360e09e758f536e9caee79c88d1686ffb3bc672f215cc454237922942edcec93f6bafd3 SHA512 e8cbcd9ee9643083870415fa3ea8ed0f1b6f2a138054f92e23479514c57b22afc38e3e082a89051f2be4e91e2dea3a68951a06eb0589f507825da9137d92e545 DIST gnome-shell-3.36.7-patchset.tar.xz 6364 BLAKE2B 80a2e2a03e4cc3b15db6af872a2330c0921a63bcd03db78a970190fee93c982296b381d08ac4bd1cb5dbe5b14d9732e447445f5dcc06d607826a9026395f10bb SHA512 6f9145fd00117e6b4170e7457c83a8c3bbbbfc6086ce3bcd07813b5a4f05e58f42e889cc90799d6988af05fce9791a792e4d8d60ffe58818563c852f9923930d DIST gnome-shell-3.36.7.tar.xz 1777236 BLAKE2B 4dd3b98e8a2ffa711bffe0b3b78708c85c1979122ee71e7e0d7c55626a608ba4598071bf8659338c960ba4b0349e5b621b97f294a4961cf021b9047753136af5 SHA512 7275d1e2d2629abd2fbfae910a77c25485464e39f8317ba1b0e8e1ae3368e69af4eb85c2611e82ea04270bfd8185e24f13002df9b13335adbdff144847790656 DIST gnome-shell-3.38.1.tar.xz 1812860 BLAKE2B d58dd9f5962d953f4bfa8aede62e24007185e0b4b82781c54cce87d8505657e01b0f76a9119b60634e6c723b7dd9320f5c56b984b59cc8fce61ad4a897291b44 SHA512 7ab580f892c4b4dac2fc8625343dfab1bf7a11e148dc01e6e805a5b1ac1d4cb17943b9a3058ec69fc086c270d76ef8073dca494991a5da1dcfa52b42dcc03f01 diff --git a/gnome-base/gnome-shell/gnome-shell-3.36.5.ebuild b/gnome-base/gnome-shell/gnome-shell-3.36.5.ebuild deleted file mode 100644 index 95c35c773e37..000000000000 --- a/gnome-base/gnome-shell/gnome-shell-3.36.5.ebuild +++ /dev/null @@ -1,190 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit gnome.org gnome2-utils meson python-single-r1 virtualx xdg - -DESCRIPTION="Provides core UI functions for the GNOME 3 desktop" -HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell" -SRC_URI+=" https://dev.gentoo.org/~leio/distfiles/${PF}-patchset.tar.xz" - -LICENSE="GPL-2+ LGPL-2+" -SLOT="0" -IUSE="+bluetooth +browser-extension elogind gtk-doc +ibus +networkmanager systemd telepathy" -REQUIRED_USE="${PYTHON_REQUIRED_USE} - ?? ( elogind systemd )" - -KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86" - -# libXfixes-5.0 needed for pointer barriers and #include -# FIXME: -# * gstreamer support is currently automagic -DEPEND=" - >=gnome-extra/evolution-data-server-3.33.1:= - >=app-crypt/gcr-3.7.5[introspection] - >=dev-libs/glib-2.57.2:2 - >=dev-libs/gobject-introspection-1.49.1:= - >=dev-libs/gjs-1.63.2 - >=x11-libs/gtk+-3.15.0:3[introspection] - >=x11-wm/mutter-3.36.0:0/6[introspection] - >=sys-auth/polkit-0.100[introspection] - >=gnome-base/gsettings-desktop-schemas-3.33.1 - >=x11-libs/startup-notification-0.11 - >=app-i18n/ibus-1.5.2 - >=gnome-base/gnome-desktop-3.35.90:3=[introspection] - bluetooth? ( >=net-wireless/gnome-bluetooth-3.9[introspection] ) - >=media-libs/gstreamer-0.11.92:1.0 - media-libs/gst-plugins-base:1.0 - networkmanager? ( - >=net-misc/networkmanager-1.10.4:=[introspection] - net-libs/libnma[introspection] - >=app-crypt/libsecret-0.18 - dev-libs/dbus-glib ) - systemd? ( >=sys-apps/systemd-31 - >=gnome-base/gnome-desktop-3.34.2:3=[systemd] ) - elogind? ( >=sys-auth/elogind-237 ) - app-arch/gnome-autoar - dev-libs/json-glib - - >=app-accessibility/at-spi2-atk-2.5.3 - x11-libs/gdk-pixbuf:2[introspection] - dev-libs/libxml2:2 - x11-libs/libX11 - - >=media-sound/pulseaudio-2[glib] - >=dev-libs/atk-2[introspection] - dev-libs/libical:= - >=x11-libs/libXfixes-5.0 - - ${PYTHON_DEPS} - $(python_gen_cond_dep ' - dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}] - ') - media-libs/mesa[X(+)] -" -# Runtime-only deps are probably incomplete and approximate. -# Introspection deps generated using: -# grep -roe "imports.gi.*" gnome-shell-* | cut -f2 -d: | sort | uniq -# Each block: -# 1. Introspection stuff needed via imports.gi.* -# 2. gnome-session needed for shutdown/reboot/inhibitors/etc -# 3. Control shell settings -# 4. logind interface needed for suspending support -# 5. xdg-utils needed for xdg-open, used by extension tool -# 6. adwaita-icon-theme needed for various icons & arrows (3.26 for new video-joined-displays-symbolic and co icons; review for 3.28+) -# 7. mobile-broadband-provider-info, timezone-data for shell-mobile-providers.c # TODO: Review -# 8. IBus is needed for nls integration -# 9. Optional telepathy chat integration -# 10. Cantarell font used in gnome-shell global CSS (if removing this for some reason, make sure it's pulled in somehow for non-meta users still too) -# 11. TODO: semi-optional webkit-gtk[introspection] for captive portal helper -RDEPEND="${DEPEND} - >=sys-apps/accountsservice-0.6.14[introspection] - app-accessibility/at-spi2-core:2[introspection] - app-misc/geoclue[introspection] - >=dev-libs/libgweather-3.26:2[introspection] - >=sys-power/upower-0.99:=[introspection] - x11-libs/pango[introspection] - gnome-base/librsvg:2[introspection] - - >=gnome-base/gnome-session-2.91.91 - >=gnome-base/gnome-settings-daemon-3.8.3 - - x11-misc/xdg-utils - - >=x11-themes/adwaita-icon-theme-3.26 - - networkmanager? ( - net-misc/mobile-broadband-provider-info - sys-libs/timezone-data ) - ibus? ( >=app-i18n/ibus-1.4.99[dconf(+),gtk,introspection] ) - telepathy? ( - >=net-im/telepathy-logger-0.2.4[introspection] - >=net-libs/telepathy-glib-0.19[introspection] ) - media-fonts/cantarell -" -# avoid circular dependency, see bug #546134 -PDEPEND=" - >=gnome-base/gdm-3.5[introspection] - >=gnome-base/gnome-control-center-3.26[bluetooth(+)?,networkmanager(+)?] - browser-extension? ( gnome-extra/chrome-gnome-shell ) -" -BDEPEND=" - dev-lang/sassc - dev-libs/libxslt - app-text/asciidoc - >=dev-util/gdbus-codegen-2.45.3 - dev-util/glib-utils - gtk-doc? ( >=dev-util/gtk-doc-1.17 - app-text/docbook-xml-dtd:4.3 ) - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig -" - -PATCHES=( - # origin/gnome-3-36@03062d0d9d9f + try to fix crashes related to custom stylesheet; triggered often by package installs (probably desktop database update), screen unlock, etc - # https://gitlab.gnome.org/GNOME/gnome-shell/issues/1265 - # https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/536 - "${WORKDIR}"/patches - # Fix automagic gnome-bluetooth dep, bug #398145 - "${FILESDIR}"/3.34-optional-bluetooth.patch - # Change favorites defaults, bug #479918 - "${FILESDIR}"/3.36-defaults.patch -) - -src_prepare() { - xdg_src_prepare - # Hack in correct python shebang - sed -e "s:python\.path():'/usr/bin/env ${EPYTHON}':" -i src/meson.build || die -} - -src_configure() { - local emesonargs=( - $(meson_use bluetooth) - -Dextensions_tool=true - -Dextensions_app=true - $(meson_use gtk-doc gtk_doc) - -Dman=true - $(meson_use networkmanager) - $(meson_use systemd) # this controls journald integration and desktop file user services related property only as of 3.34.4 - # (structured logging and having gnome-shell launched apps use its own identifier instead of gnome-session) - # suspend support is runtime optional via /run/systemd/seats presence and org.freedesktop.login1.Manager dbus interface; elogind should provide what's necessary - ) - meson_src_configure -} - -src_test() { - virtx meson_src_test -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_schemas_update - - if ! has_version 'media-libs/gst-plugins-good:1.0' || \ - ! has_version 'media-plugins/gst-plugins-vpx:1.0'; then - ewarn "To make use of GNOME Shell's built-in screen recording utility," - ewarn "you need to either install media-libs/gst-plugins-good:1.0" - ewarn "and media-plugins/gst-plugins-vpx:1.0, or use dconf-editor to change" - ewarn "apps.gnome-shell.recorder/pipeline to what you want to use." - fi - - if ! has_version "media-libs/mesa[llvm]"; then - elog "llvmpipe is used as fallback when no 3D acceleration" - elog "is available. You will need to enable llvm USE for" - elog "media-libs/mesa if you do not have hardware 3D setup." - fi - - # https://bugs.gentoo.org/show_bug.cgi?id=563084 - # TODO: Is this still the case after various fixed in 3.28 for detecting non-working KMS for wayland (to fall back to X)? - if has_version "x11-drivers/nvidia-drivers[-kms]"; then - ewarn "You will need to enable kms support in x11-drivers/nvidia-drivers," - ewarn "otherwise Gnome will fail to start" - fi -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_schemas_update -} diff --git a/gnome-base/gnome-shell/gnome-shell-3.36.7.ebuild b/gnome-base/gnome-shell/gnome-shell-3.36.7.ebuild index 43c5f42a3cc4..b50d1082d087 100644 --- a/gnome-base/gnome-shell/gnome-shell-3.36.7.ebuild +++ b/gnome-base/gnome-shell/gnome-shell-3.36.7.ebuild @@ -16,7 +16,7 @@ IUSE="+bluetooth +browser-extension elogind gtk-doc +ibus +networkmanager system REQUIRED_USE="${PYTHON_REQUIRED_USE} ?? ( elogind systemd )" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86" # libXfixes-5.0 needed for pointer barriers and #include # FIXME: diff --git a/gnome-extra/Manifest.gz b/gnome-extra/Manifest.gz index 2a117a23d88a..46890ab085b8 100644 Binary files a/gnome-extra/Manifest.gz and b/gnome-extra/Manifest.gz differ diff --git a/gnome-extra/gnome-shell-extensions/Manifest b/gnome-extra/gnome-shell-extensions/Manifest index b22492a5ceea..023b8863c29f 100644 --- a/gnome-extra/gnome-shell-extensions/Manifest +++ b/gnome-extra/gnome-shell-extensions/Manifest @@ -1,3 +1,2 @@ -DIST gnome-shell-extensions-3.36.3.tar.xz 207956 BLAKE2B be266e773e8adae06e063eac7b363ac628bde672cc4977ea38d437bfd078d1de61f4fa9402b433d22b61509fb530fa169731decd2e75c822b4c6b693bac61b9c SHA512 812580abb07f03bd82a80ced7aabca5a9daacd0ef1ec5990ee8e8f4cc231f93f880c33adc87519432cad3fc90f3a6fd3e33f4cff0a90c001bfeb825951d40bf9 DIST gnome-shell-extensions-3.36.7.tar.xz 207968 BLAKE2B 61e0e817af900d1a385d44cc3fe2a4d2fb89421aa692d9c02d92c6b841b7da248a267194e057fe5c9fb4e08a713bb72c657eb2fd4982b8bbcdb541644307d934 SHA512 b571f369dcd395d882b4afe5da213a52e3989b5e8e11886fd305d6c77a63ff73ed9d52eb7260ab7e880461354b882d659d28930176ca0aa8c1e75b4a39989997 DIST gnome-shell-extensions-3.38.1.tar.xz 209964 BLAKE2B 38fad074689aa93d0ca16a230db92417ef90363dc9f27be6c1692bc2296ff2019d0c42542f30d552f79c357795fad07e59bc508476b7cf09abfdeb5860487f0f SHA512 256dbb7ad4ae3b759afca85ae1c042f7b3f3cc46b2713f5a6f2f52d1cbc916a1fd8a634e20218a6eeb1baa6141f65c9c19170c5bfe2f7f677b679bbf78b3bce1 diff --git a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.36.3.ebuild b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.36.3.ebuild deleted file mode 100644 index 6711e1f3fd73..000000000000 --- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.36.3.ebuild +++ /dev/null @@ -1,72 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit eapi7-ver gnome.org readme.gentoo-r1 meson xdg - -DESCRIPTION="JavaScript extensions for GNOME Shell" -HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions" - -LICENSE="GPL-2+" -SLOT="0" -IUSE="test" -KEYWORDS="amd64 x86" - -COMMON_DEPEND=" - >=dev-libs/glib-2.26:2 - >=gnome-base/libgtop-2.28.3[introspection] - >=app-eselect/eselect-gnome-shell-extensions-20111211 -" -RDEPEND="${COMMON_DEPEND} - >=dev-libs/gjs-1.29 - dev-libs/gobject-introspection:= - dev-libs/atk[introspection] - gnome-base/gnome-menus:3[introspection] - =gnome-base/gnome-shell-$(ver_cut 1-2)* - media-libs/clutter:1.0[introspection] - net-libs/telepathy-glib[introspection] - x11-libs/gdk-pixbuf:2[introspection] - x11-libs/gtk+:3[introspection] - x11-libs/pango[introspection] - x11-themes/adwaita-icon-theme - >=x11-wm/mutter-3.32[introspection] -" -DEPEND="${COMMON_DEPEND} - dev-lang/sassc - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig - test? ( dev-lang/spidermonkey:68 ) -" - -RESTRICT="!test? ( test )" - -DISABLE_AUTOFORMATTING="yes" -DOC_CONTENTS="Installed extensions installed are initially disabled by default. -To change the system default and enable some extensions, you can use -# eselect gnome-shell-extensions - -Alternatively, to enable/disable extensions on a per-user basis, -you can use the https://extensions.gnome.org/ web interface, the -gnome-extra/gnome-tweaks GUI, or modify the org.gnome.shell -enabled-extensions gsettings key from the command line or a script." - -src_configure() { - meson_src_configure \ - -Dextension_set=all \ - -Dclassic_mode=true -} - -src_install() { - meson_src_install - readme.gentoo_create_doc -} - -pkg_postinst() { - xdg_pkg_postinst - - ebegin "Updating list of installed extensions" - eselect gnome-shell-extensions update - eend $? - - readme.gentoo_print_elog -} diff --git a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.36.7.ebuild b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.36.7.ebuild index 88401c357a10..6711e1f3fd73 100644 --- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.36.7.ebuild +++ b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.36.7.ebuild @@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions" LICENSE="GPL-2+" SLOT="0" IUSE="test" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" COMMON_DEPEND=" >=dev-libs/glib-2.26:2 diff --git a/gui-libs/Manifest.gz b/gui-libs/Manifest.gz index aeca3f9d87f9..9eb8c5b6952d 100644 Binary files a/gui-libs/Manifest.gz and b/gui-libs/Manifest.gz differ diff --git a/gui-libs/wlroots/files/wlroots-gcc-10.patch b/gui-libs/wlroots/files/wlroots-gcc-10.patch deleted file mode 100644 index 44e1cb7d89b0..000000000000 --- a/gui-libs/wlroots/files/wlroots-gcc-10.patch +++ /dev/null @@ -1,26 +0,0 @@ -https://bugs.gentoo.org/707496 - -From f2943bdf61afe0a3ad2227d72fcbcac8b3088b1a Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Jan=20Stan=C4=9Bk?= -Date: Tue, 28 Jan 2020 15:27:24 +0100 -Subject: [PATCH] Declare wlr_seat globals as extern - ---- - include/types/wlr_seat.h | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - ---- a/include/types/wlr_seat.h -+++ b/include/types/wlr_seat.h -@@ -4,9 +4,9 @@ - #include - #include - --const struct wlr_pointer_grab_interface default_pointer_grab_impl; --const struct wlr_keyboard_grab_interface default_keyboard_grab_impl; --const struct wlr_touch_grab_interface default_touch_grab_impl; -+extern const struct wlr_pointer_grab_interface default_pointer_grab_impl; -+extern const struct wlr_keyboard_grab_interface default_keyboard_grab_impl; -+extern const struct wlr_touch_grab_interface default_touch_grab_impl; - - void seat_client_create_pointer(struct wlr_seat_client *seat_client, - uint32_t version, uint32_t id); diff --git a/kde-apps/Manifest.gz b/kde-apps/Manifest.gz index 133c0764799c..ada1bb934ab5 100644 Binary files a/kde-apps/Manifest.gz and b/kde-apps/Manifest.gz differ diff --git a/kde-apps/umbrello/umbrello-20.08.3.ebuild b/kde-apps/umbrello/umbrello-20.08.3.ebuild index d065a45bcb04..fee13abd9b31 100644 --- a/kde-apps/umbrello/umbrello-20.08.3.ebuild +++ b/kde-apps/umbrello/umbrello-20.08.3.ebuild @@ -60,6 +60,7 @@ PATCHES=( src_configure() { local mycmakeargs=( -DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON # broken, re-enable w/ ECM_QTHELP + -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebKitWidgets=ON -DBUILD_APIDOC=OFF -DBUILD_KF5=ON -DBUILD_PHP_IMPORT=$(usex php) diff --git a/kde-plasma/Manifest.gz b/kde-plasma/Manifest.gz index 0d47520fc33f..bae4b1a1f62c 100644 Binary files a/kde-plasma/Manifest.gz and b/kde-plasma/Manifest.gz differ diff --git a/kde-plasma/kwayland-server/kwayland-server-5.20.3.ebuild b/kde-plasma/kwayland-server/kwayland-server-5.20.3.ebuild index 9ac4272b9ae9..32972b455ede 100644 --- a/kde-plasma/kwayland-server/kwayland-server-5.20.3.ebuild +++ b/kde-plasma/kwayland-server/kwayland-server-5.20.3.ebuild @@ -28,7 +28,7 @@ RDEPEND=" " DEPEND="${RDEPEND} >=dev-libs/plasma-wayland-protocols-1.1.1 - >=dev-libs/wayland-protocols-1.15 + >=dev-libs/wayland-protocols-1.18 " # All failing, I guess we need a virtual wayland server diff --git a/mail-client/Manifest.gz b/mail-client/Manifest.gz index 72f9066f276b..3c07d15ef23f 100644 Binary files a/mail-client/Manifest.gz and b/mail-client/Manifest.gz differ diff --git a/mail-client/mutt/Manifest b/mail-client/mutt/Manifest index 0d5727c40d54..1a31a0f8b3f0 100644 --- a/mail-client/mutt/Manifest +++ b/mail-client/mutt/Manifest @@ -1,8 +1,8 @@ DIST mutt-1.14.4.tar.gz 5007437 BLAKE2B 89d4327ddd86ec320c63db6ee9d3c07b7540a74aba7efdcb9605e5c5c242dec99fb5137d1cfc62fd4401e2af7589f03ebce78dfa2deae262aef408b804544656 SHA512 86484f009ca8bd1e26206694e03609a16f8a4e8c83620a07a4376fe160535a838e8c918a8a30799fb3d9cf46c059d67124f7425c42093fb5e5bf8ea4ac310daa DIST mutt-1.14.5.tar.gz 5008208 BLAKE2B a7c2f7f63d2ee23e743114315cbb40903db720de7f2836f551739edb0b78857c525c40ebde083064dd2430b89b21d7a17745dfc1185672f86b15a9a082c3778e SHA512 950c8df3bdc552b41ba6209aed8d5ade6fff80fe4018a75856d0fdbcd6389bd995a6dee69e7badd05a9b40d2e2293ada9a9f9a96632e88af36b61162f226e2b9 DIST mutt-1.14.7.tar.gz 5009968 BLAKE2B f729412d3da97fe9bd76733705317660edfa3858a9eb1012179fb289b03da58d79b6e261dbdc4ab8b001e89ca455e9972bab8f270bac28e887afc7e0bd9fc8c1 SHA512 dc9739b5f0a99ca70fcbd495c71fbead23e3481f9c9e426feb827997c9c42e5f28355084f54788820c96a079dedb649fcc20e69436fb3c4df7e46f372b533e7c -DIST mutt-2.0.0.tar.gz 5287742 BLAKE2B d45cae45e560548a3f278972e7bff820c860b194f06286a4e2c456141e7d421b1812f423e31594d0c4b0c82c8c9f597498888a8e127d41b8c172a5319a23cc8e SHA512 2f48bf7eb9bb79a477e3fb9bf4bcde6033d7aaa8922eee20b6e6a05f49a1aea152a7987b99f335343175d87180062064c90c5a7b5bfa82aed188eeab0ac4a90b +DIST mutt-2.0.2.tar.gz 5293613 BLAKE2B 215a4d54e6dd202ebced91d0536a7f70e774b3c41c129ef87a55ea75a298e485b72145e5dd3c654d9b28138800c4b3e87a3815ab789d952b6b58cfc068fd397b SHA512 5dea02edf60b33e4873806481aa4256f91d90b05de99a9eccc620c459bd924197b656f85eb5a31757a61675389e6c4d76571128a757cfda255240934e82eec29 DIST mutt-gentoo-1.14.4-patches-r0.tar.xz 31124 BLAKE2B a9774a5bb5af18a275f7ea171cb08a12a98d63cbff57320d5d3fb4f995aac16f409689ac0015f3b5d37cfc20004c9fca72a3f63663aaa679a129d5f3886bc5cc SHA512 05506399a471c262479db88ef11d2a95d79598fd696fe50de5f5c1c3cae5adf30a2806a1500ba94a62bcbf7deed99acc59a8afb903f50169e41b77010e0ad8cc DIST mutt-gentoo-1.14.5-patches-r0.tar.xz 31100 BLAKE2B 14525b54afa1414667ebe2dc0c58b9b5d5ad4dcc5dbae3c5db13cc23d33dbd9434fa929ad297625c891b2d690e34729a4f61c526fb94857e271ac85f5a07488e SHA512 fd8e473efa02e412aeaba258afee6dc02f9ca24f9edff643e4ef53c759a091e54c6a544e39cd7faa94cd680546bfcf845e282638045ae65a88d140ebb03a4631 DIST mutt-gentoo-1.14.7-patches-r0.tar.xz 31144 BLAKE2B 5a9806dec79f8a991e39464afde1faf2ba988e67ffd85ec16943432a83ee1d05ddcb839095a475ab56aa80a4bbe25de58835d6bde84c0c95e4487df139e16e82 SHA512 ca57af137bc5a2663724cb97a7ea04e4d62b2fe8a3864489f15552ef361c1fb8c881ebc783a4f3a6d82c5e9bb45e83fbe6cad59158c831c54361729ada24b458 -DIST mutt-gentoo-2.0.0-patches-r0.tar.xz 26396 BLAKE2B 80db2456871208050e5cccbd8ba22024dc45ffc69e9b8cbb892904010f0521061f0755f62984502c2cee58bb74aa0c30fafa4613709d2e8a6d0fe291bbc86e27 SHA512 f9b8f9abded13de54d7fcf991d58fa45e68d6e059c807dcca1530bdb927d7301faa30e31798e5a3f2d25504cb9db81dfa26f8cde3946a14f540f54955add2828 +DIST mutt-gentoo-2.0.2-patches-r0.tar.xz 26380 BLAKE2B 3ce2dbe07f9340adbaeb0489fe88564b6cc44ef330d298915d42617357799a26f277cc0dcab2b78a5620f20a2533f2fe43287bab76eeb9529013e9f9c7659ffb SHA512 79fb00ccf6084da805c75eedbdb1631b12e616318e91a4c246d0194a478b803e3dc5d2815f757fecc91316c010058c2d0e9ecaf3fe40d5664ac25af63a0d7e13 diff --git a/mail-client/mutt/mutt-2.0.0.ebuild b/mail-client/mutt/mutt-2.0.2.ebuild similarity index 98% rename from mail-client/mutt/mutt-2.0.0.ebuild rename to mail-client/mutt/mutt-2.0.2.ebuild index 353c1c707ea0..098178a82427 100644 --- a/mail-client/mutt/mutt-2.0.0.ebuild +++ b/mail-client/mutt/mutt-2.0.2.ebuild @@ -97,9 +97,6 @@ src_prepare() { sed -i \ -e '/ReachingUs = N_(/aThis release of Mutt is heavily enriched with patches.\\nFor this reason, any bugs are better reported at https://bugs.gentoo.org/\\nor re-emerge with USE=vanilla and try to reproduce your problem.\\n\\' \ main.c || die "Failed to add bug instructions" - - # https://gitlab.com/muttmua/mutt/-/issues/294 - sed -i -e 's/u_int32_t/uint32_t/g' mutt_random.c || die fi local upatches= diff --git a/mail-client/neomutt/Manifest b/mail-client/neomutt/Manifest index 7337c9469ab6..cf2d5f972ca5 100644 --- a/mail-client/neomutt/Manifest +++ b/mail-client/neomutt/Manifest @@ -1,4 +1,5 @@ DIST neomutt-20200626.tar.gz 3349377 BLAKE2B 4fd75c2e8e8b3d55a63f954cb261c3930f871141c73d3fb8d2f42422735f3f862bae6966249187632aa2d55acb0372cd150381e11ce936cfef9976c71e43eb67 SHA512 f4ffc958bdd02107b2dd11bf321483a6e1e73a67e0540d034ab26f9eb13930ad80299b11f79acaedb4262f8f8643f9ce4baa388bc7f901b9ae35e9650acdcc9e DIST neomutt-20200821.tar.gz 3404856 BLAKE2B db15997c89135680dcef7c6108ca1c2e120eade4a1e915f02de6f81758fed2a360f905e3dbe79f4ebfc17e86c3476d4823f227f5752a5558de13dde2cde6308a SHA512 f7cba9123613c34711b84ab9f5ccab840be38876da20b29d281c142a3b4f5d582b879d727c95232b0fcc7b41947d05bf89707232d3980e160bcdba68784d6eef DIST neomutt-20200925.tar.gz 3440056 BLAKE2B 6f9858a02bdfc8a947ba1a26557e1b5c0ec027845e67a15b6811853e5b8820b9a27419ced4eaa407ca9b32efcd53d7cf878c44c0a54a277018aef36127c49e59 SHA512 1ee89ee1b3581fe2b7dafd091e315fcf4d6f7b0644c15b08af8eb2720e83f07ae526b5659abb44430309821f48013fc85af0dd6f140729b2e52e5f874cf3bc50 +DIST neomutt-20201120.tar.gz 3456322 BLAKE2B c5735140a553e5e4ae8072cb79466b9c5d7e9f65df5de7b7823842676d3eb44660d31c0407bb8253e2857a39b31b4252c8c18815a25d964d26cb30e70d81c7c2 SHA512 31c0cbfdf2b772f61b4c9bce97c9a2ad9fffb6ae21e562522544ad94247dfaa530334d90bd550eae1efc2b94a467ed959e4abb79b14261da7092f146a2e08e11 DIST neomutt-test-files-8629adab700a75c54e8e28bf05ad092503a98f75.tar.gz 3673 BLAKE2B 50354f19aedc5fc07d59ecb5b38fa65de16119bc0929f47014bd35dab4d3a4e5953c8b35670f3440003cf0cbccc2d0d2b3a869dc929cdc3cd60b02790270fb54 SHA512 3d4962210bc558234d818801dcaa7851a0aef011c96d91c054af535186ffda42059fc61fb148c48e1b076999fe3159b31589a69a29ed1897f8928f52fcc157d3 diff --git a/mail-client/neomutt/neomutt-20201120.ebuild b/mail-client/neomutt/neomutt-20201120.ebuild new file mode 100644 index 000000000000..d45bb5419716 --- /dev/null +++ b/mail-client/neomutt/neomutt-20201120.ebuild @@ -0,0 +1,149 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit eutils + +if [[ ${PV} =~ 99999999$ ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/neomutt/neomutt.git" + EGIT_CHECKOUT_DIR="${WORKDIR}/neomutt-${P}" +else + SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +TEST_FILES_COMMIT=8629adab700a75c54e8e28bf05ad092503a98f75 +SRC_URI+=" test? ( https://github.com/${PN}/neomutt-test-files/archive/${TEST_FILES_COMMIT}.tar.gz -> neomutt-test-files-${TEST_FILES_COMMIT}.tar.gz )" + +DESCRIPTION="A small but very powerful text-based mail client" +HOMEPAGE="https://neomutt.org/" + +LICENSE="GPL-2" +SLOT="0" +IUSE="berkdb doc gdbm gnutls gpgme idn kerberos kyotocabinet libressl + lmdb nls notmuch pgp-classic qdbm sasl selinux slang smime-classic + ssl tokyocabinet test" + +CDEPEND=" + app-misc/mime-types + berkdb? ( + || ( + sys-libs/db:6.2 + sys-libs/db:5.3 + sys-libs/db:4.8 + ) + =net-libs/gnutls-1.0.17:= ) + gpgme? ( >=app-crypt/gpgme-0.9.0:= ) + idn? ( net-dns/libidn:= ) + kerberos? ( virtual/krb5 ) + notmuch? ( net-mail/notmuch:= ) + sasl? ( >=dev-libs/cyrus-sasl-2 ) + !slang? ( sys-libs/ncurses:0= ) + slang? ( sys-libs/slang ) + ssl? ( + !libressl? ( >=dev-libs/openssl-1.0.2u:0= ) + libressl? ( dev-libs/libressl:= ) + ) +" +DEPEND="${CDEPEND} + dev-lang/tcl:= + net-mail/mailbase + doc? ( + dev-libs/libxml2 + dev-libs/libxslt + app-text/docbook-xsl-stylesheets + || ( + www-client/lynx + www-client/w3m + www-client/elinks + ) + ) +" +RDEPEND="${CDEPEND} + selinux? ( sec-policy/selinux-mutt ) +" + +RESTRICT="!test? ( test )" + +src_configure() { + local myconf=( + "$(usex doc --full-doc --disable-doc)" + "$(use_enable nls)" + "$(use_enable notmuch)" + + "$(use_enable gpgme)" + "$(use_enable pgp-classic pgp)" + "$(use_enable smime-classic smime)" + + # Database backends. + "$(use_enable berkdb bdb)" + "$(use_enable gdbm)" + "$(use_enable kyotocabinet)" + "$(use_enable qdbm)" + "$(use_enable tokyocabinet)" + + "$(use_enable idn)" + "$(use_enable kerberos gss)" + "$(use_enable lmdb)" + "$(use_enable sasl)" + "--with-ui=$(usex slang slang ncurses)" + "--sysconfdir=${EPREFIX}/etc/${PN}" + "$(use_enable ssl)" + "$(use_enable gnutls)" + + "$(usex test --testing --disable-testing)" + ) + + econf CCACHE=none "${myconf[@]}" +} + +src_test() { + local test_dir="$(readlink --canonicalize ${S}/../neomutt-test-files-${TEST_FILES_COMMIT})" + pushd ${test_dir} || die "Could not cd into test_dir" + NEOMUTT_TEST_DIR="${test_dir}" ./setup.sh \ + || die "Failed to run the setup.sh script" + popd || die "Could not cd back" + NEOMUTT_TEST_DIR="${test_dir}" emake test +} + +src_install() { + emake DESTDIR="${D}" install + + # A man-page is always handy, so fake one - here neomuttrc.5 (neomutt.1 + # already exists) + if use !doc; then + sed -n \ + -e '/^\(CC_FOR_BUILD\|CFLAGS_FOR_BUILD\)\s*=/p' \ + -e '/^\(EXTRA_CFLAGS_FOR_BUILD\|LDFLAGS_FOR_BUILD\)\s*=/p' \ + -e '/^\(EXEEXT\|SRCDIR\)\s*=/p' \ + Makefile > docs/Makefile.fakedoc || die + sed -n \ + -e '/^MAKEDOC_CPP\s*=/,/^\s*$/p' \ + -e '/^docs\/\(makedoc$(EXEEXT)\|neomutt\.1\|neomuttrc\.5\)\s*:/,/^\s*$/p' \ + docs/Makefile.autosetup >> docs/Makefile.fakedoc || die + emake -f docs/Makefile.fakedoc docs/neomutt.1 + emake -f docs/Makefile.fakedoc docs/neomuttrc.5 + doman docs/neomutt.1 docs/neomuttrc.5 + fi + + dodoc LICENSE* ChangeLog* README* +} + +pkg_postinst() { + if use gpgme && ( use pgp-classic || use smime-classic ); then + ewarn " Note that gpgme (old gpg) includes both pgp and smime" + ewarn " support. You can probably remove pgp-classic (old crypt)" + ewarn " and smime-classic (old smime) from your USE-flags and" + ewarn " only enable gpgme." + fi +} diff --git a/mail-filter/Manifest.gz b/mail-filter/Manifest.gz index b68b68584928..969fe7d5d740 100644 Binary files a/mail-filter/Manifest.gz and b/mail-filter/Manifest.gz differ diff --git a/mail-filter/rspamd/files/rspamd-2.5-unbundle-lua.patch b/mail-filter/rspamd/files/rspamd-2.5-unbundle-lua.patch index b8deb2d6903b..4a20c8f19d3f 100644 --- a/mail-filter/rspamd/files/rspamd-2.5-unbundle-lua.patch +++ b/mail-filter/rspamd/files/rspamd-2.5-unbundle-lua.patch @@ -1,22 +1,8 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt -index bbc141170..8e3665c18 100644 +index bbc141170..7fbb1b485 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -112,7 +112,6 @@ INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/" - "${CMAKE_SOURCE_DIR}/contrib/librdns" - "${CMAKE_SOURCE_DIR}/contrib/aho-corasick" - "${CMAKE_SOURCE_DIR}/contrib/lc-btrie" -- "${CMAKE_SOURCE_DIR}/contrib/lua-lpeg" - "${CMAKE_BINARY_DIR}/src" #Stored in the binary dir - "${CMAKE_BINARY_DIR}/src/libcryptobox") - -@@ -592,16 +591,11 @@ ENDIF() - ADD_SUBDIRECTORY(contrib/libucl) - ADD_SUBDIRECTORY(contrib/librdns) - ADD_SUBDIRECTORY(contrib/aho-corasick) --ADD_SUBDIRECTORY(contrib/lua-lpeg) - ADD_SUBDIRECTORY(contrib/t1ha) - ADD_SUBDIRECTORY(contrib/libev) +@@ -598,10 +598,6 @@ ADD_SUBDIRECTORY(contrib/libev) ADD_SUBDIRECTORY(contrib/kann) ADD_SUBDIRECTORY(contrib/fastutf8) @@ -27,27 +13,11 @@ index bbc141170..8e3665c18 100644 IF (ENABLE_LUA_REPL MATCHES "ON") ADD_SUBDIRECTORY(contrib/replxx) SET(WITH_LUA_REPL 1) -@@ -700,7 +694,6 @@ INSTALL(FILES "contrib/lua-fun/fun.lua" DESTINATION ${LUALIBDIR}) - INSTALL(FILES "contrib/lua-argparse/argparse.lua" DESTINATION ${LUALIBDIR}) - INSTALL(FILES "contrib/lua-tableshape/tableshape.lua" DESTINATION ${LUALIBDIR}) - INSTALL(FILES "contrib/lua-lupa/lupa.lua" DESTINATION ${LUALIBDIR}) --INSTALL(FILES "contrib/lua-lpeg/lpegre.lua" DESTINATION ${LUALIBDIR}) - - # systemd unit - IF(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND WANT_SYSTEMD_UNITS MATCHES "ON") diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 9a34d2ac4..54b2e4083 100644 +index 9a34d2ac4..59bab5c15 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt -@@ -180,7 +180,6 @@ ENDIF() - TARGET_LINK_LIBRARIES(rspamd-server rspamd-http-parser) - TARGET_LINK_LIBRARIES(rspamd-server rspamd-fpconv) - TARGET_LINK_LIBRARIES(rspamd-server rspamd-cdb) --TARGET_LINK_LIBRARIES(rspamd-server rspamd-lpeg) - TARGET_LINK_LIBRARIES(rspamd-server lcbtrie) - TARGET_LINK_LIBRARIES(rspamd-server rspamd-zstd) - TARGET_LINK_LIBRARIES(rspamd-server rspamd-fastutf8) -@@ -189,10 +188,6 @@ IF (ENABLE_CLANG_PLUGIN MATCHES "ON") +@@ -189,10 +189,6 @@ IF (ENABLE_CLANG_PLUGIN MATCHES "ON") ADD_DEPENDENCIES(rspamd-server rspamd-clang) ENDIF() @@ -59,18 +29,10 @@ index 9a34d2ac4..54b2e4083 100644 TARGET_LINK_LIBRARIES(rspamd-server stemmer) ENDIF() diff --git a/src/lua/lua_common.c b/src/lua/lua_common.c -index ce5fff6c5..509ceeb44 100644 +index ce5fff6c5..bea6dc389 100644 --- a/src/lua/lua_common.c +++ b/src/lua/lua_common.c -@@ -14,7 +14,6 @@ - * limitations under the License. - */ - #include "lua_common.h" --#include "lptree.h" - #include "utlist.h" - #include "unix-std.h" - #include "ottery.h" -@@ -903,10 +902,6 @@ rspamd_lua_wipe_realloc (void *ud, +@@ -903,10 +903,6 @@ rspamd_lua_wipe_realloc (void *ud, return NULL; } @@ -81,7 +43,7 @@ index ce5fff6c5..509ceeb44 100644 lua_State * rspamd_lua_init (bool wipe_mem) { -@@ -961,7 +956,6 @@ rspamd_lua_init (bool wipe_mem) +@@ -961,7 +957,6 @@ rspamd_lua_init (bool wipe_mem) luaopen_kann (L); luaopen_spf (L); #ifndef WITH_LUAJIT @@ -89,11 +51,3 @@ index ce5fff6c5..509ceeb44 100644 lua_settop (L, 0); #endif -@@ -971,7 +965,6 @@ rspamd_lua_init (bool wipe_mem) - rspamd_lua_new_class (L, "rspamd{session}", NULL); - lua_pop (L, 1); - -- rspamd_lua_add_preload (L, "lpeg", luaopen_lpeg); - luaopen_ucl (L); - rspamd_lua_add_preload (L, "ucl", luaopen_ucl); - diff --git a/mail-filter/rspamd/files/rspamd-2.6-unbundle-lua.patch b/mail-filter/rspamd/files/rspamd-2.6-unbundle-lua.patch index c6f6324befc7..9278fa8608d7 100644 --- a/mail-filter/rspamd/files/rspamd-2.6-unbundle-lua.patch +++ b/mail-filter/rspamd/files/rspamd-2.6-unbundle-lua.patch @@ -1,24 +1,8 @@ diff --git a/CMakeLists.txt b/CMakeLists.txt -index b794b9dbd..90caf4048 100644 +index b794b9dbd..1ba5c085e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -111,7 +111,6 @@ INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/" - "${CMAKE_SOURCE_DIR}/contrib/librdns" - "${CMAKE_SOURCE_DIR}/contrib/aho-corasick" - "${CMAKE_SOURCE_DIR}/contrib/lc-btrie" -- "${CMAKE_SOURCE_DIR}/contrib/lua-lpeg" - "${CMAKE_BINARY_DIR}/src" #Stored in the binary dir - "${CMAKE_BINARY_DIR}/src/libcryptobox") - -@@ -624,7 +623,6 @@ ENDIF() - ADD_SUBDIRECTORY(contrib/libucl) - ADD_SUBDIRECTORY(contrib/librdns) - ADD_SUBDIRECTORY(contrib/aho-corasick) --ADD_SUBDIRECTORY(contrib/lua-lpeg) - ADD_SUBDIRECTORY(contrib/t1ha) - ADD_SUBDIRECTORY(contrib/libev) - ADD_SUBDIRECTORY(contrib/kann) -@@ -632,10 +630,6 @@ ADD_SUBDIRECTORY(contrib/fastutf8) +@@ -632,10 +632,6 @@ ADD_SUBDIRECTORY(contrib/fastutf8) ADD_SUBDIRECTORY(contrib/google-ced) @@ -29,27 +13,11 @@ index b794b9dbd..90caf4048 100644 IF (ENABLE_LUA_REPL MATCHES "ON") ADD_SUBDIRECTORY(contrib/replxx) SET(WITH_LUA_REPL 1) -@@ -735,7 +729,6 @@ INSTALL(FILES "contrib/lua-fun/fun.lua" DESTINATION ${LUALIBDIR}) - INSTALL(FILES "contrib/lua-argparse/argparse.lua" DESTINATION ${LUALIBDIR}) - INSTALL(FILES "contrib/lua-tableshape/tableshape.lua" DESTINATION ${LUALIBDIR}) - INSTALL(FILES "contrib/lua-lupa/lupa.lua" DESTINATION ${LUALIBDIR}) --INSTALL(FILES "contrib/lua-lpeg/lpegre.lua" DESTINATION ${LUALIBDIR}) - - # systemd unit - IF(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND WANT_SYSTEMD_UNITS MATCHES "ON") diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt -index 9a34d2ac4..54b2e4083 100644 +index 9a34d2ac4..59bab5c15 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt -@@ -180,7 +180,6 @@ ENDIF() - TARGET_LINK_LIBRARIES(rspamd-server rspamd-http-parser) - TARGET_LINK_LIBRARIES(rspamd-server rspamd-fpconv) - TARGET_LINK_LIBRARIES(rspamd-server rspamd-cdb) --TARGET_LINK_LIBRARIES(rspamd-server rspamd-lpeg) - TARGET_LINK_LIBRARIES(rspamd-server lcbtrie) - TARGET_LINK_LIBRARIES(rspamd-server rspamd-zstd) - TARGET_LINK_LIBRARIES(rspamd-server rspamd-fastutf8) -@@ -189,10 +188,6 @@ IF (ENABLE_CLANG_PLUGIN MATCHES "ON") +@@ -189,10 +189,6 @@ IF (ENABLE_CLANG_PLUGIN MATCHES "ON") ADD_DEPENDENCIES(rspamd-server rspamd-clang) ENDIF() @@ -61,18 +29,10 @@ index 9a34d2ac4..54b2e4083 100644 TARGET_LINK_LIBRARIES(rspamd-server stemmer) ENDIF() diff --git a/src/lua/lua_common.c b/src/lua/lua_common.c -index b7fcc2034..b8120af97 100644 +index b7fcc2034..1d86464da 100644 --- a/src/lua/lua_common.c +++ b/src/lua/lua_common.c -@@ -14,7 +14,6 @@ - * limitations under the License. - */ - #include "lua_common.h" --#include "lptree.h" - #include "utlist.h" - #include "unix-std.h" - #include "ottery.h" -@@ -922,10 +921,6 @@ rspamd_lua_wipe_realloc (void *ud, +@@ -922,10 +922,6 @@ rspamd_lua_wipe_realloc (void *ud, return NULL; } @@ -83,7 +43,7 @@ index b7fcc2034..b8120af97 100644 lua_State * rspamd_lua_init (bool wipe_mem) { -@@ -981,7 +976,6 @@ rspamd_lua_init (bool wipe_mem) +@@ -981,7 +977,6 @@ rspamd_lua_init (bool wipe_mem) luaopen_spf (L); luaopen_tensor (L); #ifndef WITH_LUAJIT @@ -91,11 +51,3 @@ index b7fcc2034..b8120af97 100644 lua_settop (L, 0); #endif -@@ -991,7 +985,6 @@ rspamd_lua_init (bool wipe_mem) - rspamd_lua_new_class (L, "rspamd{session}", NULL); - lua_pop (L, 1); - -- rspamd_lua_add_preload (L, "lpeg", luaopen_lpeg); - luaopen_ucl (L); - rspamd_lua_add_preload (L, "ucl", luaopen_ucl); - diff --git a/mail-filter/rspamd/files/rspamd-9999-unbundle-zstd.patch b/mail-filter/rspamd/files/rspamd-9999-unbundle-zstd.patch new file mode 100644 index 000000000000..c42bb8f5d6f2 --- /dev/null +++ b/mail-filter/rspamd/files/rspamd-9999-unbundle-zstd.patch @@ -0,0 +1,125 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 3b4bd8469..75582513e 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -199,6 +199,8 @@ ELSE() + ROOT ${PCRE_ROOT_DIR} MODULES pcre libpcre pcre3 libpcre3) + ENDIF() + ++ProcessPackage(ZSTD LIBRARY zstd INCLUDE zstd.h ++ ROOT ${ZSTD_ROOT_DIR} MODULES libzstd) + ProcessPackage(SQLITE3 LIBRARY sqlite3 INCLUDE sqlite3.h INCLUDE_SUFFIXES include/sqlite3 include/sqlite + ROOT ${SQLITE3_ROOT_DIR} MODULES sqlite3 sqlite) + ProcessPackage(ICUDATA LIBRARY icudata INCLUDE unicode/ucnv.h +@@ -616,7 +618,6 @@ ADD_SUBDIRECTORY(contrib/http-parser) + ADD_SUBDIRECTORY(contrib/fpconv) + ADD_SUBDIRECTORY(contrib/lc-btrie) + ADD_SUBDIRECTORY(contrib/libottery) +-ADD_SUBDIRECTORY(contrib/zstd) + IF(ENABLE_SNOWBALL MATCHES "ON") + ADD_SUBDIRECTORY(contrib/snowball) + SET(WITH_SNOWBALL 1) +diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt +index 59bab5c15..098329991 100644 +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -182,7 +182,6 @@ TARGET_LINK_LIBRARIES(rspamd-server rspamd-fpconv) + TARGET_LINK_LIBRARIES(rspamd-server rspamd-cdb) + TARGET_LINK_LIBRARIES(rspamd-server rspamd-lpeg) + TARGET_LINK_LIBRARIES(rspamd-server lcbtrie) +-TARGET_LINK_LIBRARIES(rspamd-server rspamd-zstd) + TARGET_LINK_LIBRARIES(rspamd-server rspamd-fastutf8) + + IF (ENABLE_CLANG_PLUGIN MATCHES "ON") +diff --git a/src/client/rspamdclient.c b/src/client/rspamdclient.c +index bcb25672e..48ca58e94 100644 +--- a/src/client/rspamdclient.c ++++ b/src/client/rspamdclient.c +@@ -19,7 +19,7 @@ + #include "libserver/http/http_private.h" + #include "libserver/protocol_internal.h" + #include "unix-std.h" +-#include "contrib/zstd/zstd.h" ++#include + + #ifdef HAVE_FETCH_H + #include +diff --git a/src/libserver/cfg_utils.c b/src/libserver/cfg_utils.c +index e2f886aa6..5b214c09c 100644 +--- a/src/libserver/cfg_utils.c ++++ b/src/libserver/cfg_utils.c +@@ -36,8 +36,7 @@ + #include "contrib/libottery/ottery.h" + #include "contrib/fastutf8/fastutf8.h" + +-#define ZSTD_STATIC_LINKING_ONLY +-#include "contrib/zstd/zstd.h" ++#include + + #ifdef HAVE_OPENSSL + #include +diff --git a/src/libserver/maps/map.c b/src/libserver/maps/map.c +index 14792753a..20ca8416e 100644 +--- a/src/libserver/maps/map.c ++++ b/src/libserver/maps/map.c +@@ -23,7 +23,7 @@ + #include "libserver/http/http_connection.h" + #include "libserver/http/http_private.h" + #include "rspamd.h" +-#include "contrib/zstd/zstd.h" ++#include + #include "contrib/libev/ev.h" + #include "contrib/uthash/utlist.h" + +diff --git a/src/libserver/protocol.c b/src/libserver/protocol.c +index 31b0308cb..62ba3d833 100644 +--- a/src/libserver/protocol.c ++++ b/src/libserver/protocol.c +@@ -21,7 +21,7 @@ + #include "worker_private.h" + #include "libserver/cfg_file_private.h" + #include "libmime/scan_result_private.h" +-#include "contrib/zstd/zstd.h" ++#include + #include "lua/lua_common.h" + #include "unix-std.h" + #include "protocol_internal.h" +diff --git a/src/libserver/task.c b/src/libserver/task.c +index e7a83a603..c613fffcc 100644 +--- a/src/libserver/task.c ++++ b/src/libserver/task.c +@@ -25,7 +25,7 @@ + #include "stat_api.h" + #include "unix-std.h" + #include "utlist.h" +-#include "contrib/zstd/zstd.h" ++#include + #include "libserver/mempool_vars_internal.h" + #include "libserver/cfg_file_private.h" + #include "libmime/lang_detection.h" +diff --git a/src/lua/lua_util.c b/src/lua/lua_util.c +index e879d37af..88451e222 100644 +--- a/src/lua/lua_util.c ++++ b/src/lua/lua_util.c +@@ -15,7 +15,7 @@ + */ + #include "lua_common.h" + #include "unix-std.h" +-#include "contrib/zstd/zstd.h" ++#include + #include "libmime/email_addr.h" + #include "libmime/content_type.h" + #include "libmime/mime_headers.h" +diff --git a/src/rspamd_proxy.c b/src/rspamd_proxy.c +index 3fa5da390..c641fb263 100644 +--- a/src/rspamd_proxy.c ++++ b/src/rspamd_proxy.c +@@ -36,7 +36,7 @@ + #include "libserver/milter.h" + #include "libserver/milter_internal.h" + #include "libmime/lang_detection.h" +-#include "contrib/zstd/zstd.h" ++#include + + #include + diff --git a/mail-filter/rspamd/rspamd-2.5.ebuild b/mail-filter/rspamd/rspamd-2.5-r1.ebuild similarity index 96% rename from mail-filter/rspamd/rspamd-2.5.ebuild rename to mail-filter/rspamd/rspamd-2.5-r1.ebuild index a533869c5122..eb97eb1d040b 100644 --- a/mail-filter/rspamd/rspamd-2.5.ebuild +++ b/mail-filter/rspamd/rspamd-2.5-r1.ebuild @@ -36,11 +36,9 @@ RDEPEND=" jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 - dev-lua/lpeg[luajit] ) !jit? ( dev-lang/lua:* - dev-lua/lpeg[-luajit] dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) @@ -63,7 +61,7 @@ PATCHES=( src_prepare() { cmake_src_prepare - rm -vrf contrib/{lua-{bit,lpeg},snowball,zstd} || die + rm -vrf contrib/{lua-bit,snowball,zstd} || die sed -i -e 's/User=_rspamd/User=rspamd/g' \ rspamd.service \ diff --git a/mail-filter/rspamd/rspamd-2.6-r1.ebuild b/mail-filter/rspamd/rspamd-2.6-r2.ebuild similarity index 96% rename from mail-filter/rspamd/rspamd-2.6-r1.ebuild rename to mail-filter/rspamd/rspamd-2.6-r2.ebuild index 1488b0696d24..380080e13fba 100644 --- a/mail-filter/rspamd/rspamd-2.6-r1.ebuild +++ b/mail-filter/rspamd/rspamd-2.6-r2.ebuild @@ -39,11 +39,9 @@ RDEPEND=" jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 - dev-lua/lpeg[luajit] ) !jit? ( dev-lang/lua:* - dev-lua/lpeg[-luajit] dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) @@ -65,7 +63,7 @@ PATCHES=( src_prepare() { cmake_src_prepare - rm -vrf contrib/{lua-{bit,lpeg},snowball,zstd} || die + rm -vrf contrib/{lua-bit,snowball,zstd} || die sed -i -e 's/User=_rspamd/User=rspamd/g' \ rspamd.service \ diff --git a/mail-filter/rspamd/rspamd-9999.ebuild b/mail-filter/rspamd/rspamd-9999.ebuild index 1488b0696d24..e51965b8983e 100644 --- a/mail-filter/rspamd/rspamd-9999.ebuild +++ b/mail-filter/rspamd/rspamd-9999.ebuild @@ -39,11 +39,9 @@ RDEPEND=" jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 - dev-lua/lpeg[luajit] ) !jit? ( dev-lang/lua:* - dev-lua/lpeg[-luajit] dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) @@ -58,14 +56,14 @@ BDEPEND=" PATCHES=( "${FILESDIR}/rspamd-2.6-unbundle-lua.patch" - "${FILESDIR}/rspamd-2.6-unbundle-zstd.patch" + "${FILESDIR}/rspamd-9999-unbundle-zstd.patch" "${FILESDIR}/rspamd-2.5-unbundle-snowball.patch" ) src_prepare() { cmake_src_prepare - rm -vrf contrib/{lua-{bit,lpeg},snowball,zstd} || die + rm -vrf contrib/{lua-bit,snowball,zstd} || die sed -i -e 's/User=_rspamd/User=rspamd/g' \ rspamd.service \ diff --git a/media-gfx/Manifest.gz b/media-gfx/Manifest.gz index 40a2cfdba482..91a60844ced8 100644 Binary files a/media-gfx/Manifest.gz and b/media-gfx/Manifest.gz differ diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest index a82700d7e085..9334c59d7a6d 100644 --- a/media-gfx/imagemagick/Manifest +++ b/media-gfx/imagemagick/Manifest @@ -1,2 +1,4 @@ DIST ImageMagick-6.9.11-35.tar.xz 9214584 BLAKE2B a482a8134b321395437178bcc25963931738f73925698c860f6d7088fe1ed79917d6e7d4a4da3b5fe71aeb29695901341fdc20336f68e64ae63bba1bd5ef9ce2 SHA512 3d04e1add469486b6c9d1e562f7623bed516a64e797abd3113c34937723333550f52245f89395da7126f656a58c0c2d3516cec14abe0a3d6ab2a75a1ccde1645 +DIST ImageMagick-6.9.11-41.tar.xz 9163764 BLAKE2B 943dbed16e096adb88ac81c9fb50190bb9bbfd4fda24145b49bb147034f2b69403ed17c61a5edf52d28f22c4d729d4704ad10084f395b8d6890e87c800cc5486 SHA512 7331885b5dc0b1048e961e9c357fbfc0eabb71c265387842eb42530b0f02210d017f7e0536602780f294f48c6077932abd7d10322584da9b392a7a18e7460cc9 DIST ImageMagick-7.0.10-35.tar.xz 9656888 BLAKE2B 3b1da9c2a6118cd4885eeaa366f2fbcda1a16a9a81025b810431262510ec70d2397512e3b1a5eedf95a3a29bebdff16399b2cb308a0da67b512472c86a6505ca SHA512 340395496b1d41f52ffd6c5928d9426edbc3e79aa1d3ad38b41eac361b6291a2ede3d3997ced61500fd34a32b74f774e7335e6d13de0b7c5e70d7039ec95887c +DIST ImageMagick-7.0.10-41.tar.xz 9645036 BLAKE2B 3e90fc739cc271a20be49e1cf7b2a637e1b3916ae2934d7874f28339039ce5c331c35eb8863ef6144270586afd85ac9475a0603d64b9a8189a9f06de6f47f42e SHA512 62439bcc7a2447593bedf165c2c05e67e27d672823523d611439fa2dc288e948772389772dcf1f8633ca7dbf38b514cf5fc3bfb5fb3d61e2efdd38fe7a2ad040 diff --git a/media-gfx/imagemagick/imagemagick-6.9.11.41.ebuild b/media-gfx/imagemagick/imagemagick-6.9.11.41.ebuild new file mode 100644 index 000000000000..aaa7079f92f1 --- /dev/null +++ b/media-gfx/imagemagick/imagemagick-6.9.11.41.ebuild @@ -0,0 +1,254 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit eapi7-ver eutils flag-o-matic libtool perl-functions toolchain-funcs multilib + +MY_PV="$(ver_rs 3 '-')" +MY_P="ImageMagick-${MY_PV}" + +DESCRIPTION="A collection of tools and libraries for many image formats" +HOMEPAGE="https://www.imagemagick.org/" +SRC_URI="mirror://imagemagick/${MY_P}.tar.xz" + +LICENSE="imagemagick" +SLOT="0/6.9.11" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib" + +REQUIRED_USE="corefonts? ( truetype ) + test? ( corefonts )" + +RESTRICT="!test? ( test )" + +RDEPEND=" + dev-libs/libltdl:0 + bzip2? ( app-arch/bzip2 ) + corefonts? ( media-fonts/corefonts ) + djvu? ( app-text/djvu ) + fftw? ( sci-libs/fftw:3.0 ) + fontconfig? ( media-libs/fontconfig ) + fpx? ( >=media-libs/libfpx-1.3.0-r1 ) + graphviz? ( media-gfx/graphviz ) + heif? ( media-libs/libheif:= ) + jbig? ( >=media-libs/jbigkit-2:= ) + jpeg? ( virtual/jpeg:0 ) + jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) + lcms? ( media-libs/lcms:2= ) + lqr? ( media-libs/liblqr ) + opencl? ( virtual/opencl ) + openexr? ( media-libs/openexr:0= ) + pango? ( x11-libs/pango ) + perl? ( >=dev-lang/perl-5.8.8:0= ) + png? ( media-libs/libpng:0= ) + postscript? ( app-text/ghostscript-gpl ) + raw? ( media-libs/libraw:= ) + svg? ( + gnome-base/librsvg + media-gfx/potrace + ) + tiff? ( media-libs/tiff:0= ) + truetype? ( + media-fonts/urw-fonts + >=media-libs/freetype-2 + ) + webp? ( media-libs/libwebp:0= ) + wmf? ( media-libs/libwmf ) + X? ( + x11-libs/libICE + x11-libs/libSM + x11-libs/libXext + x11-libs/libXt + ) + xml? ( dev-libs/libxml2:= ) + lzma? ( app-arch/xz-utils ) + zlib? ( sys-libs/zlib:= )" +DEPEND="${RDEPEND} + !media-gfx/graphicsmagick[imagemagick] + virtual/pkgconfig + X? ( x11-base/xorg-proto )" + +S="${WORKDIR}/${MY_P}" +#S="${WORKDIR}/ImageMagick6-${MY_PV}" + +src_prepare() { + default + + # Apply hardening #664236 + cp "${FILESDIR}"/policy-hardening.snippet "${S}" || die + sed -i -e '/^$/ { + r policy-hardening.snippet + d + }' \ + config/policy.xml || \ + die "Failed to apply hardening of policy.xml" + einfo "policy.xml hardened" + + elibtoolize # for Darwin modules + + # For testsuite, see https://bugs.gentoo.org/show_bug.cgi?id=500580#c3 + local mesa_cards ati_cards nvidia_cards render_cards + shopt -s nullglob + ati_cards=$(echo -n /dev/ati/card* | sed 's/ /:/g') + if test -n "${ati_cards}"; then + addpredict "${ati_cards}" + fi + mesa_cards=$(echo -n /dev/dri/card* | sed 's/ /:/g') + if test -n "${mesa_cards}"; then + addpredict "${mesa_cards}" + fi + nvidia_cards=$(echo -n /dev/nvidia** | sed 's/ /:/g') + if test -n "${nvidia_cards}"; then + addpredict "${nvidia_cards}" + fi + render_cards=$(echo -n /dev/dri/renderD128* | sed 's/ /:/g') + if test -n "${render_cards}"; then + addpredict "${render_cards}" + fi + shopt -u nullglob + addpredict /dev/nvidiactl +} + +src_configure() { + local depth=16 + use q8 && depth=8 + use q32 && depth=32 + + local openmp=disable + use openmp && { tc-has-openmp && openmp=enable; } + + use perl && perl_check_env + + [[ ${CHOST} == *-solaris* ]] && append-ldflags -lnsl -lsocket + + local myeconfargs=( + $(use_enable static-libs static) + $(use_enable hdri) + $(use_enable opencl) + --with-threads + --with-modules + --with-quantum-depth=${depth} + $(use_with cxx magick-plus-plus) + $(use_with perl) + --with-perl-options='INSTALLDIRS=vendor' + --with-gs-font-dir="${EPREFIX}"/usr/share/fonts/urw-fonts + $(use_with bzip2 bzlib) + $(use_with X x) + $(use_with zlib) + --without-autotrace + $(use_with postscript dps) + $(use_with djvu) + --with-dejavu-font-dir="${EPREFIX}"/usr/share/fonts/dejavu + $(use_with fftw) + $(use_with fpx) + $(use_with fontconfig) + $(use_with truetype freetype) + $(use_with postscript gslib) + $(use_with graphviz gvc) + $(use_with heif heic) + $(use_with jbig) + $(use_with jpeg) + $(use_with jpeg2k openjp2) + $(use_with lcms) + $(use_with lqr) + $(use_with lzma) + $(use_with openexr) + $(use_with pango) + $(use_with png) + $(use_with raw) + $(use_with svg rsvg) + $(use_with tiff) + $(use_with webp) + $(use_with corefonts windows-font-dir "${EPREFIX}"/usr/share/fonts/corefonts) + $(use_with wmf) + $(use_with xml) + --${openmp}-openmp + --with-gcc-arch=no-automagic + ) + CONFIG_SHELL=$(type -P bash) econf "${myeconfargs[@]}" +} + +src_test() { + # Install default (unrestricted) policy in $HOME for test suite #664238 + local _im_local_config_home="${HOME}/.config/ImageMagick" + mkdir -p "${_im_local_config_home}" || \ + die "Failed to create IM config dir in '${_im_local_config_home}'" + cp "${FILESDIR}"/policy.test.xml "${_im_local_config_home}/policy.xml" || \ + die "Failed to install default blank policy.xml in '${_im_local_config_home}'" + + local im_command= IM_COMMANDS=() + IM_COMMANDS+=( "identify -version | grep -q -- \"${MY_PV}\"" ) # Verify that we are using version we just built + IM_COMMANDS+=( "identify -list policy" ) # Verify that policy.xml is used + IM_COMMANDS+=( "emake check" ) # Run tests + + for im_command in "${IM_COMMANDS[@]}"; do + eval "${S}"/magick.sh \ + ${im_command} || \ + die "Failed to run \"${im_command}\"" + done +} + +src_install() { + # Ensure documentation installation files and paths with each release! + emake \ + DESTDIR="${D}" \ + DOCUMENTATION_PATH="${EPREFIX}"/usr/share/doc/${PF}/html \ + install + + rm -f "${ED%/}"/usr/share/doc/${PF}/html/{ChangeLog,LICENSE,NEWS.txt} + dodoc {AUTHORS,README}.txt ChangeLog + + if use perl; then + find "${ED}" -type f -name perllocal.pod -exec rm -f {} + + find "${ED}" -depth -mindepth 1 -type d -empty -exec rm -rf {} + + fi + + find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} + + # .la files in parent are not needed, keep plugin .la files + rm "${ED}"/usr/$(get_libdir)/*.la || die + + if use opencl; then + cat <<-EOF > "${T}"/99${PN} + SANDBOX_PREDICT="/dev/nvidiactl:/dev/nvidia-uvm:/dev/ati/card:/dev/dri/card:/dev/dri/card0:/dev/dri/renderD128" + EOF + + insinto /etc/sandbox.d + doins "${T}"/99${PN} #472766 + fi + + insinto /usr/share/${PN} + doins config/*icm +} + +pkg_postinst() { + local _show_policy_xml_notice= + + if [[ -z "${REPLACING_VERSIONS}" ]]; then + # This is a new installation + _show_policy_xml_notice=yes + else + local v + for v in ${REPLACING_VERSIONS}; do + if ! ver_test "${v}" -gt "6.9.10.10-r2"; then + # This is an upgrade + _show_policy_xml_notice=yes + + # Show this elog only once + break + fi + done + fi + + if [[ -n "${_show_policy_xml_notice}" ]]; then + elog "For security reasons, a policy.xml file was installed in /etc/ImageMagick-6" + elog "which will prevent the usage of the following coders by default:" + elog "" + elog " - PS" + elog " - PS2" + elog " - PS3" + elog " - EPS" + elog " - PDF" + elog " - XPS" + fi +} diff --git a/media-gfx/imagemagick/imagemagick-7.0.10.41.ebuild b/media-gfx/imagemagick/imagemagick-7.0.10.41.ebuild new file mode 100644 index 000000000000..ac497e7554ec --- /dev/null +++ b/media-gfx/imagemagick/imagemagick-7.0.10.41.ebuild @@ -0,0 +1,268 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit flag-o-matic libtool perl-functions toolchain-funcs multilib + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://github.com/ImageMagick/ImageMagick.git" + inherit git-r3 + MY_P="imagemagick-9999" +else + MY_PV="$(ver_rs 3 '-')" + MY_P="ImageMagick-${MY_PV}" + SRC_URI="mirror://imagemagick/${MY_P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +fi + +DESCRIPTION="A collection of tools and libraries for many image formats" +HOMEPAGE="https://www.imagemagick.org/" + +LICENSE="imagemagick" +SLOT="0/7.0.10" +IUSE="bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib" +RESTRICT="!test? ( test )" + +REQUIRED_USE="corefonts? ( truetype ) + svg? ( xml ) + test? ( corefonts )" + +RESTRICT="!test? ( test )" + +BDEPEND="virtual/pkgconfig" + +RDEPEND=" + dev-libs/libltdl:0 + bzip2? ( app-arch/bzip2 ) + corefonts? ( media-fonts/corefonts ) + djvu? ( app-text/djvu ) + fftw? ( sci-libs/fftw:3.0 ) + fontconfig? ( media-libs/fontconfig ) + fpx? ( >=media-libs/libfpx-1.3.0-r1 ) + graphviz? ( media-gfx/graphviz ) + heif? ( media-libs/libheif:= ) + jbig? ( >=media-libs/jbigkit-2:= ) + jpeg? ( virtual/jpeg:0 ) + jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) + lcms? ( media-libs/lcms:2= ) + lqr? ( media-libs/liblqr ) + opencl? ( virtual/opencl ) + openexr? ( media-libs/openexr:0= ) + pango? ( x11-libs/pango ) + perl? ( >=dev-lang/perl-5.8.8:0= ) + png? ( media-libs/libpng:0= ) + postscript? ( app-text/ghostscript-gpl ) + raw? ( media-libs/libraw:= ) + svg? ( + gnome-base/librsvg + media-gfx/potrace + ) + tiff? ( media-libs/tiff:0= ) + truetype? ( + media-fonts/urw-fonts + >=media-libs/freetype-2 + ) + webp? ( media-libs/libwebp:0= ) + wmf? ( media-libs/libwmf ) + X? ( + x11-libs/libICE + x11-libs/libSM + x11-libs/libXext + x11-libs/libXt + ) + xml? ( dev-libs/libxml2:= ) + lzma? ( app-arch/xz-utils ) + zlib? ( sys-libs/zlib:= )" + +DEPEND="${RDEPEND} + !media-gfx/graphicsmagick[imagemagick] + X? ( x11-base/xorg-proto )" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + default + + # Apply hardening #664236 + cp "${FILESDIR}"/policy-hardening.snippet "${S}" || die + sed -i -e '/^$/ { + r policy-hardening.snippet + d + }' \ + config/policy.xml || \ + die "Failed to apply hardening of policy.xml" + einfo "policy.xml hardened" + + elibtoolize # for Darwin modules + + # For testsuite, see https://bugs.gentoo.org/show_bug.cgi?id=500580#c3 + local ati_cards mesa_cards nvidia_cards render_cards + shopt -s nullglob + ati_cards=$(echo -n /dev/ati/card* | sed 's/ /:/g') + if test -n "${ati_cards}"; then + addpredict "${ati_cards}" + fi + mesa_cards=$(echo -n /dev/dri/card* | sed 's/ /:/g') + if test -n "${mesa_cards}"; then + addpredict "${mesa_cards}" + fi + nvidia_cards=$(echo -n /dev/nvidia* | sed 's/ /:/g') + if test -n "${nvidia_cards}"; then + addpredict "${nvidia_cards}" + fi + render_cards=$(echo -n /dev/dri/renderD128* | sed 's/ /:/g') + if test -n "${render_cards}"; then + addpredict "${render_cards}" + fi + shopt -u nullglob + addpredict /dev/nvidiactl +} + +src_configure() { + local depth=16 + use q8 && depth=8 + use q32 && depth=32 + + local openmp=disable + use openmp && { tc-has-openmp && openmp=enable; } + + use perl && perl_check_env + + [[ ${CHOST} == *-solaris* ]] && append-ldflags -lnsl -lsocket + + local myeconfargs=( + $(use_enable static-libs static) + $(use_enable hdri) + $(use_enable opencl) + --with-threads + --with-modules + --with-quantum-depth=${depth} + $(use_with cxx magick-plus-plus) + $(use_with perl) + --with-perl-options='INSTALLDIRS=vendor' + --with-gs-font-dir="${EPREFIX}"/usr/share/fonts/urw-fonts + $(use_with bzip2 bzlib) + $(use_with X x) + $(use_with zlib) + --without-autotrace + $(use_with postscript dps) + $(use_with djvu) + --with-dejavu-font-dir="${EPREFIX}"/usr/share/fonts/dejavu + $(use_with fftw) + $(use_with fpx) + $(use_with fontconfig) + $(use_with truetype freetype) + $(use_with postscript gslib) + $(use_with graphviz gvc) + $(use_with heif heic) + $(use_with jbig) + $(use_with jpeg) + $(use_with jpeg2k openjp2) + --without-jxl + $(use_with lcms) + $(use_with lqr) + $(use_with lzma) + $(use_with openexr) + $(use_with pango) + $(use_with png) + $(use_with raw) + $(use_with svg rsvg) + $(use_with tiff) + $(use_with webp) + $(use_with corefonts windows-font-dir "${EPREFIX}"/usr/share/fonts/corefonts) + $(use_with wmf) + $(use_with xml) + --${openmp}-openmp + --with-gcc-arch=no-automagic + ) + CONFIG_SHELL=$(type -P bash) econf "${myeconfargs[@]}" +} + +src_test() { + # Install default (unrestricted) policy in $HOME for test suite #664238 + local _im_local_config_home="${HOME}/.config/ImageMagick" + mkdir -p "${_im_local_config_home}" || \ + die "Failed to create IM config dir in '${_im_local_config_home}'" + cp "${FILESDIR}"/policy.test.xml "${_im_local_config_home}/policy.xml" || \ + die "Failed to install default blank policy.xml in '${_im_local_config_home}'" + + local im_command= IM_COMMANDS=() + if [[ ${PV} == "9999" ]] ; then + IM_COMMANDS+=( "magick -version" ) # Show version we are using -- cannot verify because of live ebuild + else + IM_COMMANDS+=( "magick -version | grep -q -- \"${MY_PV}\"" ) # Verify that we are using version we just built + fi + IM_COMMANDS+=( "magick -list policy" ) # Verify that policy.xml is used + IM_COMMANDS+=( "emake check" ) # Run tests + + for im_command in "${IM_COMMANDS[@]}"; do + eval "${S}"/magick.sh \ + ${im_command} || \ + die "Failed to run \"${im_command}\"" + done +} + +src_install() { + # Ensure documentation installation files and paths with each release! + emake \ + DESTDIR="${D}" \ + DOCUMENTATION_PATH="${EPREFIX}"/usr/share/doc/${PF}/html \ + install + + rm -f "${ED}"/usr/share/doc/${PF}/html/{ChangeLog,LICENSE,NEWS.txt} + dodoc {AUTHORS,README}.txt ChangeLog + + if use perl; then + find "${ED}" -type f -name perllocal.pod -exec rm -f {} + + find "${ED}" -depth -mindepth 1 -type d -empty -exec rm -rf {} + + fi + + find "${ED}" -name '*.la' -exec sed -i -e "/^dependency_libs/s:=.*:='':" {} + + # .la files in parent are not needed, keep plugin .la files + rm "${ED}"/usr/$(get_libdir)/*.la || die + + if use opencl; then + cat <<-EOF > "${T}"/99${PN} + SANDBOX_PREDICT="/dev/nvidiactl:/dev/nvidia-uvm:/dev/ati/card:/dev/dri/card:/dev/dri/card0:/dev/dri/renderD128" + EOF + + insinto /etc/sandbox.d + doins "${T}"/99${PN} #472766 + fi + + insinto /usr/share/${PN} + doins config/*icm +} + +pkg_postinst() { + local _show_policy_xml_notice= + + if [[ -z "${REPLACING_VERSIONS}" ]]; then + # This is a new installation + _show_policy_xml_notice=yes + else + local v + for v in ${REPLACING_VERSIONS}; do + if ! ver_test "${v}" -gt "7.0.8.10-r2"; then + # This is an upgrade + _show_policy_xml_notice=yes + + # Show this elog only once + break + fi + done + fi + + if [[ -n "${_show_policy_xml_notice}" ]]; then + elog "For security reasons, a policy.xml file was installed in /etc/ImageMagick-7" + elog "which will prevent the usage of the following coders by default:" + elog "" + elog " - PS" + elog " - PS2" + elog " - PS3" + elog " - EPS" + elog " - PDF" + elog " - XPS" + fi +} diff --git a/media-gfx/iscan/Manifest b/media-gfx/iscan/Manifest index 20ecfd545e75..740a69344d03 100644 --- a/media-gfx/iscan/Manifest +++ b/media-gfx/iscan/Manifest @@ -1,4 +1,3 @@ -DIST imagescan_3.62.0.orig.tar.gz 12650003 BLAKE2B 732283eb8370192fdd0fba8939bc81e277a7a227b024f14856b8d3d5c562b7320c7b40aa48cfa627e23dc654544c9bac27d35add5e10bf0ca65ab0279290b90c SHA512 3b6188013d162c605a3ce1bcac9e5a7b16b1af6363bc7ef4b257aed1c0d3e3dfd402a048ec699b6b6cc42883d0b26f50f0c6f1bd0ddc917baed4ce8902a9d8fa DIST imagescan_3.63.0.orig.tar.gz 12776113 BLAKE2B d1a9f1d60ba4a2239c6ed74f7f9e0da078e2743e78e0abb67a69506bf90ac35b069f84b5a092a6eb8fd73f60eb668e78b4c7fae56b3a65b6b3d8600f082c064a SHA512 3c9b18e630d6fb1c042244542675e89a8b467469d7212ab684f72100810d1f7d0ec16d13c472a83ca05a3a4fc44e366f692a36cd6b0e81c9a332dd3b40de9535 DIST iscan_2.30.4-2.tar.gz 1236167 BLAKE2B 598e55aa7099f7973b38f5c3227415c8ddfa7e8c645521981b4e8979047ab692427f5c1719fd83fe0635f2d4604f32f0baff8542f3e1a333298799c4cad7b980 SHA512 b12f374ff8ee1e1879fc6dbc579de39d7bcd4777ec7ad6e4345046f77b4ec13ae45ebdc2803d6907bc2747776aa7e32c313866138c7b8c7bcb53110a214154d2 DIST userg_revQ_e.pdf 627189 BLAKE2B ff57871c58dc541e30d65127bd8f4cc2a20ec5341c1d0914116f7ec4ae002d896853b99488eec71e5f8cb150e6b63d353efb9be11977de26d017701bc051014a SHA512 b09d5143855a759e0fa3e74794762566b6fbf734642f9d7f712e5f2f20e3dce6b830465fd65f83f9cc368292ce7a2c0cec709b0eba6356d95e1ba5114b3348fc diff --git a/media-gfx/iscan/iscan-3.62.0.ebuild b/media-gfx/iscan/iscan-3.62.0.ebuild deleted file mode 100644 index 92b606786000..000000000000 --- a/media-gfx/iscan/iscan-3.62.0.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools desktop flag-o-matic udev xdg-utils - -DESCRIPTION="EPSON Image Scan v3 for Linux" -HOMEPAGE="https://support.epson.net/linux/en/imagescanv3.php https://gitlab.com/utsushi/utsushi" -SRC_URI="https://support.epson.net/linux/src/scanner/imagescanv3/common/imagescan_${PV}.orig.tar.gz" - -LICENSE="GPL-3+" -SLOT="0" -IUSE="graphicsmagick gui" -KEYWORDS="~amd64 ~x86" - -BDEPEND="virtual/pkgconfig" -DEPEND=" - dev-libs/boost:= - media-gfx/sane-backends - media-libs/tiff - virtual/jpeg - virtual/libusb:1 - graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) - !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) - gui? ( dev-cpp/gtkmm:2.4 ) -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/utsushi-0.$(ver_cut 2-3)" - -PATCHES=( - "${FILESDIR}"/${PN}-3.61.0-ijg-libjpeg.patch - "${FILESDIR}"/${PN}-3.61.0-imagemagick-7.patch - "${FILESDIR}"/${PN}-3.62.0-gcc-10.patch - "${FILESDIR}"/${PN}-3.62.0-boost-1.73.patch -) - -src_prepare() { - default - - # Remove vendored libraries - rm -r upstream/boost || die - # Workaround for deprecation warnings: - # https://gitlab.com/utsushi/utsushi/issues/90 - sed -e 's|=-Werror|="-Werror -Wno-error=deprecated-declarations"|g' -i configure.ac || die - eautoreconf -} - -src_configure() { - # Workaround for: - # /usr/lib64/utsushi/libutsushi.so.0: undefined symbol: libcnx_usb_LTX_factory - append-ldflags $(no-as-needed) - # https://bugs.gentoo.org/720994 - append-ldflags -pthread - local myconf=( - $(use_with gui gtkmm) - --enable-sane-config - --enable-udev-config - --with-boost=yes - --with-jpeg - --with-magick=$(usex graphicsmagick GraphicsMagick ImageMagick) - --with-magick-pp=$(usex graphicsmagick GraphicsMagick ImageMagick) - --with-sane - --with-tiff - --with-udev-confdir="$(get_udevdir)" - ) - econf "${myconf[@]}" -} - -src_install() { - default - dodoc lib/devices.conf - find "${ED}" -name '*.la' -delete || die - if use gui; then - newicon -s scalable doc/icon.svg "${PN}".svg - make_desktop_entry utsushi "Image Scan" - fi -} - -pkg_postinst() { - use gui && xdg_icon_cache_update - elog "If you encounter problems with media-gfx/xsane when scanning (e.g., bad resolution)," - elog "please try the built-in GUI and kde-misc/skanlite first before reporting bugs." -} - -pkg_postrm() { - use gui && xdg_icon_cache_update -} diff --git a/media-gfx/openscad/openscad-2019.05-r2.ebuild b/media-gfx/openscad/openscad-2019.05-r2.ebuild deleted file mode 100644 index 7b1bffdcad6e..000000000000 --- a/media-gfx/openscad/openscad-2019.05-r2.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit elisp-common qmake-utils xdg - -SITEFILE="50${PN}-gentoo.el" - -DESCRIPTION="The Programmers Solid 3D CAD Modeller" -HOMEPAGE="https://www.openscad.org/" -SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.src.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="emacs" - -PATCHES=( - "${FILESDIR}/${PN}-2019.05_fix-boost-1.72.0-build.patch" -) - -# FIXME: add optional lib3mf -RDEPEND=" - dev-cpp/eigen:3 - dev-libs/boost:= - dev-libs/double-conversion:= - dev-libs/glib:2 - dev-libs/gmp:0= - dev-libs/hidapi - dev-libs/libspnav - dev-libs/libzip:= - dev-libs/mpfr:0= - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtdbus:5 - dev-qt/qtgui:5[-gles2-only] - dev-qt/qtmultimedia:5 - dev-qt/qtnetwork:5 - dev-qt/qtopengl:5 - dev-qt/qtwidgets:5 - media-gfx/opencsg - media-libs/fontconfig - media-libs/freetype - >=media-libs/glew-2.0.0:0= - media-libs/harfbuzz:= - sci-mathematics/cgal:= - >=x11-libs/qscintilla-2.10.3:= - emacs? ( >=app-editors/emacs-23.1:* ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - sys-devel/bison - sys-devel/flex - virtual/pkgconfig -" - -src_prepare() { - default - - # fix path prefix - sed -i "s/\/usr\/local/\/usr/g" ${PN}.pro || die -} - -src_configure() { - eqmake5 "${PN}.pro" -} - -src_compile() { - default - - if use emacs ; then - elisp-compile contrib/*.el - fi -} - -src_install() { - emake install INSTALL_ROOT="${D}" - - if use emacs; then - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - elisp-install ${PN} contrib/*.el contrib/*.elc - fi - - einstalldocs -} diff --git a/media-gfx/openscad/openscad-2019.05-r3.ebuild b/media-gfx/openscad/openscad-2019.05-r3.ebuild index 359b6566b45c..e30ebab411ac 100644 --- a/media-gfx/openscad/openscad-2019.05-r3.ebuild +++ b/media-gfx/openscad/openscad-2019.05-r3.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.src.tar.gz - LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="ccache emacs" RESTRICT="test" diff --git a/media-gfx/xdot/Manifest b/media-gfx/xdot/Manifest index 21627c237152..cd71aba9c7f0 100644 --- a/media-gfx/xdot/Manifest +++ b/media-gfx/xdot/Manifest @@ -1 +1,2 @@ DIST xdot-1.1.tar.gz 134215 BLAKE2B e241a4fb1ec69a8613f7813dc159761e6bffb82ea9f58876287d01946f4c93e66e5eef66e6844abb7738979412c2c7d2d26f76bc0563ad0c3c8550d9e8023b47 SHA512 d67c45c8c071013551f79d671a21ce546b680fac5997ba9631a882ffa3c44c15a69949643ed5e8211417006152575a1d99450ccfb6062427521d1e2bc0814f55 +DIST xdot-1.2.tar.gz 136057 BLAKE2B 484a3513ec3d67dbc6e167f171e7f70977ba2472766f25aa7cc088235f99470bfac5fac67368ea53b633320752a928634840ff3dcccc6b96795d3b7c203db922 SHA512 b4d3b15114b982c7c38cc71c0602f6d1ba9874c7315c2b8c4a8a48bf7674e9b38bf19a0d4a2d319acc9a29cf8f177a651d4e213761e88b0b3cb26e95e8a92dda diff --git a/media-gfx/xdot/xdot-1.2.ebuild b/media-gfx/xdot/xdot-1.2.ebuild new file mode 100644 index 000000000000..0b806d655849 --- /dev/null +++ b/media-gfx/xdot/xdot-1.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +PYTHON_COMPAT=( python3_{6,7,8,9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend + +MY_PN=xdot.py +EGIT_REPO_URI="https://github.com/jrfonseca/${MY_PN}" + +if [[ ${PV} = 9999* ]]; then + GIT_ECLASS="git-r3" + SRC_URI="" +else + KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86" + MY_P="${MY_PN}-${PV}" + S="${WORKDIR}/${MY_P}" + SRC_URI="https://github.com/jrfonseca/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +fi + +inherit ${GIT_ECLASS} distutils-r1 + +DESCRIPTION="Interactive viewer for Graphviz dot files" +HOMEPAGE="https://github.com/jrfonseca/xdot.py" + +LICENSE="LGPL-2+" +SLOT="0" + +DEPEND=" + dev-python/pycairo[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + media-gfx/graphviz +" +RDEPEND="${DEPEND}" diff --git a/media-gfx/xdot/xdot-9999.ebuild b/media-gfx/xdot/xdot-9999.ebuild index 6c4786522753..0b806d655849 100644 --- a/media-gfx/xdot/xdot-9999.ebuild +++ b/media-gfx/xdot/xdot-9999.ebuild @@ -3,6 +3,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7,8,9} ) +DISTUTILS_USE_SETUPTOOLS=rdepend MY_PN=xdot.py EGIT_REPO_URI="https://github.com/jrfonseca/${MY_PN}" @@ -28,20 +29,6 @@ SLOT="0" DEPEND=" dev-python/pycairo[${PYTHON_USEDEP}] dev-python/pygobject:3[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] media-gfx/graphviz " RDEPEND="${DEPEND}" - -src_unpack() { - default - [[ $PV = 9999* ]] && git-r3_src_unpack -} - -src_prepare() { - eapply_user - - # Don't require graphviz python(2) supprt, which xdot doesn't use. This allows xdot to support python3. - # For more info, see https://bugs.gentoo.org/643126 - sed -i "/install_requires=\['graphviz'\],/d" setup.py || die -} diff --git a/media-libs/Manifest.gz b/media-libs/Manifest.gz index 00530647a28e..1603767c3340 100644 Binary files a/media-libs/Manifest.gz and b/media-libs/Manifest.gz differ diff --git a/media-libs/glm/glm-0.9.9.8-r1.ebuild b/media-libs/glm/glm-0.9.9.8-r1.ebuild index 23b762f4160f..74788d45b6b9 100644 --- a/media-libs/glm/glm-0.9.9.8-r1.ebuild +++ b/media-libs/glm/glm-0.9.9.8-r1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/g-truc/glm/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="|| ( HappyBunny MIT )" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86" IUSE="test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx cpu_flags_x86_avx2" RESTRICT="!test? ( test )" diff --git a/media-libs/harfbuzz/Manifest b/media-libs/harfbuzz/Manifest index de0e5be84a74..e42f8b17308e 100644 --- a/media-libs/harfbuzz/Manifest +++ b/media-libs/harfbuzz/Manifest @@ -1,5 +1,2 @@ -DIST harfbuzz-2.6.5.tar.xz 8510596 BLAKE2B e495fbba7e0cb58918afeb6beb3ebcf936be896ca606cef27dcbfb9b5f10add144f7fcaa50dec35a9f909d7e87deebadb7c9e6bbbadcbd799effd96076786cde SHA512 ae66211f9b4233c1da4b22b703ab4912f684390294c5c88113e6c927d5aeda8960da3ff607a7c7be5968d9fbb5a95b1f6933070d0aab2aa442a3ec8a112cd16f DIST harfbuzz-2.6.7.tar.xz 9001936 BLAKE2B bd3a195506253a1446e877c35c067cc874826fc6fdae3bc3a9bfd2b7682ce12de7e6d7fd4ebe03b8178d8b678c06aa2d71715b27236347224a68e4d98a72039e SHA512 6fdd6e0952a73e1949349aa5416ef8fb3fc351b15c95be4fe1f341b111159fe58113b73a334db2697f4e3aaef5a761bd8f1d8964514406cad40f9862768d59de -DIST harfbuzz-2.6.8.tar.xz 8976516 BLAKE2B 46401ae06ec70172621d2aa354901f03173a273abdb0db909332946643e82b4286be690ac717a29304e9db121dd7f693b4ce19522de772f5d140986d6333e7ce SHA512 651b23d7d4fab6fef472ee57db39bbaebc31c2f40ea3a482c1499ad1a7b549b86a2bccbe9da191c8e9ecdf464191dd3c9a7485546b51695ad8ab3c0329732d9d -DIST harfbuzz-2.7.1.tar.gz 16603949 BLAKE2B 4c1792dfb8f2c777efb2f01dfc7e4642bda507813d21db5beee467b1368e991db0f0c3f903662da0a267e7af9a6c30bb258fa057e42d3096f9f8d23ccf4bac9e SHA512 a04864e0f5e523e9d025f066e0850afdfdf53acc9881c0284034ab4384088b118551a899ae5e77bbd821c344b97fb5e0a3d4506bbb812eb0019080be7b3f75f1 DIST harfbuzz-2.7.2.tar.gz 16605557 BLAKE2B 246ab64e29afcadc692b57bad84acdea1f9200a63f6f8b1519d12b8515ec65dc45e2edf3abdde473b71364427a689d92ce2ee25c514edf4b1e680dd423d774ee SHA512 2eeb198dab1ed1cc7d10c3890293ff40e9f37372413877a5bd44d66e88d8460a81f51cbe71c328b1300f542ca8de3269749d1d01d0c324c8b95a9c038fbe1521 diff --git a/media-libs/harfbuzz/harfbuzz-2.6.5.ebuild b/media-libs/harfbuzz/harfbuzz-2.6.5.ebuild deleted file mode 100644 index 63f6e1fd3798..000000000000 --- a/media-libs/harfbuzz/harfbuzz-2.6.5.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit autotools flag-o-matic libtool multilib-minimal python-any-r1 xdg-utils - -DESCRIPTION="An OpenType text shaping engine" -HOMEPAGE="https://www.freedesktop.org/wiki/Software/HarfBuzz" - -if [[ ${PV} = 9999 ]] ; then - EGIT_REPO_URI="https://github.com/harfbuzz/harfbuzz.git" - inherit git-r3 -else - SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -fi - -LICENSE="Old-MIT ISC icu" -SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416 - -IUSE="+cairo debug +glib +graphite icu +introspection static-libs test +truetype" -RESTRICT="!test? ( test )" -REQUIRED_USE="introspection? ( glib )" - -RDEPEND=" - cairo? ( x11-libs/cairo:= ) - glib? ( >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}] ) - graphite? ( >=media-gfx/graphite2-1.2.1:=[${MULTILIB_USEDEP}] ) - icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] ) - introspection? ( >=dev-libs/gobject-introspection-1.34:= ) - truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND} - test? ( ${PYTHON_DEPS} ) -" -BDEPEND=" - dev-util/gtk-doc-am - virtual/pkgconfig -" -# eautoreconf requires gobject-introspection-common -# ragel needed if regenerating *.hh files from *.rl -if [[ ${PV} = 9999 ]] ; then - DEPEND+=" - >=dev-libs/gobject-introspection-common-1.34 - dev-util/ragel - " -fi - -pkg_setup() { - use test && python-any-r1_pkg_setup - if ! use debug ; then - append-cppflags -DHB_NDEBUG - fi -} - -src_prepare() { - default - - xdg_environment_reset - - if [[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] ; then - # on Darwin/Solaris we need to link with g++, like automake defaults - # to, but overridden by upstream because on Linux this is not - # necessary, bug #449126 - sed -i \ - -e 's/\/CXXLINK/' \ - src/Makefile.am || die - sed -i \ - -e '/libharfbuzz_la_LINK = /s/\/CXXLINK/' \ - src/Makefile.in || die - sed -i \ - -e '/AM_V_CCLD/s/\/CXXLINK/' \ - test/api/Makefile.in || die - fi - - sed -i \ - -e 's:tests/macos.tests::' \ - test/shaping/data/in-house/Makefile.sources \ - test/shaping/data/in-house/Makefile.in || die # bug 726120 - - eautoreconf - elibtoolize # for Solaris - - # bug 618772 - append-cxxflags -std=c++14 -} - -multilib_src_configure() { - # harfbuzz-gobject only used for instrospection, bug #535852 - local myeconfargs=( - --without-coretext - --without-fontconfig #609300 - --without-uniscribe - $(use_enable static-libs static) - $(multilib_native_use_with cairo) - $(use_with glib) - $(use_with introspection gobject) - $(use_with graphite graphite2) - $(use_with icu) - $(multilib_native_use_enable introspection) - $(use_with truetype freetype) - ) - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" - - if multilib_is_native_abi; then - ln -s "${S}"/docs/html docs/html || die - fi -} - -multilib_src_install_all() { - einstalldocs - find "${ED}" -type f -name "*.la" -delete || die -} diff --git a/media-libs/harfbuzz/harfbuzz-2.6.8.ebuild b/media-libs/harfbuzz/harfbuzz-2.6.8.ebuild deleted file mode 100644 index bdc327af67b0..000000000000 --- a/media-libs/harfbuzz/harfbuzz-2.6.8.ebuild +++ /dev/null @@ -1,116 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit autotools flag-o-matic libtool multilib-minimal python-any-r1 xdg-utils - -DESCRIPTION="An OpenType text shaping engine" -HOMEPAGE="https://www.freedesktop.org/wiki/Software/HarfBuzz" - -if [[ ${PV} = 9999 ]] ; then - EGIT_REPO_URI="https://github.com/harfbuzz/harfbuzz.git" - inherit git-r3 -else - SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -fi - -LICENSE="Old-MIT ISC icu" -SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416 - -IUSE="+cairo debug +glib +graphite icu +introspection static-libs test +truetype" -RESTRICT="!test? ( test )" -REQUIRED_USE="introspection? ( glib )" - -RDEPEND=" - cairo? ( x11-libs/cairo:= ) - glib? ( >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}] ) - graphite? ( >=media-gfx/graphite2-1.2.1:=[${MULTILIB_USEDEP}] ) - icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] ) - introspection? ( >=dev-libs/gobject-introspection-1.34:= ) - truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND} - test? ( ${PYTHON_DEPS} ) -" -BDEPEND=" - dev-util/gtk-doc-am - virtual/pkgconfig -" -# eautoreconf requires gobject-introspection-common -# ragel needed if regenerating *.hh files from *.rl -if [[ ${PV} = 9999 ]] ; then - DEPEND+=" - >=dev-libs/gobject-introspection-common-1.34 - dev-util/ragel - " -fi - -pkg_setup() { - use test && python-any-r1_pkg_setup - if ! use debug ; then - append-cppflags -DHB_NDEBUG - fi -} - -src_prepare() { - default - - xdg_environment_reset - - if [[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] ; then - # on Darwin/Solaris we need to link with g++, like automake defaults - # to, but overridden by upstream because on Linux this is not - # necessary, bug #449126 - sed -i \ - -e 's/\/CXXLINK/' \ - src/Makefile.am || die - sed -i \ - -e '/libharfbuzz_la_LINK = /s/\/CXXLINK/' \ - src/Makefile.in || die - sed -i \ - -e '/AM_V_CCLD/s/\/CXXLINK/' \ - test/api/Makefile.in || die - fi - - sed -i \ - -e 's:tests/macos.tests::' \ - test/shaping/data/in-house/Makefile.sources \ - test/shaping/data/in-house/Makefile.in || die # bug 726120 - - eautoreconf - elibtoolize # for Solaris - - # bug 618772 - append-cxxflags -std=c++14 -} - -multilib_src_configure() { - # harfbuzz-gobject only used for instrospection, bug #535852 - local myeconfargs=( - --without-coretext - --without-fontconfig #609300 - --without-uniscribe - $(use_enable static-libs static) - $(multilib_native_use_with cairo) - $(use_with glib) - $(use_with introspection gobject) - $(use_with graphite graphite2) - $(use_with icu) - $(multilib_native_use_enable introspection) - $(use_with truetype freetype) - ) - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" - - if multilib_is_native_abi; then - ln -s "${S}"/docs/html docs/html || die - fi -} - -multilib_src_install_all() { - einstalldocs - find "${ED}" -type f -name "*.la" -delete || die -} diff --git a/media-libs/harfbuzz/harfbuzz-2.7.1.ebuild b/media-libs/harfbuzz/harfbuzz-2.7.1.ebuild deleted file mode 100644 index d8d692333627..000000000000 --- a/media-libs/harfbuzz/harfbuzz-2.7.1.ebuild +++ /dev/null @@ -1,104 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit flag-o-matic meson multilib-minimal python-any-r1 xdg-utils - -DESCRIPTION="An OpenType text shaping engine" -HOMEPAGE="https://www.freedesktop.org/wiki/Software/HarfBuzz" - -if [[ ${PV} = 9999 ]] ; then - EGIT_REPO_URI="https://github.com/harfbuzz/harfbuzz.git" - 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 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -fi - -LICENSE="Old-MIT ISC icu" -SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416 - -IUSE="+cairo debug doc +glib +graphite icu +introspection static-libs test +truetype" -RESTRICT="!test? ( test )" -REQUIRED_USE="introspection? ( glib )" - -RDEPEND=" - cairo? ( x11-libs/cairo:= ) - glib? ( >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}] ) - graphite? ( >=media-gfx/graphite2-1.2.1:=[${MULTILIB_USEDEP}] ) - icu? ( >=dev-libs/icu-51.2-r1:=[${MULTILIB_USEDEP}] ) - introspection? ( >=dev-libs/gobject-introspection-1.34:= ) - truetype? ( >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}] ) -" -DEPEND="${RDEPEND} - >=dev-libs/gobject-introspection-common-1.34 - test? ( ${PYTHON_DEPS} ) -" -BDEPEND=" - virtual/pkgconfig - doc? ( dev-util/gtk-doc ) - introspection? ( dev-util/glib-utils ) -" - -pkg_setup() { - use test && python-any-r1_pkg_setup - if ! use debug ; then - append-cppflags -DHB_NDEBUG - fi -} - -src_prepare() { - default - - xdg_environment_reset - - sed -i \ - -e 's:tests/macos.tests::' \ - test/shaping/data/in-house/Makefile.sources \ - || die # bug 726120 - - # bug 618772 - append-cxxflags -std=c++14 -} - -meson_multilib_native_feature() { - if multilib_is_native_abi && use "$1" ; then - echo "enabled" - else - echo "disabled" - fi -} - -multilib_src_configure() { - # harfbuzz-gobject only used for instrospection, bug #535852 - local emesonargs=( - -Dcairo="$(meson_multilib_native_feature cairo)" - -Dcoretext="disabled" - -Ddocs="$(meson_multilib_native_feature doc)" - -Dfontconfig="disabled" #609300 - -Dintrospection="$(meson_multilib_native_feature introspection)" - -Dstatic="$(usex static-libs true false)" - $(meson_feature glib) - $(meson_feature graphite) - $(meson_feature icu) - $(meson_feature introspection gobject) - $(meson_feature test tests) - $(meson_feature truetype freetype) - ) - meson_src_configure -} - -multilib_src_compile() { - meson_src_compile -} - -multilib_src_install() { - meson_src_install -} - -multilib_src_install_all() { - einstalldocs -} diff --git a/media-libs/lib3mf/lib3mf-1.8.1.ebuild b/media-libs/lib3mf/lib3mf-1.8.1.ebuild index c703e74d4fa4..6a9e8bdc83aa 100644 --- a/media-libs/lib3mf/lib3mf-1.8.1.ebuild +++ b/media-libs/lib3mf/lib3mf-1.8.1.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/3MFConsortium/$PN/archive/v$PV.tar.gz -> $P.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="doc test" RESTRICT="!test? ( test )" diff --git a/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild b/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild index 4d90610679df..932b6317fc81 100644 --- a/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild +++ b/media-libs/libdvdnav/libdvdnav-6.1.0.ebuild @@ -12,7 +12,7 @@ if [[ ${PV} = 9999 ]]; then EGIT_REPO_URI="https://code.videolan.org/videolan/libdvdnav.git" else SRC_URI="https://downloads.videolan.org/pub/videolan/libdvdnav/${PV}/${P}.tar.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" fi LICENSE="GPL-2" diff --git a/media-libs/libexif/libexif-0.6.22_p20201105.ebuild b/media-libs/libexif/libexif-0.6.22_p20201105.ebuild index 1953646374cb..1c4bfaf15476 100644 --- a/media-libs/libexif/libexif-0.6.22_p20201105.ebuild +++ b/media-libs/libexif/libexif-0.6.22_p20201105.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}-${COMMIT}" LICENSE="LGPL-2+" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="doc nls static-libs" RDEPEND="nls? ( virtual/libintl )" diff --git a/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild b/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild index b4e1c4ee1c0e..860562eafdb9 100644 --- a/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild +++ b/media-libs/sdl2-gfx/sdl2-gfx-1.0.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -11,7 +11,7 @@ SRC_URI="http://www.ferzkopp.net/Software/SDL2_gfx/${MY_P}.tar.gz" LICENSE="ZLIB" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="amd64 ~ppc64 x86" IUSE="doc cpu_flags_x86_mmx static-libs" DEPEND=">=media-libs/libsdl2-2.0.1-r1[video,${MULTILIB_USEDEP}]" diff --git a/media-libs/webvfx/Manifest b/media-libs/webvfx/Manifest deleted file mode 100644 index a310ccc74675..000000000000 --- a/media-libs/webvfx/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST webvfx-1.2.0.txz 1178880 BLAKE2B 7ef08f791b291897f39e170f0572db2fb98c78bced9ed3560b1b94cfe48bedf0af3af5e57381bd039f6cf3dc1d558fb07a6a959b28f1c6a380d0dd0f1bfc64fd SHA512 84473df90553d2d85e1860eb98326fc65ebca02f1cbd8415b83e02ea032442d2aa42c000e366b6ca217bb59526b2b4409d85b169cc7e60d86443b79a1ff5614a diff --git a/media-libs/webvfx/metadata.xml b/media-libs/webvfx/metadata.xml deleted file mode 100644 index 3ca5303fe87e..000000000000 --- a/media-libs/webvfx/metadata.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - reagentoo@gmail.com - Dmitry Baranov - - - proxy-maint@gentoo.org - Proxy Maintainers - - - mltframework/webvfx - - - Install doxygen developer documentation - - diff --git a/media-libs/webvfx/webvfx-1.2.0.ebuild b/media-libs/webvfx/webvfx-1.2.0.ebuild deleted file mode 100644 index 7ad5951c5e01..000000000000 --- a/media-libs/webvfx/webvfx-1.2.0.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit flag-o-matic qmake-utils toolchain-funcs - -DESCRIPTION="Video effects library based on web technologies" -HOMEPAGE="https://github.com/mltframework/webvfx/" -SRC_URI="https://github.com/mltframework/${PN}/releases/download/${PV}/${P}.txz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -BDEPEND=" - doc? ( app-doc/doxygen ) -" -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtdeclarative:5 - dev-qt/qtgui:5 - dev-qt/qtopengl:5 - dev-qt/qtquickcontrols:5[widgets] - dev-qt/qtwebkit:5 - dev-qt/qtwidgets:5 - >=media-libs/mlt-6.20.0 - virtual/opengl -" -DEPEND="${RDEPEND} - dev-qt/qtnetwork:5 -" - -src_prepare() { - default - - find -name "*.pro" -exec \ - sed -i -e "s/\(system.*\)pkg-config/\1$(tc-getPKG_CONFIG)/" {} + || die - - sed -i -e "s/\(target.*path.*PREFIX.*\)lib/\1$(get_libdir)/" \ - webvfx/webvfx.pro || die - - sed -i -e "s/PROJECT_NUMBER=\`.*\`/PROJECT_NUMBER=${PV}/" \ - all.pro || die -} - -src_configure() { - append-cxxflags -Wno-deprecated-declarations - - eqmake5 PREFIX="${EPREFIX}/usr" -} - -src_compile() { - emake - use doc && emake doxydoc -} - -src_install() { - emake INSTALL_ROOT="${D}" install - - use doc && local HTML_DOCS=( doxydoc/. ) - einstalldocs -} diff --git a/media-plugins/Manifest.gz b/media-plugins/Manifest.gz index 4517d7dd6b08..0bb558f0c61f 100644 Binary files a/media-plugins/Manifest.gz and b/media-plugins/Manifest.gz differ diff --git a/media-plugins/kodi-pvr-mythtv/Manifest b/media-plugins/kodi-pvr-mythtv/Manifest index d27826481c8d..1a6dace3ae59 100644 --- a/media-plugins/kodi-pvr-mythtv/Manifest +++ b/media-plugins/kodi-pvr-mythtv/Manifest @@ -1 +1,2 @@ DIST kodi-pvr-mythtv-7.1.1.tar.gz 706444 BLAKE2B 130dc700cbc3d95e5d5332caf5718ef965442f0e42a6922c000753da63a6d679352560ddb5f6ced03f993f12fecbd1e4e8d42618cb5110d65b5bf425d32d79c5 SHA512 9154924e7c433a8d0aa6c82a8e6b638310707d1df0607a19da7cc97431e66a38f11ab2d5e1c95ec05caf37f4a32ddce54efa4e94f07d19d2264422d38c4e6bad +DIST kodi-pvr-mythtv-7.2.0.tar.gz 706467 BLAKE2B c426f9f040cc35e13ebb103cd93b4abc64ff101b50f84fe59c2582252c067a4a36b4052adeb7be294ab7d78f3fa5626cd3fd234445f70474bf9248e2fbe28a0f SHA512 30a6cbe8adb5783553fac5869cbb4cda8b78637acffe5a43d06a89115d39f0391492f1c69ecd44e4eaf79d3b85b421d4a4851ef8433f3faa1d9d19c8348f5003 diff --git a/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-7.2.0.ebuild b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-7.2.0.ebuild new file mode 100644 index 000000000000..3e6fb192fd68 --- /dev/null +++ b/media-plugins/kodi-pvr-mythtv/kodi-pvr-mythtv-7.2.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake kodi-addon + +DESCRIPTION="MythTV PVR for Kodi" +HOMEPAGE="https://github.com/janbar/pvr.mythtv" +SRC_URI="" + +case ${PV} in +9999) + SRC_URI="" + EGIT_REPO_URI="https://github.com/janbar/pvr.mythtv.git" + inherit git-r3 + ;; +*) + CODENAME="Matrix" + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/janbar/pvr.mythtv/archive/${PV}-${CODENAME}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/pvr.mythtv-${PV}-${CODENAME}" + ;; +esac + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND=" + sys-libs/zlib + =media-tv/kodi-19* + " +RDEPEND=" + ${DEPEND} + " diff --git a/media-radio/KochMorse/metadata.xml b/media-radio/KochMorse/metadata.xml index 9db9e59f2d8e..c32e524da1f9 100644 --- a/media-radio/KochMorse/metadata.xml +++ b/media-radio/KochMorse/metadata.xml @@ -1,14 +1,7 @@ - - gentoo@seichter.de - Ralph Seichter - - - proxy-maint@gentoo.org - Proxy Maintainers - + KochMorse is a simple morse-code tutor using the Koch method. It is written in C++ and uses Qt5 for the graphical user interface. diff --git a/media-radio/Manifest.gz b/media-radio/Manifest.gz index f4642ce662e2..eff16968ed36 100644 Binary files a/media-radio/Manifest.gz and b/media-radio/Manifest.gz differ diff --git a/media-sound/Manifest.gz b/media-sound/Manifest.gz index 26b6a8c41498..10fce3bd0599 100644 Binary files a/media-sound/Manifest.gz and b/media-sound/Manifest.gz differ diff --git a/media-sound/upmpdcli/Manifest b/media-sound/upmpdcli/Manifest index cba335fa43b8..5432d35cab28 100644 --- a/media-sound/upmpdcli/Manifest +++ b/media-sound/upmpdcli/Manifest @@ -1,3 +1,4 @@ DIST upmpdcli-1.4.0.tar.gz 469357 BLAKE2B edd46e86f367ff2f88346cfb4cb249dae4463095553bb220fbd9a4078315044ec7591f58c30a0f20840a9f217230e46bc3b3569989a0ae2c05a44aa140c234c4 SHA512 1ed1f0a89a02610d70fb9e380dcbdbd8d636bc4a0964a16d27bd7c04126674f7f14e50e5fe521a430a06ea04ecef1275c7ad5f1c276daae1c285b73cceba9dec DIST upmpdcli-1.4.14.tar.gz 552026 BLAKE2B 0e9722d9a3c278b085416df240d3256ae1eff136f3897b181a59ce9d3edcdfd70ed7e568d8d345b1d0b13a9906f877776d9816ba3e8797c41c1684933aa326e6 SHA512 9084f60a4551fb94be915e6539d59a9ac070d55745c383b1f201c0c83262634c9e6fb353f66bb2232c493752805671b19057cbcec00c5ed128e19e1d0a037976 DIST upmpdcli-1.4.2.tar.gz 477650 BLAKE2B 8bc2f86e8821aaee29f969e6031553f29e3224fdaf4b9c7d443f55bda5f321f36607dbb7dc0af15f0d1e7b006e93595cd1d668f9d1975e8673a80b218ea7f570 SHA512 be855214b55686422689ce786103ff50748a9f9e7e556c8dbeaa7e39e0229a3e0b56502bdbeb7071771706416cd2ff36592cb5245b505d8438f0ba75c200e9c2 +DIST upmpdcli-1.5.0.tar.gz 550268 BLAKE2B 8c9c7c3c4d3bdeb7a3a0c4ff506970d8e8ddfa8dffaf7fff525e263817088d599087843707c5154a6fb5441bccbadbee28a80a0bb85561a1418235af3ebc931f SHA512 a04e4b039d72ac8e8b6769bd4794f995f31978f2807aa8f938183cbf0d07f7b16cf9289c9f8c55efea8fa6ba54883cd87135683e524143c7cf0759decc7390ad diff --git a/media-sound/upmpdcli/upmpdcli-1.5.0-r1.ebuild b/media-sound/upmpdcli/upmpdcli-1.5.0-r1.ebuild new file mode 100644 index 000000000000..0eb2b288b4ea --- /dev/null +++ b/media-sound/upmpdcli/upmpdcli-1.5.0-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd + +DESCRIPTION="UPnP Media Renderer front-end for MPD, the Music Player Daemon" +HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli/index.html" +LICENSE="GPL-2" + +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="thirdparty" + +DEPEND=" + dev-libs/jsoncpp + media-libs/libmpdclient + net-libs/libmicrohttpd + >=net-libs/libupnpp-0.20.0-r1 +" +RDEPEND=" + ${DEPEND} + acct-group/upmpdcli + acct-user/upmpdcli + app-misc/recoll + thirdparty? ( dev-python/requests ) +" + +src_install() { + default + newinitd "${FILESDIR}/${PN}.initd" "${PN}" + newconfd "${FILESDIR}/${PN}.confd" "${PN}" + systemd_dounit systemd/upmpdcli.service +} + +pkg_postinst() { + einfo + einfo "This package no longer assumes that upmpdcli is driving an" + einfo "mpd instance on the same host (https://bugs.gentoo.org/670130)." + einfo "Probably it is though, so be sure your mpd is built with" + einfo "USE=curl." + einfo + einfo "Consider installing media-sound/sc2mpd. If upmpdcli" + einfo "detects sc2mpd at run-time, capabilities are added" + einfo "including internet radio support. See upstream docs" + einfo "for more information." +} diff --git a/media-sound/upmpdcli/upmpdcli-1.5.0.ebuild b/media-sound/upmpdcli/upmpdcli-1.5.0.ebuild new file mode 100644 index 000000000000..5c2fe3e85607 --- /dev/null +++ b/media-sound/upmpdcli/upmpdcli-1.5.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd + +DESCRIPTION="UPnP Media Renderer front-end for MPD, the Music Player Daemon" +HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli/index.html" +LICENSE="GPL-2" + +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" +SLOT="0" +KEYWORDS="~amd64" +IUSE="thirdparty" + +DEPEND=" + dev-libs/jsoncpp + media-libs/libmpdclient + net-libs/libmicrohttpd + >=net-libs/libupnpp-0.19.0 +" +RDEPEND=" + ${DEPEND} + acct-group/upmpdcli + acct-user/upmpdcli + app-misc/recoll + thirdparty? ( dev-python/requests ) +" + +src_install() { + default + newinitd "${FILESDIR}/${PN}.initd" "${PN}" + newconfd "${FILESDIR}/${PN}.confd" "${PN}" + systemd_dounit systemd/upmpdcli.service +} + +pkg_postinst() { + einfo + einfo "This package no longer assumes that upmpdcli is driving an" + einfo "mpd instance on the same host (https://bugs.gentoo.org/670130)." + einfo "Probably it is though, so be sure your mpd is built with" + einfo "USE=curl." + einfo + einfo "Consider installing media-sound/sc2mpd. If upmpdcli" + einfo "detects sc2mpd at run-time, capabilities are added" + einfo "including internet radio support. See upstream docs" + einfo "for more information." +} diff --git a/media-tv/Manifest.gz b/media-tv/Manifest.gz index c1eb133511aa..106e2e5b97b1 100644 Binary files a/media-tv/Manifest.gz and b/media-tv/Manifest.gz differ diff --git a/media-tv/kodi/Manifest b/media-tv/kodi/Manifest index 876fc65d0579..b8641491316c 100644 --- a/media-tv/kodi/Manifest +++ b/media-tv/kodi/Manifest @@ -1,6 +1,4 @@ -DIST ffmpeg-kodi-4.3.1-Matrix-Alpha1-2.tar.gz 13477450 BLAKE2B c33a2aad8b895be3ea5be76de238680284487d38a8c22ce57f17c3944a6ba214c0dfa9ef1e4717244ff8f70f6dd640b36715842d61ddaed65867a6c096470283 SHA512 7f614d0dd2b319414cb31853be9cd52e5e81b780a4049e36470f992e78e52bcd65e99bfd268df5f8781ad030bb60f99d15bd5e8c4d7c2fd9a4011b55a3efc40c DIST ffmpeg-kodi-4.3.1-Matrix-Beta1.tar.gz 13477440 BLAKE2B 49415f76fd2a888b0efadb19597bd89db65c3d9e1224ab529ff0d73ab5734a23982b4d4905ddeb105ce59a816c4642cdb9f5568b0c39c29f5fb9431f9623d4ec SHA512 ce43390e816dabeed4ca231f5f7adade6c721c38e17996a57810fb6025ea49b812133c2a6e29aac7c674d4e4af3a21dbd7e605d85fb966935a01bda983b884ac -DIST kodi-19.0_alpha3_p20201109.tar.gz 52322634 BLAKE2B 4a69422811119ecc4b706a1b1f950b19bae16088ea8717b22c3015fe1dd448d37dccc46b2f756049ab71519c72a2e8a639f07128590dd94f227fce73e12efe10 SHA512 2fe0abfa8a8e4c3dd73021cf1aedb6dadda9c14588380276fc5ab05dee13e397d4f893ee5a62301fc79ebe5fe9129b8d37489edc0014c5a15564c63696d89d93 DIST kodi-19.0b1.tar.gz 52314501 BLAKE2B 35090e969160f7ea6619d6c720f92a3ecf97391d12548927fcfd03ccc15091132f795f4636a4c4b8c15b2a623ee8b892c4b395e2e4e811152c63ffc19474ff90 SHA512 51a5a060c9ee51dd05303259cf59164bf273b05430f0987998a90879dfb52c1e95669e1c432476df65247fb70e920058119713a627ed7e12bf8dcd13645ffc40 DIST libdvdcss-1.4.2-Leia-Beta-5.tar.gz 101068 BLAKE2B 283aa2cec0a2200d3569bc280cb9659e9224a6b3a77db8a35b269cd8caf1337ac9d8b92b806df66f63ef7458a46bd6261f0b8b14678b10e26644a79dcbeea5da SHA512 5185dbdbeb1bd13ea9d8723f1f4ab599d6f3102f5ba1096cd085aa1cda252c045f327c719227bba8e1b742352ade5e335106c8d0c1637a5a6b93ce661620dd7e DIST libdvdnav-6.0.0-Leia-Alpha-3.tar.gz 137942 BLAKE2B 7573434a0ae8e8ccabf48173f81fcde29074eb138e119a2ae9156cde3c3d8bfd716f5d0e605b97f2dcac21f570781137c8533c5ae306b51e3905822fda318355 SHA512 11c93eaacd156f8fd7dec7c43d366438b201f31ad55b2870463a9e286912b6ada08882319a021fb7992190f87b909a49f2b83e0321cc17aedc29f7fe5898fa72 diff --git a/media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild b/media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild deleted file mode 100644 index fef35604a08d..000000000000 --- a/media-tv/kodi/kodi-19.0_alpha3_p20201109.ebuild +++ /dev/null @@ -1,298 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_REQ_USE="libressl?,sqlite,ssl" -LIBDVDCSS_VERSION="1.4.2-Leia-Beta-5" -LIBDVDREAD_VERSION="6.0.0-Leia-Alpha-3" -LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3" -FFMPEG_VERSION="4.3.1" -CODENAME="Matrix" -FFMPEG_KODI_VERSION="Alpha1-2" -PYTHON_COMPAT=( python3_{6,7,8,9} ) -SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz -> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz - https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz -> libdvdread-${LIBDVDREAD_VERSION}.tar.gz - https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz -> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz - !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz -> ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz )" -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/xbmc/xbmc.git" - inherit git-r3 -else - GIT_COMMIT="5b06cdf3e64347085484435f2a4963e919edc8ec" - SRC_URI+=" https://github.com/xbmc/xbmc/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~x86" - S=${WORKDIR}/xbmc-${GIT_COMMIT} -fi - -inherit autotools cmake desktop linux-info pax-utils python-single-r1 xdg - -DESCRIPTION="A free and open source media-player and entertainment hub" -HOMEPAGE="https://kodi.tv/ https://kodi.wiki/" - -LICENSE="GPL-2+" -SLOT="0" -# use flag is called libusb so that it doesn't fool people in thinking that -# it is _required_ for USB support. Otherwise they'll disable udev and -# that's going to be worse. -IUSE="airplay alsa bluetooth bluray caps cec +css dbus dvd gbm gles lcms libressl libusb lirc mariadb mysql nfs +opengl pulseaudio raspberry-pi samba systemd +system-ffmpeg test udf udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf" -REQUIRED_USE=" - ${PYTHON_REQUIRED_USE} - || ( gles opengl ) - || ( gbm wayland X ) - ?? ( mariadb mysql ) - bluray? ( udf ) - udev? ( !libusb ) - udisks? ( dbus ) - upower? ( dbus ) -" -RESTRICT="!test? ( test )" - -COMMON_DEPEND="${PYTHON_DEPS} - airplay? ( - >=app-pda/libplist-2.0.0 - net-libs/shairplay - ) - alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) - bluetooth? ( net-wireless/bluez ) - bluray? ( >=media-libs/libbluray-1.1.2 ) - caps? ( sys-libs/libcap ) - dbus? ( sys-apps/dbus ) - dev-db/sqlite - dev-libs/expat - >=dev-libs/flatbuffers-1.11.0 - >=dev-libs/fribidi-1.0.5 - cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) - dev-libs/libpcre[cxx] - >=dev-libs/libinput-1.10.5 - >=dev-libs/libxml2-2.9.4 - >=dev-libs/lzo-2.04 - >=dev-libs/spdlog-1.5.0:= - dev-libs/tinyxml[stl] - $(python_gen_cond_dep ' - dev-python/pillow[${PYTHON_MULTI_USEDEP}] - dev-python/pycryptodome[${PYTHON_MULTI_USEDEP}] - ') - >=dev-libs/libcdio-2.1.0 - >=dev-libs/libfmt-6.1.2 - dev-libs/libfstrcmp - gbm? ( media-libs/mesa[gbm] ) - gles? ( - !raspberry-pi? ( media-libs/mesa[gles2] ) - ) - lcms? ( media-libs/lcms:2 ) - libusb? ( virtual/libusb:1 ) - virtual/ttf-fonts - media-fonts/roboto - media-libs/dav1d - >=media-libs/fontconfig-2.13.1 - >=media-libs/freetype-2.10.1 - >=media-libs/libass-0.13.4 - !raspberry-pi? ( media-libs/mesa[egl] ) - >=media-libs/taglib-1.11.1 - system-ffmpeg? ( - >=media-video/ffmpeg-${FFMPEG_VERSION}:=[dav1d,encode,postproc] - libressl? ( media-video/ffmpeg[libressl,-openssl] ) - !libressl? ( media-video/ffmpeg[-libressl,openssl] ) - ) - mysql? ( dev-db/mysql-connector-c:= ) - mariadb? ( dev-db/mariadb-connector-c:= ) - >=net-misc/curl-7.68.0[http2] - nfs? ( >=net-fs/libnfs-2.0.0:= ) - opengl? ( media-libs/glu ) - !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) - libressl? ( dev-libs/libressl:0= ) - raspberry-pi? ( - || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) - ) - pulseaudio? ( media-sound/pulseaudio ) - samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) - >=sys-libs/zlib-1.2.11 - udf? ( >=dev-libs/libudfread-1.0.0 ) - udev? ( virtual/udev ) - vaapi? ( - x11-libs/libva:= - opengl? ( x11-libs/libva[opengl] ) - system-ffmpeg? ( media-video/ffmpeg[vaapi] ) - vdpau? ( x11-libs/libva[vdpau] ) - wayland? ( x11-libs/libva[wayland] ) - X? ( x11-libs/libva[X] ) - ) - virtual/libiconv - vdpau? ( - || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) - system-ffmpeg? ( media-video/ffmpeg[vdpau] ) - ) - wayland? ( - >=dev-cpp/waylandpp-0.2.3:= - media-libs/mesa[wayland] - >=dev-libs/wayland-protocols-1.7 - ) - webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) - X? ( - media-libs/mesa[X] - x11-libs/libX11 - x11-libs/libXrandr - x11-libs/libXrender - system-ffmpeg? ( media-video/ffmpeg[X] ) - ) - x11-libs/libdrm - >=x11-libs/libxkbcommon-0.4.1 - xslt? ( dev-libs/libxslt ) - zeroconf? ( net-dns/avahi[dbus] ) -" -RDEPEND="${COMMON_DEPEND} - lirc? ( app-misc/lirc ) - udisks? ( sys-fs/udisks:2 ) - upower? ( sys-power/upower ) -" -DEPEND="${COMMON_DEPEND} - app-arch/bzip2 - app-arch/xz-utils - dev-lang/swig - dev-libs/crossguid - dev-libs/rapidjson - dev-util/cmake - dev-util/gperf - media-libs/giflib - >=media-libs/libjpeg-turbo-2.0.4:= - >=media-libs/libpng-1.6.26:0= - test? ( >=dev-cpp/gtest-1.10.0 ) - virtual/pkgconfig - virtual/jre - x86? ( dev-lang/nasm ) -" - -CONFIG_CHECK="~IP_MULTICAST" -ERROR_IP_MULTICAST=" -In some cases Kodi needs to access multicast addresses. -Please consider enabling IP_MULTICAST under Networking options. -" - -pkg_setup() { - check_extra_config - python-single-r1_pkg_setup -} - -src_unpack() { - if [[ ${PV} == *9999 ]] ; then - git-r3_src_unpack - else - default - fi -} - -src_prepare() { - cmake_src_prepare - - # avoid long delays when powerkit isn't running #348580 - sed -i \ - -e '/dbus_connection_send_with_reply_and_block/s:-1:3000:' \ - xbmc/platform/linux/*.cpp || die - - # Prepare tools and libs witch are configured with autotools during compile time - AUTOTOOLS_DIRS=( - "${S}"/tools/depends/native/TexturePacker/src - "${S}"/tools/depends/native/JsonSchemaBuilder/src - ) - - local d - for d in "${AUTOTOOLS_DIRS[@]}" ; do - pushd ${d} >/dev/null || die - AT_NOELIBTOOLIZE="yes" AT_TOPLEVEL_EAUTORECONF="yes" eautoreconf - popd >/dev/null || die - done - elibtoolize - - # Prevent autoreconf rerun - sed -e 's/autoreconf -vif/echo "autoreconf already done in src_prepare()"/' -i \ - "${S}"/tools/depends/native/TexturePacker/src/autogen.sh \ - "${S}"/tools/depends/native/JsonSchemaBuilder/src/autogen.sh \ - || die -} - -src_configure() { - local platform=() - use gbm && platform+=( gbm ) - use wayland && platform+=( wayland ) - use X && platform+=( x11 ) - local mycmakeargs=( - -Ddocdir="${EPREFIX}/usr/share/doc/${PF}" - -DENABLE_LDGOLD=OFF # https://bugs.gentoo.org/show_bug.cgi?id=606124 - -DENABLE_ALSA=$(usex alsa) - -DENABLE_AIRTUNES=$(usex airplay) - -DENABLE_AVAHI=$(usex zeroconf) - -DENABLE_BLUETOOTH=$(usex bluetooth) - -DENABLE_BLURAY=$(usex bluray) - -DENABLE_CCACHE=OFF - -DENABLE_CEC=$(usex cec) - -DENABLE_DBUS=$(usex dbus) - -DENABLE_DVDCSS=$(usex css) - -DENABLE_INTERNAL_CROSSGUID=OFF - -DENABLE_INTERNAL_FFMPEG="$(usex !system-ffmpeg)" - -DENABLE_INTERNAL_FSTRCMP=OFF - -DENABLE_INTERNAL_GTEST=OFF - -DENABLE_INTERNAL_UDFREAD=OFF - -DENABLE_CAP=$(usex caps) - -DENABLE_LCMS2=$(usex lcms) - -DENABLE_LIRCCLIENT=$(usex lirc) - -DENABLE_MARIADBCLIENT=$(usex mariadb) - -DENABLE_MICROHTTPD=$(usex webserver) - -DENABLE_MYSQLCLIENT=$(usex mysql) - -DENABLE_NFS=$(usex nfs) - -DENABLE_OPENGLES=$(usex gles) - -DENABLE_OPENGL=$(usex opengl) - -DENABLE_OPTICAL=$(usex dvd) - -DENABLE_PLIST=$(usex airplay) - -DENABLE_PULSEAUDIO=$(usex pulseaudio) - -DENABLE_SMBCLIENT=$(usex samba) - -DENABLE_TESTING=$(usex test) - -DENABLE_UDEV=$(usex udev) - -DENABLE_UDFREAD=$(usex udf) - -DENABLE_UPNP=$(usex upnp) - -DENABLE_VAAPI=$(usex vaapi) - -DENABLE_VDPAU=$(usex vdpau) - -DENABLE_XSLT=$(usex xslt) - -Dlibdvdread_URL="${DISTDIR}/libdvdread-${LIBDVDREAD_VERSION}.tar.gz" - -Dlibdvdnav_URL="${DISTDIR}/libdvdnav-${LIBDVDNAV_VERSION}.tar.gz" - -Dlibdvdcss_URL="${DISTDIR}/libdvdcss-${LIBDVDCSS_VERSION}.tar.gz" - -DPYTHON_INCLUDE_DIR="$(python_get_includedir)" - -DPYTHON_LIBRARY="$(python_get_library_path)" - -DAPP_RENDER_SYSTEM="$(usex opengl gl gles)" - -DCORE_PLATFORM_NAME="${platform[@]}" - ) - - use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) ) - - if use system-ffmpeg; then - mycmakeargs+=( -DWITH_FFMPEG="yes" ) - else - mycmakeargs+=( -DFFMPEG_URL="${DISTDIR}/ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz" ) - fi - - cmake_src_configure -} - -src_compile() { - cmake_src_compile all -} - -src_test() { - # see https://github.com/xbmc/xbmc/issues/17860#issuecomment-630120213 - KODI_HOME="${BUILD_DIR}" cmake_build check -} - -src_install() { - cmake_src_install - - pax-mark Em "${ED}"/usr/$(get_libdir)/${PN}/${PN}.bin - - newicon media/icon48x48.png kodi.png - - rm "${ED}"/usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf || die - dosym ../../../../fonts/roboto/Roboto-Thin.ttf \ - usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf - - python_domodule tools/EventClients/lib/python/xbmcclient.py - python_newscript "tools/EventClients/Clients/KodiSend/kodi-send.py" kodi-send -} diff --git a/media-tv/kodi/kodi-19.0_beta1.ebuild b/media-tv/kodi/kodi-19.0_beta1-r1.ebuild similarity index 99% rename from media-tv/kodi/kodi-19.0_beta1.ebuild rename to media-tv/kodi/kodi-19.0_beta1-r1.ebuild index f951107635b5..db37201ab5ac 100644 --- a/media-tv/kodi/kodi-19.0_beta1.ebuild +++ b/media-tv/kodi/kodi-19.0_beta1-r1.ebuild @@ -220,6 +220,7 @@ src_configure() { use gbm && platform+=( gbm ) use wayland && platform+=( wayland ) use X && platform+=( x11 ) + local core_platform_name="${platform[@]}" local mycmakeargs=( -Ddocdir="${EPREFIX}/usr/share/doc/${PF}" -DENABLE_LDGOLD=OFF # https://bugs.gentoo.org/show_bug.cgi?id=606124 @@ -263,7 +264,7 @@ src_configure() { -DPYTHON_INCLUDE_DIR="$(python_get_includedir)" -DPYTHON_LIBRARY="$(python_get_library_path)" -DAPP_RENDER_SYSTEM="$(usex opengl gl gles)" - -DCORE_PLATFORM_NAME="${platform[@]}" + -DCORE_PLATFORM_NAME="${core_platform_name}" ) use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) ) diff --git a/media-tv/kodi/kodi-19.9999.ebuild b/media-tv/kodi/kodi-19.9999.ebuild index f951107635b5..db37201ab5ac 100644 --- a/media-tv/kodi/kodi-19.9999.ebuild +++ b/media-tv/kodi/kodi-19.9999.ebuild @@ -220,6 +220,7 @@ src_configure() { use gbm && platform+=( gbm ) use wayland && platform+=( wayland ) use X && platform+=( x11 ) + local core_platform_name="${platform[@]}" local mycmakeargs=( -Ddocdir="${EPREFIX}/usr/share/doc/${PF}" -DENABLE_LDGOLD=OFF # https://bugs.gentoo.org/show_bug.cgi?id=606124 @@ -263,7 +264,7 @@ src_configure() { -DPYTHON_INCLUDE_DIR="$(python_get_includedir)" -DPYTHON_LIBRARY="$(python_get_library_path)" -DAPP_RENDER_SYSTEM="$(usex opengl gl gles)" - -DCORE_PLATFORM_NAME="${platform[@]}" + -DCORE_PLATFORM_NAME="${core_platform_name}" ) use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) ) diff --git a/media-tv/kodi/kodi-9999.ebuild b/media-tv/kodi/kodi-9999.ebuild index f951107635b5..db37201ab5ac 100644 --- a/media-tv/kodi/kodi-9999.ebuild +++ b/media-tv/kodi/kodi-9999.ebuild @@ -220,6 +220,7 @@ src_configure() { use gbm && platform+=( gbm ) use wayland && platform+=( wayland ) use X && platform+=( x11 ) + local core_platform_name="${platform[@]}" local mycmakeargs=( -Ddocdir="${EPREFIX}/usr/share/doc/${PF}" -DENABLE_LDGOLD=OFF # https://bugs.gentoo.org/show_bug.cgi?id=606124 @@ -263,7 +264,7 @@ src_configure() { -DPYTHON_INCLUDE_DIR="$(python_get_includedir)" -DPYTHON_LIBRARY="$(python_get_library_path)" -DAPP_RENDER_SYSTEM="$(usex opengl gl gles)" - -DCORE_PLATFORM_NAME="${platform[@]}" + -DCORE_PLATFORM_NAME="${core_platform_name}" ) use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) ) diff --git a/media-video/Manifest.gz b/media-video/Manifest.gz index 856da1a2c768..9069526ee88d 100644 Binary files a/media-video/Manifest.gz and b/media-video/Manifest.gz differ diff --git a/media-video/mpv/mpv-0.32.0-r1.ebuild b/media-video/mpv/mpv-0.32.0-r2.ebuild similarity index 99% rename from media-video/mpv/mpv-0.32.0-r1.ebuild rename to media-video/mpv/mpv-0.32.0-r2.ebuild index e5fb6596364a..2c3b877590fe 100644 --- a/media-video/mpv/mpv-0.32.0-r1.ebuild +++ b/media-video/mpv/mpv-0.32.0-r2.ebuild @@ -82,7 +82,7 @@ COMMON_DEPEND=" jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) libass? ( - >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz] + >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz(+)] virtual/ttf-fonts ) libcaca? ( >=media-libs/libcaca-0.99_beta18 ) diff --git a/media-video/mpv/mpv-9999.ebuild b/media-video/mpv/mpv-9999.ebuild index 56f7b9d4cfc6..20f68d7f7421 100644 --- a/media-video/mpv/mpv-9999.ebuild +++ b/media-video/mpv/mpv-9999.ebuild @@ -81,7 +81,7 @@ COMMON_DEPEND=" javascript? ( >=dev-lang/mujs-1.0.0 ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) - >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz] + >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz(+)] virtual/ttf-fonts libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( diff --git a/media-video/shotcut/Manifest b/media-video/shotcut/Manifest index 6d5634b35058..309547777391 100644 --- a/media-video/shotcut/Manifest +++ b/media-video/shotcut/Manifest @@ -1 +1 @@ -DIST shotcut-20.07.11.tar.gz 5801379 BLAKE2B 93f91fc0d31583e2f53576a7c768e9c0330da07ebcacf1a9d66020a826bbff430fc6032c48f288936ac14f8eaf5a592297c818c72bdde73253a90cc6ce304655 SHA512 8590855f252dbf1a1e4aed078da93ea730e4dec2c67420f57babf59e37a8f4d76c808a14872ae68fa400e5057e9be9d42c567c4f0db3e869eefd5115b814d30b +DIST shotcut-20.10.31.tar.gz 5735908 BLAKE2B 04b9bada177216c81950a551a9dc06624efe7fd50df9cc12cbe1b358436721700d7ecd49a89c48988ce33eee8a8bcdb9c58ccf74775ee2e2828090e53567ade0 SHA512 4d0109e87c86e3b7bb20aeb4b9a38fac175f90f00b8b13b605af9f5959578a2329da5a91d96891c814a84e7f23501ee5d3be9d2ca7a4bdd1a70af9894f0f7348 diff --git a/media-video/shotcut/metadata.xml b/media-video/shotcut/metadata.xml index 9fca7f80ebad..f6e4473d5c5f 100644 --- a/media-video/shotcut/metadata.xml +++ b/media-video/shotcut/metadata.xml @@ -2,8 +2,8 @@ - reagentoo@gmail.com - Dmitry Baranov + xdch47@posteo.de + Felix Neumärker proxy-maint@gentoo.org diff --git a/media-video/shotcut/shotcut-20.07.11.ebuild b/media-video/shotcut/shotcut-20.10.31.ebuild similarity index 79% rename from media-video/shotcut/shotcut-20.07.11.ebuild rename to media-video/shotcut/shotcut-20.10.31.ebuild index a427a53ccc83..ee415787b81a 100644 --- a/media-video/shotcut/shotcut-20.07.11.ebuild +++ b/media-video/shotcut/shotcut-20.10.31.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit flag-o-matic qmake-utils xdg +inherit qmake-utils xdg DESCRIPTION="A free, open source, cross-platform video editor" HOMEPAGE="https://www.shotcut.org/ https://github.com/mltframework/shotcut/" @@ -25,12 +25,10 @@ COMMON_DEPEND=" dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 - dev-qt/qtwebkit:5 dev-qt/qtwebsockets:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 - >=media-libs/mlt-6.18.0[ffmpeg,frei0r,jack,qt5,sdl,xml] - media-libs/webvfx + >=media-libs/mlt-6.22.1[ffmpeg,frei0r,jack,melt(+),qt5,sdl,xml] media-video/ffmpeg " DEPEND="${COMMON_DEPEND} @@ -45,17 +43,14 @@ RDEPEND="${COMMON_DEPEND} src_prepare() { default - - sed -i -e '/QT.*private/d' \ - src/src.pro || die + sed -i -e '/QT.*private/d' src/src.pro || die } src_configure() { - append-cxxflags -Wno-deprecated-declarations - eqmake5 \ PREFIX="${EPREFIX}/usr" \ - SHOTCUT_VERSION="${PV}" + SHOTCUT_VERSION="${PV}" \ + DEFINES+=SHOTCUT_NOUPGRADE } src_install() { diff --git a/media-video/yle-dl/Manifest b/media-video/yle-dl/Manifest index 174e3f7af460..0159c87b2cff 100644 --- a/media-video/yle-dl/Manifest +++ b/media-video/yle-dl/Manifest @@ -1,2 +1 @@ -DIST yle-dl-20200807.tar.gz 62699 BLAKE2B 9f92e8e37385c8936f39443179251f60fa01fcb2ad623852cebb4bc26aa111689d8132ca1871e914162399c26ea575d02a7811fcb6b55e27b1d942db428377cc SHA512 fa38e0acb84fe968086a831c9d090a1a1387e58db0ca753aa25af65e42928542ea71b6a22988dd5e6a728b31de1da4d7dde02d2836bddec0bf52ec6dcbfa72ff DIST yle-dl-20201022.tar.gz 63423 BLAKE2B af79aa27528b9cfafcf297497fe5711d7c9260c5fd245bb556ff340bad3938bf48dac74e1875ae2013346c546d3dc745b2c552b1c32c15cc47106183a6d8cb82 SHA512 14d1bb7e814355dad48a02c240103baec39d831de9a08fb8f1eecdeb13522fd55d891bc519d8303dc156f2b0e300a7c8c4a42feba29b3d7c80c906edc9aadc89 diff --git a/media-video/yle-dl/yle-dl-20200807.ebuild b/media-video/yle-dl/yle-dl-20200807.ebuild deleted file mode 100644 index 97fd2cbc3981..000000000000 --- a/media-video/yle-dl/yle-dl-20200807.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6..8} ) -DISTUTILS_USE_SETUPTOOLS=rdepend - -inherit distutils-r1 optfeature - -DESCRIPTION="Download media files from Yle Areena" -HOMEPAGE="https://aajanki.github.io/yle-dl/ https://github.com/aajanki/yle-dl" -SRC_URI="https://github.com/aajanki/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" - -IUSE="test" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" - -# Requires an active internet connection during tests, -# FEATURES="-network-sandbox" to test. -RESTRICT="test" - -RDEPEND="${PYTHON_DEPS} - media-video/ffmpeg - net-misc/wget - >=dev-python/attrs-18.1.0[${PYTHON_USEDEP}] - >=dev-python/configargparse-0.13.0[${PYTHON_USEDEP}] - dev-python/future[${PYTHON_USEDEP}] - dev-python/lxml[${PYTHON_USEDEP}] - dev-python/progress[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}]" -DEPEND="test? ( - ${RDEPEND} - media-video/ffmpeg[gnutls] - dev-python/pytest[${PYTHON_USEDEP}] - )" -BDEPEND="${PYTHON_DEPS}" - -distutils_enable_tests setup.py - -DOCS=( COPYING ChangeLog README.fi README.md yledl.conf.sample ) - -src_install() { - docompress -x "/usr/share/doc/${PF}/yledl.conf.sample" - distutils-r1_src_install -} - -pkg_postinst() { - elog "Sample configuration file has been installed to " - elog " /usr/share/doc/yle-dl-${PV}/yledl.conf.sample" - elog "" - elog "Optional download engines: " - optfeature "youtube-dl download engine" net-misc/youtube-dl -} diff --git a/media-video/yle-dl/yle-dl-20201022.ebuild b/media-video/yle-dl/yle-dl-20201022.ebuild index 31cb79f48365..45ce4632dafe 100644 --- a/media-video/yle-dl/yle-dl-20201022.ebuild +++ b/media-video/yle-dl/yle-dl-20201022.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/aajanki/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" REQUIRED_USE="${PYTHON_REQUIRED_USE}" diff --git a/metadata/Manifest.gz b/metadata/Manifest.gz index 4d20f5455f1d..6db23221e540 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 b77077aa718f..4d81361221fb 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Fri, 20 Nov 2020 05:08:24 +0000 +Sun, 22 Nov 2020 21:38:26 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index b77077aa718f..4d81361221fb 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Fri, 20 Nov 2020 05:08:24 +0000 +Sun, 22 Nov 2020 21:38:26 +0000 diff --git a/metadata/md5-cache/Manifest.gz b/metadata/md5-cache/Manifest.gz index 1aef379deeae..9e3ea70d1184 100644 Binary files a/metadata/md5-cache/Manifest.gz and b/metadata/md5-cache/Manifest.gz differ diff --git a/metadata/md5-cache/app-admin/Manifest.gz b/metadata/md5-cache/app-admin/Manifest.gz index b4658ef727f2..de8f6fae6402 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/ec2-ami-tools-1.5.7 b/metadata/md5-cache/app-admin/ec2-ami-tools-1.5.7 index 7ea251c37987..011e3aed7946 100644 --- a/metadata/md5-cache/app-admin/ec2-ami-tools-1.5.7 +++ b/metadata/md5-cache/app-admin/ec2-ami-tools-1.5.7 @@ -5,8 +5,8 @@ EAPI=6 HOMEPAGE=https://aws.amazon.com/en/tools/ KEYWORDS=~amd64 ~x86 LICENSE=Amazon || ( Ruby GPL-2 ) -RDEPEND=|| ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems virtual/ruby-ssl net-misc/rsync net-misc/curl +RDEPEND=|| ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems virtual/ruby-ssl net-misc/rsync net-misc/curl SLOT=0 SRC_URI=http://s3.amazonaws.com/ec2-downloads/ec2-ami-tools-1.5.7.zip -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=8adeb9dd3a6bf2864336f8ab18fc8117 diff --git a/metadata/md5-cache/app-admin/fluentd-1.2.6-r1 b/metadata/md5-cache/app-admin/fluentd-1.2.6-r1 index 3071eb1ddbe1..88621d1b0ba1 100644 --- a/metadata/md5-cache/app-admin/fluentd-1.2.6-r1 +++ b/metadata/md5-cache/app-admin/fluentd-1.2.6-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fluentd-1.2.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 _md5_=8745bf4fb72794bfbc1ef9aac1e4a75f diff --git a/metadata/md5-cache/app-admin/fluentd-1.3.1 b/metadata/md5-cache/app-admin/fluentd-1.3.1 index 4bd6c627a667..52f565b77ffe 100644 --- a/metadata/md5-cache/app-admin/fluentd-1.3.1 +++ b/metadata/md5-cache/app-admin/fluentd-1.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fluentd-1.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 _md5_=fa3b58e9b8660bdd9587c6dc8e78ba71 diff --git a/metadata/md5-cache/app-admin/fluentd-1.3.2 b/metadata/md5-cache/app-admin/fluentd-1.3.2 index dc6dae0ba387..7fdbff907a0d 100644 --- a/metadata/md5-cache/app-admin/fluentd-1.3.2 +++ b/metadata/md5-cache/app-admin/fluentd-1.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fluentd-1.3.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 _md5_=fa3b58e9b8660bdd9587c6dc8e78ba71 diff --git a/metadata/md5-cache/app-admin/fluentd-1.3.3 b/metadata/md5-cache/app-admin/fluentd-1.3.3 index 75f864235fce..3481ad142210 100644 --- a/metadata/md5-cache/app-admin/fluentd-1.3.3 +++ b/metadata/md5-cache/app-admin/fluentd-1.3.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fluentd-1.3.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 _md5_=ae970460f208820ef188406646336c87 diff --git a/metadata/md5-cache/app-admin/fluentd-1.4.0 b/metadata/md5-cache/app-admin/fluentd-1.4.0 index de2783c6d05f..011da9fa87d0 100644 --- a/metadata/md5-cache/app-admin/fluentd-1.4.0 +++ b/metadata/md5-cache/app-admin/fluentd-1.4.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fluentd-1.4.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 _md5_=ae970460f208820ef188406646336c87 diff --git a/metadata/md5-cache/app-admin/fluentd-1.4.1 b/metadata/md5-cache/app-admin/fluentd-1.4.1 index fa2e3368fc08..e1784cb34396 100644 --- a/metadata/md5-cache/app-admin/fluentd-1.4.1 +++ b/metadata/md5-cache/app-admin/fluentd-1.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fluentd-1.4.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 _md5_=ae970460f208820ef188406646336c87 diff --git a/metadata/md5-cache/app-admin/fluentd-1.4.2 b/metadata/md5-cache/app-admin/fluentd-1.4.2 index 4b48c18885b2..62528b4f10ad 100644 --- a/metadata/md5-cache/app-admin/fluentd-1.4.2 +++ b/metadata/md5-cache/app-admin/fluentd-1.4.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fluentd-1.4.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 _md5_=1e0e2ea87c4b6f798c734b2178d1067d diff --git a/metadata/md5-cache/app-admin/fluentd-1.9.0 b/metadata/md5-cache/app-admin/fluentd-1.9.0 index a0b789cd476f..044467547477 100644 --- a/metadata/md5-cache/app-admin/fluentd-1.9.0 +++ b/metadata/md5-cache/app-admin/fluentd-1.9.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fluentd-1.9.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 _md5_=58de2647fdcee221e1fbd2ca12994654 diff --git a/metadata/md5-cache/app-admin/graylog-4.0.0_rc2 b/metadata/md5-cache/app-admin/graylog-4.0.0 similarity index 79% rename from metadata/md5-cache/app-admin/graylog-4.0.0_rc2 rename to metadata/md5-cache/app-admin/graylog-4.0.0 index 61812b0ece02..f0b252a6d246 100644 --- a/metadata/md5-cache/app-admin/graylog-4.0.0_rc2 +++ b/metadata/md5-cache/app-admin/graylog-4.0.0 @@ -2,9 +2,10 @@ DEFINED_PHASES=install postinst prepare DESCRIPTION=Free and open source log management EAPI=7 HOMEPAGE=https://www.graylog.org +KEYWORDS=~amd64 ~ppc64 ~x86 LICENSE=GPL-3 RDEPEND=!app-admin/graylog2 acct-group/graylog acct-user/graylog >=virtual/jdk-1.8:* RESTRICT=strip SLOT=0 -SRC_URI=https://downloads.graylog.org/releases/graylog/graylog-4.0.0-rc.2.tgz -> graylog-4.0.0_rc2.tar.gz -_md5_=f6ecd5ee8b1492ce86c3823c37c312ff +SRC_URI=https://downloads.graylog.org/releases/graylog/graylog-4.0.0.tgz +_md5_=0f498b6abfd35460d3cc86bb341bef11 diff --git a/metadata/md5-cache/app-admin/mcollective-2.12.4 b/metadata/md5-cache/app-admin/mcollective-2.12.4 index 2f059809cdfa..102367717f40 100644 --- a/metadata/md5-cache/app-admin/mcollective-2.12.4 +++ b/metadata/md5-cache/app-admin/mcollective-2.12.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-ruby/stomp-1.4.4 ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) REQUIRED_USE=|| ( ruby_targets_ruby25 ) SLOT=0 SRC_URI=https://github.com/puppetlabs/marionette-collective/archive/2.12.4.tar.gz -> mcollective-2.12.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0f24a50802ecc41c21621cde2fafeb51 diff --git a/metadata/md5-cache/app-admin/mcollective-2.12.5 b/metadata/md5-cache/app-admin/mcollective-2.12.5 index 1660e46b09f4..012d95408707 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_ruby25? ( dev-lang/ruby:2.5 ) ruby_t REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f5d04eace347dfb69b36620c689bcda1 diff --git a/metadata/md5-cache/app-admin/puppet-5.5.19-r1 b/metadata/md5-cache/app-admin/puppet-5.5.19-r1 index 36a428c5208f..1e6b8031b3d5 100644 --- a/metadata/md5-cache/app-admin/puppet-5.5.19-r1 +++ b/metadata/md5-cache/app-admin/puppet-5.5.19-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=http://downloads.puppetlabs.com/puppet/puppet-5.5.19.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=90ceb07e3825d00757432c29f6aca996 diff --git a/metadata/md5-cache/app-admin/puppet-5.5.21 b/metadata/md5-cache/app-admin/puppet-5.5.21 index 092dbdbe5827..b34a89f4b8fb 100644 --- a/metadata/md5-cache/app-admin/puppet-5.5.21 +++ b/metadata/md5-cache/app-admin/puppet-5.5.21 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://downloads.puppetlabs.com/puppet/puppet-5.5.21.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=992ef2188d469818cd2faf27f788a086 diff --git a/metadata/md5-cache/app-admin/puppet-5.5.22 b/metadata/md5-cache/app-admin/puppet-5.5.22 index 6893d84bece9..604913a35a1f 100644 --- a/metadata/md5-cache/app-admin/puppet-5.5.22 +++ b/metadata/md5-cache/app-admin/puppet-5.5.22 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=864a6112a149a7589ded2683e4e171bc diff --git a/metadata/md5-cache/app-admin/puppet-6.18.0 b/metadata/md5-cache/app-admin/puppet-6.18.0 index a39cc610a2b0..a7de9f569d3b 100644 --- a/metadata/md5-cache/app-admin/puppet-6.18.0 +++ b/metadata/md5-cache/app-admin/puppet-6.18.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=http://downloads.puppetlabs.com/puppet/puppet-6.18.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5b4ab026ca1101e238be6e8e15daf799 diff --git a/metadata/md5-cache/app-admin/puppet-6.19.1 b/metadata/md5-cache/app-admin/puppet-6.19.1 index a1e2028fae43..d492b20a76ab 100644 --- a/metadata/md5-cache/app-admin/puppet-6.19.1 +++ b/metadata/md5-cache/app-admin/puppet-6.19.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=http://downloads.puppetlabs.com/puppet/puppet-6.19.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=37eb3f16f2eec3064d96a6645ceda5b4 diff --git a/metadata/md5-cache/app-admin/puppet-agent-6.19.1 b/metadata/md5-cache/app-admin/puppet-agent-6.19.1-r1 similarity index 96% rename from metadata/md5-cache/app-admin/puppet-agent-6.19.1 rename to metadata/md5-cache/app-admin/puppet-agent-6.19.1-r1 index b06b18b1d7cc..f133e4306437 100644 --- a/metadata/md5-cache/app-admin/puppet-agent-6.19.1 +++ b/metadata/md5-cache/app-admin/puppet-agent-6.19.1-r1 @@ -12,4 +12,4 @@ RESTRICT=strip SLOT=0 SRC_URI=http://apt.puppetlabs.com/pool/focal/puppet/p/puppet-agent/puppet-agent_6.19.1-1focal_amd64.deb _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=fb4c4875a44093f995775e4a46435cfd +_md5_=a4bb560880cac96d3da8367e35f15b2d 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 28ffb4572f0f..dccde62d593e 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_ruby25 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_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7d7b070fb0ab82e55476e966a0edd13b diff --git a/metadata/md5-cache/app-admin/r10k-3.4.1 b/metadata/md5-cache/app-admin/r10k-3.4.1 deleted file mode 100644 index f4c998c118a8..000000000000 --- a/metadata/md5-cache/app-admin/r10k-3.4.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby25? ( ~dev-ruby/colored-1.2[ruby_targets_ruby25(-)] >=dev-ruby/cri-2.15.10:0[ruby_targets_ruby25(-)] >=dev-ruby/gettext-setup-0.24:0[ruby_targets_ruby25(-)] ~dev-ruby/log4r-1.1.10[ruby_targets_ruby25(-)] >=dev-ruby/multi_json-1.10:0[ruby_targets_ruby25(-)] =dev-ruby/puppet_forge-2.3*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( ~dev-ruby/colored-1.2[ruby_targets_ruby26(-)] >=dev-ruby/cri-2.15.10:0[ruby_targets_ruby26(-)] >=dev-ruby/gettext-setup-0.24:0[ruby_targets_ruby26(-)] ~dev-ruby/log4r-1.1.10[ruby_targets_ruby26(-)] >=dev-ruby/multi_json-1.10:0[ruby_targets_ruby26(-)] =dev-ruby/puppet_forge-2.3*[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( test? ( >=dev-ruby/minitar-0.9[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( >=dev-ruby/minitar-0.9[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) -DESCRIPTION=Puppet environment and module deployment -EAPI=7 -HOMEPAGE=https://github.com/puppetlabs/r10k -IUSE=+git test ruby_targets_ruby25 ruby_targets_ruby26 test test -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby25? ( ~dev-ruby/colored-1.2[ruby_targets_ruby25(-)] >=dev-ruby/cri-2.15.10:0[ruby_targets_ruby25(-)] >=dev-ruby/gettext-setup-0.24:0[ruby_targets_ruby25(-)] ~dev-ruby/log4r-1.1.10[ruby_targets_ruby25(-)] >=dev-ruby/multi_json-1.10:0[ruby_targets_ruby25(-)] =dev-ruby/puppet_forge-2.3*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( ~dev-ruby/colored-1.2[ruby_targets_ruby26(-)] >=dev-ruby/cri-2.15.10:0[ruby_targets_ruby26(-)] >=dev-ruby/gettext-setup-0.24:0[ruby_targets_ruby26(-)] ~dev-ruby/log4r-1.1.10[ruby_targets_ruby26(-)] >=dev-ruby/multi_json-1.10:0[ruby_targets_ruby26(-)] =dev-ruby/puppet_forge-2.3*[ruby_targets_ruby26(-)] ) git? ( >=dev-vcs/git-1.6.6 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://rubygems.org/gems/r10k-3.4.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=716133adf6bba3dec12dcaf26d44d44c diff --git a/metadata/md5-cache/app-admin/r10k-3.7.0-r2 b/metadata/md5-cache/app-admin/r10k-3.7.0-r2 new file mode 100644 index 000000000000..918cfc011e21 --- /dev/null +++ b/metadata/md5-cache/app-admin/r10k-3.7.0-r2 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby25? ( ~dev-ruby/colored2-3.1.2[ruby_targets_ruby25(-)] >=dev-ruby/cri-2.15.10:0[ruby_targets_ruby25(-)] >=dev-ruby/gettext-setup-0.24:0[ruby_targets_ruby25(-)] >=dev-ruby/fast_gettext-1.1:0[ruby_targets_ruby25(-)] >=dev-ruby/ruby-gettext-3.0.2:0[ruby_targets_ruby25(-)] ~dev-ruby/log4r-1.1.10[ruby_targets_ruby25(-)] >=dev-ruby/multi_json-1.10:0[ruby_targets_ruby25(-)] =dev-ruby/puppet_forge-2.3*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( ~dev-ruby/colored2-3.1.2[ruby_targets_ruby26(-)] >=dev-ruby/cri-2.15.10:0[ruby_targets_ruby26(-)] >=dev-ruby/gettext-setup-0.24:0[ruby_targets_ruby26(-)] >=dev-ruby/fast_gettext-1.1:0[ruby_targets_ruby26(-)] >=dev-ruby/ruby-gettext-3.0.2:0[ruby_targets_ruby26(-)] ~dev-ruby/log4r-1.1.10[ruby_targets_ruby26(-)] >=dev-ruby/multi_json-1.10:0[ruby_targets_ruby26(-)] =dev-ruby/puppet_forge-2.3*[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( test? ( >=dev-ruby/minitar-0.9[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( >=dev-ruby/minitar-0.9[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) +DESCRIPTION=Puppet environment and module deployment +EAPI=7 +HOMEPAGE=https://github.com/puppetlabs/r10k +IUSE=+git test ruby_targets_ruby25 ruby_targets_ruby26 test test +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=ruby_targets_ruby25? ( ~dev-ruby/colored2-3.1.2[ruby_targets_ruby25(-)] >=dev-ruby/cri-2.15.10:0[ruby_targets_ruby25(-)] >=dev-ruby/gettext-setup-0.24:0[ruby_targets_ruby25(-)] >=dev-ruby/fast_gettext-1.1:0[ruby_targets_ruby25(-)] >=dev-ruby/ruby-gettext-3.0.2:0[ruby_targets_ruby25(-)] ~dev-ruby/log4r-1.1.10[ruby_targets_ruby25(-)] >=dev-ruby/multi_json-1.10:0[ruby_targets_ruby25(-)] =dev-ruby/puppet_forge-2.3*[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( ~dev-ruby/colored2-3.1.2[ruby_targets_ruby26(-)] >=dev-ruby/cri-2.15.10:0[ruby_targets_ruby26(-)] >=dev-ruby/gettext-setup-0.24:0[ruby_targets_ruby26(-)] >=dev-ruby/fast_gettext-1.1:0[ruby_targets_ruby26(-)] >=dev-ruby/ruby-gettext-3.0.2:0[ruby_targets_ruby26(-)] ~dev-ruby/log4r-1.1.10[ruby_targets_ruby26(-)] >=dev-ruby/multi_json-1.10:0[ruby_targets_ruby26(-)] =dev-ruby/puppet_forge-2.3*[ruby_targets_ruby26(-)] ) git? ( >=dev-vcs/git-1.6.6 ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://rubygems.org/gems/r10k-3.7.0.gem +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=28d282c583357a835e9da1bb55a6134f diff --git a/metadata/md5-cache/app-admin/syslog-ng-3.30.1 b/metadata/md5-cache/app-admin/syslog-ng-3.30.1 new file mode 100644 index 000000000000..2abfee62316d --- /dev/null +++ b/metadata/md5-cache/app-admin/syslog-ng-3.30.1 @@ -0,0 +1,16 @@ +BDEPEND=sys-devel/flex virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=>=dev-libs/glib-2.10.1:2 >=dev-libs/ivykis-0.42.4 >=dev-libs/libpcre-6.1:= !dev-libs/eventlog amqp? ( >=net-libs/rabbitmq-c-0.8.0:=[ssl] ) caps? ( sys-libs/libcap ) dbi? ( >=dev-db/libdbi-0.9.0 ) geoip2? ( dev-libs/libmaxminddb:= ) http? ( net-misc/curl ) json? ( >=dev-libs/json-c-0.9:= ) kafka? ( >=dev-libs/librdkafka-1.0.0:= ) mongodb? ( >=dev-libs/mongo-c-driver-1.2.0 ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) redis? ( >=dev-libs/hiredis-0.11.0:= ) smtp? ( net-libs/libesmtp ) snmp? ( net-analyzer/net-snmp:0= ) spoof-source? ( net-libs/libnet:1.1= ) systemd? ( sys-apps/systemd:= ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) test? ( dev-libs/criterion ) +DESCRIPTION=syslog replacement with advanced filtering features +EAPI=7 +HOMEPAGE=https://syslog-ng.com/open-source-log-management +IUSE=amqp caps dbi geoip2 http ipv6 json kafka libressl mongodb pacct python redis smtp snmp test spoof-source systemd tcpd python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2+ LGPL-2.1+ +RDEPEND=>=dev-libs/glib-2.10.1:2 >=dev-libs/ivykis-0.42.4 >=dev-libs/libpcre-6.1:= !dev-libs/eventlog amqp? ( >=net-libs/rabbitmq-c-0.8.0:=[ssl] ) caps? ( sys-libs/libcap ) dbi? ( >=dev-db/libdbi-0.9.0 ) geoip2? ( dev-libs/libmaxminddb:= ) http? ( net-misc/curl ) json? ( >=dev-libs/json-c-0.9:= ) kafka? ( >=dev-libs/librdkafka-1.0.0:= ) mongodb? ( >=dev-libs/mongo-c-driver-1.2.0 ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) redis? ( >=dev-libs/hiredis-0.11.0:= ) smtp? ( net-libs/libesmtp ) snmp? ( net-analyzer/net-snmp:0= ) spoof-source? ( net-libs/libnet:1.1= ) systemd? ( sys-apps/systemd:= ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) +REQUIRED_USE=python? ( ^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/balabit/syslog-ng/releases/download/syslog-ng-3.30.1/syslog-ng-3.30.1.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=ec7598c94ce116c9f4615443592f2a7f diff --git a/metadata/md5-cache/app-arch/Manifest.gz b/metadata/md5-cache/app-arch/Manifest.gz index ad2af8ae122e..84306fed3b69 100644 Binary files a/metadata/md5-cache/app-arch/Manifest.gz and b/metadata/md5-cache/app-arch/Manifest.gz differ diff --git a/metadata/md5-cache/app-arch/innoextract-1.7 b/metadata/md5-cache/app-arch/innoextract-1.7 deleted file mode 100644 index 416d86824bb9..000000000000 --- a/metadata/md5-cache/app-arch/innoextract-1.7 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-libs/boost:= iconv? ( virtual/libiconv ) lzma? ( app-arch/xz-utils ) sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=A tool to unpack installers created by Inno Setup -EAPI=6 -HOMEPAGE=http://constexpr.org/innoextract/ -IUSE=debug +iconv +lzma -KEYWORDS=amd64 x86 -LICENSE=ZLIB -RDEPEND=dev-libs/boost:= iconv? ( virtual/libiconv ) lzma? ( app-arch/xz-utils ) -SLOT=0 -SRC_URI=http://constexpr.org/innoextract/files/innoextract-1.7.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2a4c632ffdc83158e40e5456c4283988 diff --git a/metadata/md5-cache/app-arch/innoextract-1.8 b/metadata/md5-cache/app-arch/innoextract-1.9 similarity index 70% rename from metadata/md5-cache/app-arch/innoextract-1.8 rename to metadata/md5-cache/app-arch/innoextract-1.9 index af69eda95996..db5282afcad2 100644 --- a/metadata/md5-cache/app-arch/innoextract-1.8 +++ b/metadata/md5-cache/app-arch/innoextract-1.9 @@ -1,14 +1,14 @@ BDEPEND=dev-util/ninja dev-util/cmake DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-libs/boost:= iconv? ( virtual/libiconv ) lzma? ( app-arch/xz-utils ) +DEPEND=dev-libs/boost:=[bzip2,zlib] iconv? ( virtual/libiconv ) lzma? ( app-arch/xz-utils ) DESCRIPTION=A tool to unpack installers created by Inno Setup EAPI=7 HOMEPAGE=https://constexpr.org/innoextract/ IUSE=debug +iconv +lzma -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=ZLIB -RDEPEND=dev-libs/boost:= iconv? ( virtual/libiconv ) lzma? ( app-arch/xz-utils ) +RDEPEND=dev-libs/boost:=[bzip2,zlib] iconv? ( virtual/libiconv ) lzma? ( app-arch/xz-utils ) SLOT=0 -SRC_URI=https://constexpr.org/innoextract/files/innoextract-1.8.tar.gz +SRC_URI=https://constexpr.org/innoextract/files/innoextract-1.9.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=8191f7670c95568b6e4b8a352d413e70 +_md5_=85cb22af080f14a3f8071d4adafe05ce diff --git a/metadata/md5-cache/app-backup/Manifest.gz b/metadata/md5-cache/app-backup/Manifest.gz index 8ccf48d43a29..606f84d7d78f 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/borgmatic-1.5.11 b/metadata/md5-cache/app-backup/borgmatic-1.5.11 new file mode 100644 index 000000000000..84109946ce17 --- /dev/null +++ b/metadata/md5-cache/app-backup/borgmatic-1.5.11 @@ -0,0 +1,15 @@ +BDEPEND=test? ( app-backup/borgbackup python_single_target_python3_7? ( dev-python/colorama[python_targets_python3_7(-)] >=dev-python/pykwalify-1.6.0[python_targets_python3_7(-)] dev-python/requests[python_targets_python3_7(-)] =dev-python/pykwalify-1.6.0[python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] =dev-python/pykwalify-1.6.0[python_targets_python3_9(-)] dev-python/requests[python_targets_python3_9(-)] =dev-python/pytest-4.5.0[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/pytest-4.5.0[python_targets_python3_9(-)] ) ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_7? ( >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare setup test +DESCRIPTION=Automatically create, prune and verify backups with borgbackup +EAPI=7 +HOMEPAGE=https://torsion.org/borgmatic/ +IUSE=test python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 +LICENSE=GPL-3 +RDEPEND=app-backup/borgbackup python_single_target_python3_7? ( dev-python/colorama[python_targets_python3_7(-)] >=dev-python/pykwalify-1.6.0[python_targets_python3_7(-)] dev-python/requests[python_targets_python3_7(-)] =dev-python/pykwalify-1.6.0[python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] =dev-python/pykwalify-1.6.0[python_targets_python3_9(-)] dev-python/requests[python_targets_python3_9(-)] =dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_7? ( >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) python_single_target_python3_9? ( >=dev-python/setuptools-42.0.2[python_targets_python3_9(-)] ) +REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) +RESTRICT=test !test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/b/borgmatic/borgmatic-1.5.11.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=78911794534dcfa3e327b501b9475164 diff --git a/metadata/md5-cache/app-backup/borgmatic-1.5.9 b/metadata/md5-cache/app-backup/borgmatic-1.5.9 deleted file mode 100644 index 24e87be8e961..000000000000 --- a/metadata/md5-cache/app-backup/borgmatic-1.5.9 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( python_single_target_python3_6? ( dev-python/flexmock[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/flexmock[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/flexmock[python_targets_python3_8(-)] ) ) test? ( app-backup/borgbackup python_single_target_python3_6? ( dev-python/colorama[python_targets_python3_6(-)] >=dev-python/pykwalify-1.6.0[python_targets_python3_6(-)] dev-python/requests[python_targets_python3_6(-)] =dev-python/pykwalify-1.6.0[python_targets_python3_7(-)] dev-python/requests[python_targets_python3_7(-)] =dev-python/pykwalify-1.6.0[python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] =dev-python/pytest-4.5.0[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/pytest-4.5.0[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/pytest-4.5.0[python_targets_python3_8(-)] ) ) python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_6? ( >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst prepare setup test -DESCRIPTION=Automatically create, prune and verify backups with borgbackup -EAPI=7 -HOMEPAGE=https://torsion.org/borgmatic/ -IUSE=test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=amd64 -LICENSE=GPL-3 -RDEPEND=app-backup/borgbackup python_single_target_python3_6? ( dev-python/colorama[python_targets_python3_6(-)] >=dev-python/pykwalify-1.6.0[python_targets_python3_6(-)] dev-python/requests[python_targets_python3_6(-)] =dev-python/pykwalify-1.6.0[python_targets_python3_7(-)] dev-python/requests[python_targets_python3_7(-)] =dev-python/pykwalify-1.6.0[python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] =dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_6? ( >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/setuptools-42.0.2[python_targets_python3_8(-)] ) -REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) -RESTRICT=test !test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/b/borgmatic/borgmatic-1.5.9.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ae0f84fac72ce73e768ebdf55a8a7263 diff --git a/metadata/md5-cache/app-benchmarks/Manifest.gz b/metadata/md5-cache/app-benchmarks/Manifest.gz index d14966f9135b..5a8867cdc4d9 100644 Binary files a/metadata/md5-cache/app-benchmarks/Manifest.gz and b/metadata/md5-cache/app-benchmarks/Manifest.gz differ diff --git a/metadata/md5-cache/app-benchmarks/sysbench-1.0.19 b/metadata/md5-cache/app-benchmarks/sysbench-1.0.19 deleted file mode 100644 index 33addab10526..000000000000 --- a/metadata/md5-cache/app-benchmarks/sysbench-1.0.19 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=sys-devel/libtool virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=configure install prepare test -DEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:2 dev-libs/concurrencykit dev-libs/libxslt test? ( dev-util/cram ) -DESCRIPTION=System performance benchmark -EAPI=7 -HOMEPAGE=https://github.com/akopytov/sysbench -IUSE=aio mysql postgres test -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:2 -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/akopytov/sysbench/archive/1.0.19.tar.gz -> sysbench-1.0.19.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=281356f24d9e3cc567b49527eb94739b diff --git a/metadata/md5-cache/app-benchmarks/sysbench-1.0.20 b/metadata/md5-cache/app-benchmarks/sysbench-1.0.20 new file mode 100644 index 000000000000..d275e2e6210d --- /dev/null +++ b/metadata/md5-cache/app-benchmarks/sysbench-1.0.20 @@ -0,0 +1,16 @@ +BDEPEND=sys-devel/libtool virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure prepare setup test +DEPEND=dev-libs/concurrencykit dev-libs/libxslt test? ( python_single_target_python3_6? ( dev-util/cram[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-util/cram[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-util/cram[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-util/cram[python_targets_python3_9(-)] ) ) dev-lang/luajit:2 aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) test? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) +DESCRIPTION=A scriptable multi-threaded benchmark tool based on LuaJIT +EAPI=7 +HOMEPAGE=https://github.com/akopytov/sysbench +IUSE=+aio attachsql drizzle +largefile mysql postgres test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ +RDEPEND=dev-lang/luajit:2 aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) test? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) +REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/akopytov/sysbench/archive/1.0.20.tar.gz -> sysbench-1.0.20.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=008f8b0340caa2845379da9e3c1e8c4d diff --git a/metadata/md5-cache/app-benchmarks/sysbench-1.0.20-r100 b/metadata/md5-cache/app-benchmarks/sysbench-1.0.20-r100 new file mode 100644 index 000000000000..2b76ae14308b --- /dev/null +++ b/metadata/md5-cache/app-benchmarks/sysbench-1.0.20-r100 @@ -0,0 +1,16 @@ +BDEPEND=sys-devel/libtool virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure prepare setup test +DEPEND=dev-libs/concurrencykit dev-libs/libxslt test? ( python_single_target_python3_6? ( dev-util/cram[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-util/cram[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-util/cram[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-util/cram[python_targets_python3_9(-)] ) ) aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) test? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) lua_single_target_luajit? ( dev-lang/luajit:= ) +DESCRIPTION=A scriptable multi-threaded benchmark tool based on LuaJIT +EAPI=7 +HOMEPAGE=https://github.com/akopytov/sysbench +IUSE=+aio attachsql drizzle +largefile mysql postgres test +lua_single_target_luajit python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ +RDEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) test? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) lua_single_target_luajit? ( dev-lang/luajit:= ) +REQUIRED_USE=^^ ( lua_single_target_luajit ) ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/akopytov/sysbench/archive/1.0.20.tar.gz -> sysbench-1.0.20.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 lua-single f91b5656f00869c220a6e35ae0521c54 lua-utils 661d14f97b7d04273143565853fdfbfe multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=eec39f237964353cc019218f1117963f diff --git a/metadata/md5-cache/app-benchmarks/sysbench-9999 b/metadata/md5-cache/app-benchmarks/sysbench-9999 deleted file mode 100644 index 94d768b7e8d2..000000000000 --- a/metadata/md5-cache/app-benchmarks/sysbench-9999 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=configure install prepare test unpack -DEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:= dev-libs/concurrencykit dev-libs/libxslt sys-devel/libtool virtual/pkgconfig test? ( dev-util/cram ) -DESCRIPTION=System performance benchmark -EAPI=7 -HOMEPAGE=https://github.com/akopytov/sysbench -IUSE=aio mysql postgres test -LICENSE=GPL-2+ -PROPERTIES=live -RDEPEND=aio? ( dev-libs/libaio ) mysql? ( dev-db/mysql-connector-c:= ) postgres? ( dev-db/postgresql:= ) dev-lang/luajit:= -RESTRICT=!test? ( test ) -SLOT=0 -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 git-r3 3e7ec3d6619213460c85e2aa48398441 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=22967f9ca2488dd46b4f39cc977aecee diff --git a/metadata/md5-cache/app-cdr/Manifest.gz b/metadata/md5-cache/app-cdr/Manifest.gz index c0afd77b7e24..3db63e29c5c6 100644 Binary files a/metadata/md5-cache/app-cdr/Manifest.gz and b/metadata/md5-cache/app-cdr/Manifest.gz differ diff --git a/metadata/md5-cache/app-cdr/bchunk-1.2.2 b/metadata/md5-cache/app-cdr/bchunk-1.2.2 index 02b72d856634..88f223979ac9 100644 --- a/metadata/md5-cache/app-cdr/bchunk-1.2.2 +++ b/metadata/md5-cache/app-cdr/bchunk-1.2.2 @@ -1,4 +1,4 @@ -DEFINED_PHASES=install +DEFINED_PHASES=compile install DESCRIPTION=Convert CD images from bin/cue to iso+wav/cdr EAPI=7 HOMEPAGE=http://he.fi/bchunk/ @@ -6,4 +6,5 @@ KEYWORDS=amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos LICENSE=GPL-2+ SLOT=0 SRC_URI=http://he.fi/bchunk/bchunk-1.2.2.tar.gz -_md5_=a5e3cef5bc5dfe6b1177644c62cbf53c +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=1027b321a2c218c66457ab044484b27b diff --git a/metadata/md5-cache/app-crypt/Manifest.gz b/metadata/md5-cache/app-crypt/Manifest.gz index d088d7b9a097..692b49714fc3 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/swtpm-0.5.0 b/metadata/md5-cache/app-crypt/swtpm-0.5.1 similarity index 55% rename from metadata/md5-cache/app-crypt/swtpm-0.5.0 rename to metadata/md5-cache/app-crypt/swtpm-0.5.1 index 942a9c4d8aa7..8b8c82584719 100644 --- a/metadata/md5-cache/app-crypt/swtpm-0.5.0 +++ b/metadata/md5-cache/app-crypt/swtpm-0.5.1 @@ -1,16 +1,16 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install prepare test -DEPEND=fuse? ( dev-libs/glib:2 sys-fs/fuse:0 ) gnutls? ( dev-libs/libtasn1:= >=net-libs/gnutls-3.1.0[tools] ) !libressl? ( dev-libs/openssl:0= dev-libs/libtpms[-libressl] ) libressl? ( dev-libs/libressl:0= dev-libs/libtpms[libressl] ) seccomp? ( sys-libs/libseccomp ) test? ( net-misc/socat dev-tcltk/expect python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) +DEPEND=fuse? ( dev-libs/glib:2 sys-fs/fuse:0 ) gnutls? ( dev-libs/libtasn1:= >=net-libs/gnutls-3.1.0[tools] ) !libressl? ( dev-libs/openssl:0= dev-libs/libtpms[-libressl] ) libressl? ( dev-libs/libressl:0= dev-libs/libtpms[libressl] ) seccomp? ( sys-libs/libseccomp ) test? ( net-misc/socat dev-tcltk/expect python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) DESCRIPTION=Libtpms-based TPM emulator EAPI=7 HOMEPAGE=https://github.com/stefanberger/swtpm -IUSE=fuse gnutls libressl seccomp test python_targets_python3_7 python_targets_python3_8 +IUSE=fuse gnutls libressl seccomp test python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 LICENSE=BSD -RDEPEND=fuse? ( dev-libs/glib:2 sys-fs/fuse:0 ) gnutls? ( dev-libs/libtasn1:= >=net-libs/gnutls-3.1.0[tools] ) !libressl? ( dev-libs/openssl:0= dev-libs/libtpms[-libressl] ) libressl? ( dev-libs/libressl:0= dev-libs/libtpms[libressl] ) seccomp? ( sys-libs/libseccomp ) acct-group/tss acct-user/tss dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) +RDEPEND=fuse? ( dev-libs/glib:2 sys-fs/fuse:0 ) gnutls? ( dev-libs/libtasn1:= >=net-libs/gnutls-3.1.0[tools] ) !libressl? ( dev-libs/openssl:0= dev-libs/libtpms[-libressl] ) libressl? ( dev-libs/libressl:0= dev-libs/libtpms[libressl] ) seccomp? ( sys-libs/libseccomp ) acct-group/tss acct-user/tss dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/stefanberger/swtpm/archive/v0.5.0.tar.gz -> swtpm-0.5.0.tar.gz +SRC_URI=https://github.com/stefanberger/swtpm/archive/v0.5.1.tar.gz -> swtpm-0.5.1.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=18466c88dcff80b06a5e0f39ed0bf1c8 +_md5_=000c6f735489dd88c4f391946d9e936a diff --git a/metadata/md5-cache/app-crypt/tpm2-pkcs11-1.3.2 b/metadata/md5-cache/app-crypt/tpm2-pkcs11-1.3.2 deleted file mode 100644 index 97799dd289cd..000000000000 --- a/metadata/md5-cache/app-crypt/tpm2-pkcs11-1.3.2 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=sys-devel/autoconf-archive virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 python_targets_python3_7? ( dev-lang/python:3.7[sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-crypt/p11-kit app-crypt/tpm2-abrmd app-crypt/tpm2-tools app-crypt/tpm2-tss dev-db/sqlite:3 dev-libs/openssl dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyasn1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyasn1-modules[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DESCRIPTION=A PKCS#11 interface for TPM2 hardware -EAPI=7 -HOMEPAGE=https://tpm2-software.github.io/ -IUSE=python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 -LICENSE=BSD-2 -RDEPEND=app-crypt/p11-kit app-crypt/tpm2-abrmd app-crypt/tpm2-tools app-crypt/tpm2-tss dev-db/sqlite:3 dev-libs/openssl dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyasn1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyasn1-modules[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] python_targets_python3_7? ( dev-lang/python:3.7[sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/tpm2-software/tpm2-pkcs11/releases/download/1.3.2/tpm2-pkcs11-1.3.2.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d4e4ee3bd184dd4858ebc97621d80918 diff --git a/metadata/md5-cache/app-crypt/tpm2-pkcs11-1.4.0 b/metadata/md5-cache/app-crypt/tpm2-pkcs11-1.4.0 deleted file mode 100644 index aa0260c6a1cf..000000000000 --- a/metadata/md5-cache/app-crypt/tpm2-pkcs11-1.4.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=sys-devel/autoconf-archive virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 python_targets_python3_7? ( dev-lang/python:3.7[sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-crypt/p11-kit app-crypt/tpm2-abrmd app-crypt/tpm2-tools[fapi?] !fapi? ( app-crypt/tpm2-tss ) fapi? ( >=app-crypt/tpm2-tss-3.0.0[fapi] ) dev-db/sqlite:3 dev-libs/openssl dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyasn1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyasn1-modules[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DESCRIPTION=A PKCS#11 interface for TPM2 hardware -EAPI=7 -HOMEPAGE=https://tpm2-software.github.io/ -IUSE=fapi python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 -LICENSE=BSD-2 -RDEPEND=app-crypt/p11-kit app-crypt/tpm2-abrmd app-crypt/tpm2-tools[fapi?] !fapi? ( app-crypt/tpm2-tss ) fapi? ( >=app-crypt/tpm2-tss-3.0.0[fapi] ) dev-db/sqlite:3 dev-libs/openssl dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyasn1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyasn1-modules[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] python_targets_python3_7? ( dev-lang/python:3.7[sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/tpm2-software/tpm2-pkcs11/releases/download/1.4.0/tpm2-pkcs11-1.4.0.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=9aef8e85fce7af96166a5a25495a969c diff --git a/metadata/md5-cache/app-crypt/tpm2-pkcs11-1.5.0 b/metadata/md5-cache/app-crypt/tpm2-pkcs11-1.5.0 new file mode 100644 index 000000000000..72124fb1eb66 --- /dev/null +++ b/metadata/md5-cache/app-crypt/tpm2-pkcs11-1.5.0 @@ -0,0 +1,16 @@ +BDEPEND=sys-devel/autoconf-archive virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 python_targets_python3_7? ( dev-lang/python:3.7[sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-crypt/p11-kit app-crypt/tpm2-abrmd app-crypt/tpm2-tools[fapi?] !fapi? ( app-crypt/tpm2-tss ) fapi? ( >=app-crypt/tpm2-tss-3.0.1[fapi] ) dev-db/sqlite:3 dev-libs/openssl:= dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyasn1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyasn1-modules[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DESCRIPTION=A PKCS#11 interface for TPM2 hardware +EAPI=7 +HOMEPAGE=https://tpm2-software.github.io/ +IUSE=fapi python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 +LICENSE=BSD-2 +RDEPEND=app-crypt/p11-kit app-crypt/tpm2-abrmd app-crypt/tpm2-tools[fapi?] !fapi? ( app-crypt/tpm2-tss ) fapi? ( >=app-crypt/tpm2-tss-3.0.1[fapi] ) dev-db/sqlite:3 dev-libs/openssl:= dev-python/cryptography[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyasn1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyasn1-modules[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pyyaml[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_7? ( dev-lang/python:3.7[sqlite] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite] ) python_targets_python3_9? ( dev-lang/python:3.9[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/tpm2-software/tpm2-pkcs11/releases/download/1.5.0/tpm2-pkcs11-1.5.0.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=bbd045475e1e9e17aab48968e0b87274 diff --git a/metadata/md5-cache/app-crypt/tpm2-tools-5.0 b/metadata/md5-cache/app-crypt/tpm2-tools-5.0 new file mode 100644 index 000000000000..983179944768 --- /dev/null +++ b/metadata/md5-cache/app-crypt/tpm2-tools-5.0 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure prepare +DEPEND=net-misc/curl:= >=app-crypt/tpm2-tss-3.0.1:=[fapi?] !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) +DESCRIPTION=Tools for the TPM 2.0 TSS +EAPI=7 +HOMEPAGE=https://github.com/tpm2-software/tpm2-tools +IUSE=+fapi libressl +KEYWORDS=~amd64 +LICENSE=BSD +RDEPEND=net-misc/curl:= >=app-crypt/tpm2-tss-3.0.1:=[fapi?] !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/tpm2-software/tpm2-tools/releases/download/5.0/tpm2-tools-5.0.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=c0754a8786126a874eb03f2d985afef2 diff --git a/metadata/md5-cache/app-crypt/tpm2-tss-3.0.1 b/metadata/md5-cache/app-crypt/tpm2-tss-3.0.1 index ca8bcd6e1176..f7a9904b84ec 100644 --- a/metadata/md5-cache/app-crypt/tpm2-tss-3.0.1 +++ b/metadata/md5-cache/app-crypt/tpm2-tss-3.0.1 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/tpm2-software/tpm2-tss/releases/download/3.0.1/tpm2-tss-3.0.1.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 tmpfiles 6170dc7770585fb3f16efdee789a3218 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=af2180ab0954d0fa98f448acb29e7fd4 +_md5_=fcf4bbf7bb49328c01c3e4a5d2dac8c7 diff --git a/metadata/md5-cache/app-dicts/Manifest.gz b/metadata/md5-cache/app-dicts/Manifest.gz index 93ce039263e6..aa3026eb9b82 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 e9d71aefdb27..166936ee3d2b 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 @@ -10,5 +10,5 @@ RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) REQUIRED_USE=|| ( ruby_targets_ruby25 ) SLOT=0 SRC_URI=http://prime.sourceforge.jp/src/prime-dict-1.0.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2903c720cf95a4bdc1ad0231753301d1 diff --git a/metadata/md5-cache/app-doc/Manifest.gz b/metadata/md5-cache/app-doc/Manifest.gz index 0ea6950c3324..63c8f1f4fa10 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/gnucash-docs-3.8b b/metadata/md5-cache/app-doc/gnucash-docs-3.8b deleted file mode 100644 index 328a1a8bbea0..000000000000 --- a/metadata/md5-cache/app-doc/gnucash-docs-3.8b +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare -DEPEND=app-text/docbook-xml-dtd app-text/docbook-xsl-stylesheets app-text/rarian dev-libs/libxml2 dev-libs/libxslt >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Documentation package for GnuCash -EAPI=6 -HOMEPAGE=http://www.gnucash.org/ -IUSE=l10n_de l10n_it l10n_ja l10n_pt l10n_ru -KEYWORDS=amd64 ~ppc ~ppc64 x86 -LICENSE=GPL-2 FDL-1.1 -SLOT=0 -SRC_URI=https://github.com/Gnucash/gnucash-docs/archive/3.8b.tar.gz -> gnucash-docs-3.8b.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 5e9aaae6eb511a4c4d9964fe8259110d gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 optfeature 6c9aa35fc16df43d7142ef2660e00e25 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=e777d383b7ec91da008bec1c7430b0c2 diff --git a/metadata/md5-cache/app-doc/gnucash-docs-4.0 b/metadata/md5-cache/app-doc/gnucash-docs-4.0 deleted file mode 100644 index 9ef806e174fe..000000000000 --- a/metadata/md5-cache/app-doc/gnucash-docs-4.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare -DEPEND=app-text/docbook-xml-dtd app-text/docbook-xsl-stylesheets app-text/rarian dev-libs/libxml2 dev-libs/libxslt >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Documentation package for GnuCash -EAPI=6 -HOMEPAGE=http://www.gnucash.org/ -IUSE=l10n_de l10n_it l10n_ja l10n_pt l10n_ru -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 -LICENSE=GPL-2 FDL-1.1 -SLOT=0 -SRC_URI=https://github.com/Gnucash/gnucash-docs/archive/4.0.tar.gz -> gnucash-docs-4.0.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 5e9aaae6eb511a4c4d9964fe8259110d gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 optfeature 6c9aa35fc16df43d7142ef2660e00e25 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4431501f537b107c4083cb8085389ee9 diff --git a/metadata/md5-cache/app-doc/gnucash-docs-4.1 b/metadata/md5-cache/app-doc/gnucash-docs-4.1 deleted file mode 100644 index 373070885559..000000000000 --- a/metadata/md5-cache/app-doc/gnucash-docs-4.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare -DEPEND=app-text/docbook-xml-dtd app-text/docbook-xsl-stylesheets app-text/rarian dev-libs/libxml2 dev-libs/libxslt >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Documentation package for GnuCash -EAPI=6 -HOMEPAGE=http://www.gnucash.org/ -IUSE=l10n_de l10n_it l10n_ja l10n_pt l10n_ru -KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~x86 -LICENSE=GPL-2 FDL-1.1 -SLOT=0 -SRC_URI=https://github.com/Gnucash/gnucash-docs/archive/4.1.tar.gz -> gnucash-docs-4.1.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 5e9aaae6eb511a4c4d9964fe8259110d gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 optfeature 6c9aa35fc16df43d7142ef2660e00e25 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=d406549e75710be8eb5da33fe0542970 diff --git a/metadata/md5-cache/app-editors/Manifest.gz b/metadata/md5-cache/app-editors/Manifest.gz index b35e3174e5e3..ceed06ad2c30 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.4 b/metadata/md5-cache/app-editors/diakonos-0.9.4 index 8360a33e322d..c94f546eac94 100644 --- a/metadata/md5-cache/app-editors/diakonos-0.9.4 +++ b/metadata/md5-cache/app-editors/diakonos-0.9.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://diakonos.pist0s.ca/archives/diakonos-0.9.4.tar.bz2 -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f45beb9be7a40380eb406afe664f0d52 diff --git a/metadata/md5-cache/app-editors/gvim-8.2.0360 b/metadata/md5-cache/app-editors/gvim-8.2.0360 index 45f56d631240..be753473e2ca 100644 --- a/metadata/md5-cache/app-editors/gvim-8.2.0360 +++ b/metadata/md5-cache/app-editors/gvim-8.2.0360 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=~app-editors/vim-core-8.2.0360 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) +DEPEND=~app-editors/vim-core-8.2.0360 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) DESCRIPTION=GUI version of the Vim text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=acl aqua cscope debug gtk gtk2 lua luajit motif neXt netbeans nls perl python racket ruby selinux session sound tcl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris LICENSE=vim -RDEPEND=~app-editors/vim-core-8.2.0360 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) +RDEPEND=~app-editors/vim-core-8.2.0360 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v8.2.0360.tar.gz -> vim-8.2.0360.tar.gz https://dev.gentoo.org/~radhermit/vim/vim-8.2.0210-gentoo-patches.tar.bz2 -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=f4552371111d8a0763ecf2d4456b5285 diff --git a/metadata/md5-cache/app-editors/gvim-8.2.0508 b/metadata/md5-cache/app-editors/gvim-8.2.0508 index 0ab49d13b620..60e7e95ff588 100644 --- a/metadata/md5-cache/app-editors/gvim-8.2.0508 +++ b/metadata/md5-cache/app-editors/gvim-8.2.0508 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=~app-editors/vim-core-8.2.0508 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) +DEPEND=~app-editors/vim-core-8.2.0508 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) DESCRIPTION=GUI version of the Vim text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=acl aqua cscope debug gtk gtk2 lua luajit motif neXt netbeans nls perl python racket ruby selinux session sound tcl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris LICENSE=vim -RDEPEND=~app-editors/vim-core-8.2.0508 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) +RDEPEND=~app-editors/vim-core-8.2.0508 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v8.2.0508.tar.gz -> vim-8.2.0508.tar.gz https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=8dd8744ac80b1ff6d5bac8309dd216ee diff --git a/metadata/md5-cache/app-editors/gvim-8.2.0638 b/metadata/md5-cache/app-editors/gvim-8.2.0638 index 94b20747b62d..40952b4ad8cf 100644 --- a/metadata/md5-cache/app-editors/gvim-8.2.0638 +++ b/metadata/md5-cache/app-editors/gvim-8.2.0638 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=~app-editors/vim-core-8.2.0638 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) +DEPEND=~app-editors/vim-core-8.2.0638 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) DESCRIPTION=GUI version of the Vim text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=acl aqua cscope debug gtk gtk2 lua luajit motif neXt netbeans nls perl python racket ruby selinux session sound tcl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris LICENSE=vim -RDEPEND=~app-editors/vim-core-8.2.0638 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) +RDEPEND=~app-editors/vim-core-8.2.0638 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v8.2.0638.tar.gz -> vim-8.2.0638.tar.gz https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=8dd8744ac80b1ff6d5bac8309dd216ee diff --git a/metadata/md5-cache/app-editors/gvim-8.2.0814 b/metadata/md5-cache/app-editors/gvim-8.2.0814 index 9712a6709a95..a7d52bcf0a62 100644 --- a/metadata/md5-cache/app-editors/gvim-8.2.0814 +++ b/metadata/md5-cache/app-editors/gvim-8.2.0814 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=~app-editors/vim-core-8.2.0814 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) +DEPEND=~app-editors/vim-core-8.2.0814 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) DESCRIPTION=GUI version of the Vim text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=acl aqua cscope debug gtk gtk2 lua luajit motif neXt netbeans nls perl python racket ruby selinux session sound tcl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris LICENSE=vim -RDEPEND=~app-editors/vim-core-8.2.0814 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) +RDEPEND=~app-editors/vim-core-8.2.0814 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v8.2.0814.tar.gz -> vim-8.2.0814.tar.gz https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=14f0723ae59aa9e417cc9afa8ad3feb8 diff --git a/metadata/md5-cache/app-editors/gvim-9999 b/metadata/md5-cache/app-editors/gvim-9999 index 69c49f2934f0..d7321e6ab3f1 100644 --- a/metadata/md5-cache/app-editors/gvim-9999 +++ b/metadata/md5-cache/app-editors/gvim-9999 @@ -1,15 +1,15 @@ BDEPEND=>=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=~app-editors/vim-core-9999 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) +DEPEND=~app-editors/vim-core-9999 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) sys-devel/autoconf virtual/pkgconfig nls? ( sys-devel/gettext ) DESCRIPTION=GUI version of the Vim text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=acl aqua cscope debug gtk gtk2 lua luajit motif neXt netbeans nls perl python racket ruby selinux session sound tcl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 LICENSE=vim PROPERTIES=live -RDEPEND=~app-editors/vim-core-9999 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) +RDEPEND=~app-editors/vim-core-9999 >=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt acl? ( kernel_linux? ( sys-apps/acl ) ) !aqua? ( gtk? ( x11-libs/gtk+:3 x11-libs/libXft ) !gtk? ( gtk2? ( >=x11-libs/gtk+-2.6:2 x11-libs/libXft ) !gtk2? ( motif? ( >=x11-libs/motif-2.3:0 ) !motif? ( neXt? ( x11-libs/neXtaw ) !neXt? ( x11-libs/libXaw ) ) ) ) ) cscope? ( dev-util/cscope ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) nls? ( virtual/libintl ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) session? ( x11-libs/libSM ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) RESTRICT=test SLOT=0 -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=8dd8744ac80b1ff6d5bac8309dd216ee diff --git a/metadata/md5-cache/app-editors/mousepad-0.4.90 b/metadata/md5-cache/app-editors/mousepad-0.4.90 new file mode 100644 index 000000000000..ecc79c74faf3 --- /dev/null +++ b/metadata/md5-cache/app-editors/mousepad-0.4.90 @@ -0,0 +1,12 @@ +DEFINED_PHASES=postinst postrm +DEPEND=>=dev-libs/glib-2.45.8:2= >=xfce-base/xfconf-4.12:= >=x11-libs/gtk+-3.20:3= x11-libs/gtksourceview:3.0= dev-lang/perl dev-util/intltool sys-devel/gettext virtual/pkgconfig +DESCRIPTION=GTK+-based editor for the Xfce Desktop Environment +EAPI=7 +HOMEPAGE=https://git.xfce.org/apps/mousepad/about/ +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=GPL-2+ +RDEPEND=>=dev-libs/glib-2.45.8:2= >=xfce-base/xfconf-4.12:= >=x11-libs/gtk+-3.20:3= x11-libs/gtksourceview:3.0= +SLOT=0 +SRC_URI=https://archive.xfce.org/src/apps/mousepad/0.4/mousepad-0.4.90.tar.bz2 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=1d9b5a4491348567138cf77c018e1fc3 diff --git a/metadata/md5-cache/app-editors/vim-8.2.0360 b/metadata/md5-cache/app-editors/vim-8.2.0360 index 02c3490e6d39..016c53da24ee 100644 --- a/metadata/md5-cache/app-editors/vim-8.2.0360 +++ b/metadata/md5-cache/app-editors/vim-8.2.0360 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0360 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) +DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0360 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) DESCRIPTION=Vim, an improved vi-style text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=X acl cscope debug gpm lua luajit minimal nls perl python racket ruby selinux sound tcl terminal vim-pager python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=vim -RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0360 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) +RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0360 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) vim-pager? ( !minimal ) SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v8.2.0360.tar.gz -> vim-8.2.0360.tar.gz https://dev.gentoo.org/~radhermit/vim/vim-8.2.0210-gentoo-patches.tar.bz2 -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=ddf9fbd3cc07671bc788417692492c2a diff --git a/metadata/md5-cache/app-editors/vim-8.2.0508 b/metadata/md5-cache/app-editors/vim-8.2.0508 index 2b3a1dca9a74..30704d18cf99 100644 --- a/metadata/md5-cache/app-editors/vim-8.2.0508 +++ b/metadata/md5-cache/app-editors/vim-8.2.0508 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0508 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) +DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0508 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) DESCRIPTION=Vim, an improved vi-style text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=X acl cscope debug gpm lua luajit minimal nls perl python racket ruby selinux sound tcl terminal vim-pager python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=vim -RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0508 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) +RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0508 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) vim-pager? ( !minimal ) SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v8.2.0508.tar.gz -> vim-8.2.0508.tar.gz https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=5314a396ad7b4fe613c104815154c14f diff --git a/metadata/md5-cache/app-editors/vim-8.2.0638 b/metadata/md5-cache/app-editors/vim-8.2.0638 index 9bd3d75089c6..8e5104c386d1 100644 --- a/metadata/md5-cache/app-editors/vim-8.2.0638 +++ b/metadata/md5-cache/app-editors/vim-8.2.0638 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0638 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) +DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0638 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) DESCRIPTION=Vim, an improved vi-style text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=X acl cscope debug gpm lua luajit minimal nls perl python racket ruby selinux sound tcl terminal vim-pager python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=vim -RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0638 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) +RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0638 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) vim-pager? ( !minimal ) SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v8.2.0638.tar.gz -> vim-8.2.0638.tar.gz https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=5314a396ad7b4fe613c104815154c14f diff --git a/metadata/md5-cache/app-editors/vim-8.2.0814 b/metadata/md5-cache/app-editors/vim-8.2.0814 index a46d1f534eaf..b20a5ad23908 100644 --- a/metadata/md5-cache/app-editors/vim-8.2.0814 +++ b/metadata/md5-cache/app-editors/vim-8.2.0814 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0814 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) +DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0814 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) DESCRIPTION=Vim, an improved vi-style text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=X acl cscope debug gpm lua luajit minimal nls perl python racket ruby selinux sound tcl terminal vim-pager python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 KEYWORDS=~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=vim -RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0814 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) +RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-8.2.0814 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) vim-pager? ( !minimal ) SLOT=0 SRC_URI=https://github.com/vim/vim/archive/v8.2.0814.tar.gz -> vim-8.2.0814.tar.gz https://dev.gentoo.org/~zlogene/distfiles/app-editors/vim/vim-8.2.0360-gentoo-patches.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=450530e6dbec99209ca6da3bf8684d28 diff --git a/metadata/md5-cache/app-editors/vim-9999 b/metadata/md5-cache/app-editors/vim-9999 index e0e4dc36b294..e8f0ab9cc0b5 100644 --- a/metadata/md5-cache/app-editors/vim-9999 +++ b/metadata/md5-cache/app-editors/vim-9999 @@ -1,14 +1,14 @@ BDEPEND=>=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack -DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-9999 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) +DEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-9999 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) sys-devel/autoconf nls? ( sys-devel/gettext ) DESCRIPTION=Vim, an improved vi-style text editor EAPI=7 HOMEPAGE=https://vim.sourceforge.io/ https://github.com/vim/vim IUSE=X acl cscope debug gpm lua luajit minimal nls perl python racket ruby selinux sound tcl terminal vim-pager python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 LICENSE=vim PROPERTIES=live -RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-9999 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) +RDEPEND=>=app-eselect/eselect-vi-1.1 >=sys-libs/ncurses-5.2-r2:0= nls? ( virtual/libintl ) acl? ( kernel_linux? ( sys-apps/acl ) ) cscope? ( dev-util/cscope ) gpm? ( >=sys-libs/gpm-1.19.3 ) lua? ( luajit? ( dev-lang/luajit:2= ) !luajit? ( dev-lang/lua:0[deprecated] ) ) !minimal? ( ~app-editors/vim-core-9999 ) vim-pager? ( app-editors/vim-core[-minimal] ) perl? ( dev-lang/perl:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+)] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) racket? ( dev-scheme/racket ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) selinux? ( sys-libs/libselinux ) sound? ( media-libs/libcanberra ) tcl? ( dev-lang/tcl:0= ) X? ( x11-libs/libXt ) REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) vim-pager? ( !minimal ) SLOT=0 -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=5314a396ad7b4fe613c104815154c14f diff --git a/metadata/md5-cache/app-emacs/Manifest.gz b/metadata/md5-cache/app-emacs/Manifest.gz index 1fe672b2dda1..11738374fd23 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/ddskk-16.2 b/metadata/md5-cache/app-emacs/ddskk-16.2 index 7ddc06f9f27a..57430dd16316 100644 --- a/metadata/md5-cache/app-emacs/ddskk-16.2 +++ b/metadata/md5-cache/app-emacs/ddskk-16.2 @@ -6,9 +6,9 @@ HOMEPAGE=http://openlab.ring.gr.jp/skk/ IUSE=ruby KEYWORDS=amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-2 -RDEPEND=|| ( app-i18n/skk-jisyo virtual/skkserv ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) >=app-editors/emacs-24:* +RDEPEND=|| ( app-i18n/skk-jisyo virtual/skkserv ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) >=app-editors/emacs-24:* RESTRICT=test SLOT=0 SRC_URI=http://openlab.ring.gr.jp/skk/maintrunk/ddskk-16.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 elisp 00840e1f4eb277c757dbfa5abf73c4c7 elisp-common 34cc2b6f6d8914019a353fe39cff43ce ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 elisp 00840e1f4eb277c757dbfa5abf73c4c7 elisp-common 34cc2b6f6d8914019a353fe39cff43ce ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 _md5_=19d7cd4e6f64e86b219b6d048ead2d15 diff --git a/metadata/md5-cache/app-emacs/ddskk-16.3 b/metadata/md5-cache/app-emacs/ddskk-16.3 index 48ae64850d97..e9ced491f17f 100644 --- a/metadata/md5-cache/app-emacs/ddskk-16.3 +++ b/metadata/md5-cache/app-emacs/ddskk-16.3 @@ -6,9 +6,9 @@ HOMEPAGE=http://openlab.ring.gr.jp/skk/ IUSE=ruby KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-2+ -RDEPEND=|| ( app-i18n/skk-jisyo virtual/skkserv ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) >=app-editors/emacs-24:* +RDEPEND=|| ( app-i18n/skk-jisyo virtual/skkserv ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) >=app-editors/emacs-24:* RESTRICT=test SLOT=0 SRC_URI=https://github.com/skk-dev/ddskk/archive/ddskk-16.3_Kutomatsunai.tar.gz -> ddskk-16.3.tar.gz -_eclasses_=elisp 00840e1f4eb277c757dbfa5abf73c4c7 elisp-common 34cc2b6f6d8914019a353fe39cff43ce ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd +_eclasses_=elisp 00840e1f4eb277c757dbfa5abf73c4c7 elisp-common 34cc2b6f6d8914019a353fe39cff43ce ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd _md5_=2cf515e4d0bce249f4e218d02ad3711f diff --git a/metadata/md5-cache/app-emacs/ddskk-17.1 b/metadata/md5-cache/app-emacs/ddskk-17.1 index 8263175a83a9..7dd10ae41681 100644 --- a/metadata/md5-cache/app-emacs/ddskk-17.1 +++ b/metadata/md5-cache/app-emacs/ddskk-17.1 @@ -6,9 +6,9 @@ HOMEPAGE=http://openlab.ring.gr.jp/skk/ IUSE=ruby KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-3+ -RDEPEND=|| ( app-i18n/skk-jisyo virtual/skkserv ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) >=app-editors/emacs-24.3:* +RDEPEND=|| ( app-i18n/skk-jisyo virtual/skkserv ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) >=app-editors/emacs-24.3:* 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 00840e1f4eb277c757dbfa5abf73c4c7 elisp-common 34cc2b6f6d8914019a353fe39cff43ce ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd +_eclasses_=elisp 00840e1f4eb277c757dbfa5abf73c4c7 elisp-common 34cc2b6f6d8914019a353fe39cff43ce ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd _md5_=68e6f9bad37891f7b53d2a4666614a2c diff --git a/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 b/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 new file mode 100644 index 000000000000..fe77f310660d --- /dev/null +++ b/metadata/md5-cache/app-emacs/yaml-mode-0.0.15 @@ -0,0 +1,12 @@ +BDEPEND=>=app-editors/emacs-23.1:* +DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack +DESCRIPTION=A major mode for GNU Emacs for editing YAML files +EAPI=7 +HOMEPAGE=https://github.com/yoshiki/yaml-mode +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +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 00840e1f4eb277c757dbfa5abf73c4c7 elisp-common 34cc2b6f6d8914019a353fe39cff43ce +_md5_=5f52e78d199c5b19c8e988b2ca48b0d2 diff --git a/metadata/md5-cache/app-emulation/Manifest.gz b/metadata/md5-cache/app-emulation/Manifest.gz index 04540ea4807d..d81a34e162ed 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/lxc-4.0.5 b/metadata/md5-cache/app-emulation/lxc-4.0.5 index cee83b0a4d20..2a166c3a2550 100644 --- a/metadata/md5-cache/app-emulation/lxc-4.0.5 +++ b/metadata/md5-cache/app-emulation/lxc-4.0.5 @@ -5,10 +5,10 @@ DESCRIPTION=LinuX Containers userspace utilities EAPI=7 HOMEPAGE=https://linuxcontainers.org/ https://github.com/lxc/lxc IUSE=apparmor +caps doc examples libressl man pam seccomp selinux +ssl +tools verify-sig kernel_linux verify-sig -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 LICENSE=LGPL-3 RDEPEND=app-misc/pax-utils sys-apps/util-linux sys-libs/libcap virtual/awk caps? ( sys-libs/libcap ) pam? ( sys-libs/pam ) seccomp? ( sys-libs/libseccomp ) selinux? ( sys-libs/libselinux ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) SLOT=0 SRC_URI=https://linuxcontainers.org/downloads/lxc/lxc-4.0.5.tar.gz verify-sig? ( https://linuxcontainers.org/downloads/lxc/lxc-4.0.5.tar.gz.asc ) _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 optfeature 6c9aa35fc16df43d7142ef2660e00e25 pam 226d8d2ff588bdfd7d188512dbdb189d readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=01dece80de0de840c2f351c95cce55b7 +_md5_=ba1ad95e447b858053285b5a987005f7 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 a7f8bf94e513..096dbd340ef8 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_ruby25 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 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 87507d5a83cd..c790ecfcc51a 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_ruby25 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 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a83c665ce1731beda4ac8a4b1901aa30 diff --git a/metadata/md5-cache/app-emulation/wine-staging-5.19 b/metadata/md5-cache/app-emulation/wine-staging-5.22 similarity index 99% rename from metadata/md5-cache/app-emulation/wine-staging-5.19 rename to metadata/md5-cache/app-emulation/wine-staging-5.22 index abdf50e02d20..8e6a3028b85e 100644 --- a/metadata/md5-cache/app-emulation/wine-staging-5.19 +++ b/metadata/md5-cache/app-emulation/wine-staging-5.22 @@ -9,7 +9,7 @@ LICENSE=LGPL-2.1 RDEPEND=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(-)?] ) faudio? ( app-emulation/faudio:=[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(-)?] ) gcrypt? ( dev-libs/libgcrypt:=[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(-)?] ) gsm? ( media-sound/gsm:=[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(-)?] ) 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(-)?] ) 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(-)?] ) lcms? ( media-libs/lcms:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ldap? ( net-nds/openldap:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/mpg123-1.5.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ncurses? ( >=sys-libs/ncurses-5.2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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/glu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) 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(-)?] ) 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(-)?] ) themes? ( dev-libs/glib:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/cairo[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/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(-)?] ) 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(-)?] ) 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(-)?] ) vaapi? ( x11-libs/libva[X,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) xml? ( dev-libs/libxml2[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/libxslt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) app-emulation/wine-desktop-common >app-eselect/eselect-wine-0.3 !app-emulation/wine:0 dos? ( >=games-emulation/dosbox-0.74_p20160629 ) gecko? ( app-emulation/wine-gecko:2.47.1[abi_x86_32?,abi_x86_64?] ) mono? ( app-emulation/wine-mono:5.1.1 ) perl? ( dev-lang/perl dev-perl/XML-Simple ) pulseaudio? ( realtime? ( sys-auth/rtkit ) ) samba? ( >=net-fs/samba-3.0.25[winbind] ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) X? ( truetype ) elibc_glibc? ( threads ) osmesa? ( opengl ) pipelight? ( staging ) test? ( abi_x86_32 ) themes? ( staging ) vaapi? ( staging ) vkd3d? ( vulkan ) RESTRICT=test -SLOT=5.19 -SRC_URI=https://dl.winehq.org/wine/source/5.x/wine-5.19.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20200523.tar.xz staging? ( https://github.com/wine-staging/wine-staging/archive/v5.19.tar.gz -> wine-staging-5.19.tar.gz ) +SLOT=5.22 +SRC_URI=https://dl.winehq.org/wine/source/5.x/wine-5.22.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20200523.tar.xz staging? ( https://github.com/wine-staging/wine-staging/archive/v5.22.tar.gz -> wine-staging-5.22.tar.gz ) _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 pax-utils a41d1fd1c111289ffa04490de6ee79d7 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=6eebfddd281810791edb7f823d86c1c5 diff --git a/metadata/md5-cache/app-emulation/wine-vanilla-5.18 b/metadata/md5-cache/app-emulation/wine-vanilla-5.22 similarity index 99% rename from metadata/md5-cache/app-emulation/wine-vanilla-5.18 rename to metadata/md5-cache/app-emulation/wine-vanilla-5.22 index 162e2f4ca146..9e88d624e112 100644 --- a/metadata/md5-cache/app-emulation/wine-vanilla-5.18 +++ b/metadata/md5-cache/app-emulation/wine-vanilla-5.22 @@ -6,10 +6,10 @@ HOMEPAGE=https://www.winehq.org/ IUSE=+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc +faudio +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev +udisks +unwind v4l vkd3d vulkan +X +xcomposite xinerama +xml abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 test KEYWORDS=-* ~amd64 ~x86 LICENSE=LGPL-2.1 -RDEPEND=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(-)?] ) faudio? ( app-emulation/faudio:=[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(-)?] ) gsm? ( media-sound/gsm:=[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(-)?] ) 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(-)?] ) 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(-)?] ) lcms? ( media-libs/lcms:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ldap? ( net-nds/openldap:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/mpg123-1.5.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ncurses? ( >=sys-libs/ncurses-5.2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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/glu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) 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(-)?] ) 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(-)?] ) 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(-)?] ) xml? ( dev-libs/libxml2[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/libxslt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) app-emulation/wine-desktop-common >app-eselect/eselect-wine-0.3 !app-emulation/wine:0 dos? ( >=games-emulation/dosbox-0.74_p20160629 ) gecko? ( app-emulation/wine-gecko:2.47.1[abi_x86_32?,abi_x86_64?] ) mono? ( app-emulation/wine-mono:5.1.0 ) perl? ( dev-lang/perl dev-perl/XML-Simple ) pulseaudio? ( realtime? ( sys-auth/rtkit ) ) samba? ( >=net-fs/samba-3.0.25[winbind] ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) +RDEPEND=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(-)?] ) faudio? ( app-emulation/faudio:=[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(-)?] ) gsm? ( media-sound/gsm:=[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(-)?] ) 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(-)?] ) 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(-)?] ) lcms? ( media-libs/lcms:2=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ldap? ( net-nds/openldap:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) mp3? ( >=media-sound/mpg123-1.5.0[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ncurses? ( >=sys-libs/ncurses-5.2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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/glu[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] virtual/opengl[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) 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(-)?] ) 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(-)?] ) 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(-)?] ) xml? ( dev-libs/libxml2[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/libxslt[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) app-emulation/wine-desktop-common >app-eselect/eselect-wine-0.3 !app-emulation/wine:0 dos? ( >=games-emulation/dosbox-0.74_p20160629 ) gecko? ( app-emulation/wine-gecko:2.47.1[abi_x86_32?,abi_x86_64?] ) mono? ( app-emulation/wine-mono:5.1.1 ) perl? ( dev-lang/perl dev-perl/XML-Simple ) pulseaudio? ( realtime? ( sys-auth/rtkit ) ) samba? ( >=net-fs/samba-3.0.25[winbind] ) selinux? ( sec-policy/selinux-wine ) udisks? ( sys-fs/udisks:2 ) REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) X? ( truetype ) elibc_glibc? ( threads ) osmesa? ( opengl ) test? ( abi_x86_32 ) vkd3d? ( vulkan ) RESTRICT=test -SLOT=5.18 -SRC_URI=https://dl.winehq.org/wine/source/5.x/wine-5.18.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20200523.tar.xz +SLOT=5.22 +SRC_URI=https://dl.winehq.org/wine/source/5.x/wine-5.22.tar.xz https://dev.gentoo.org/~sarnex/distfiles/wine/gentoo-wine-patches-20200523.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 pax-utils a41d1fd1c111289ffa04490de6ee79d7 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=36645eeb9c894391a04c36775e21572e +_md5_=d1d65fb3c1ef6b59d61c6862ae6884a9 diff --git a/metadata/md5-cache/app-i18n/Manifest.gz b/metadata/md5-cache/app-i18n/Manifest.gz index c9e38ba0b380..e5946f0c1687 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/opencc-1.0.5 b/metadata/md5-cache/app-i18n/opencc-1.0.5 index 49da58e48d48..9b912086c4da 100644 --- a/metadata/md5-cache/app-i18n/opencc-1.0.5 +++ b/metadata/md5-cache/app-i18n/opencc-1.0.5 @@ -1,13 +1,13 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=doc? ( app-doc/doxygen ) sys-devel/make >=dev-util/cmake-3.9.6 -DESCRIPTION=Libraries for conversion between Traditional and Simplified Chinese -EAPI=6 +BDEPEND=|| ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) doc? ( app-doc/doxygen ) dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare setup test +DESCRIPTION=Library for conversion between Traditional and Simplified Chinese characters +EAPI=7 HOMEPAGE=https://github.com/BYVoid/OpenCC IUSE=doc test KEYWORDS=amd64 arm64 hppa ppc ppc64 sparc x86 -LICENSE=Apache-2.0 +LICENSE=Apache-2.0 BSD-2 MIT test? ( BSD ) RESTRICT=!test? ( test ) SLOT=0/2 SRC_URI=https://github.com/BYVoid/OpenCC/archive/ver.1.0.5.tar.gz -> opencc-1.0.5.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf vcs-snapshot b1abf460a493fc59ebb25de0df3f09dd wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=dbb9ca08a10e46f16a9e7a1d7411734a +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=925a9a678e61d80f5121b191d8e71907 diff --git a/metadata/md5-cache/app-i18n/opencc-1.0.6 b/metadata/md5-cache/app-i18n/opencc-1.0.6 new file mode 100644 index 000000000000..dacb853451a2 --- /dev/null +++ b/metadata/md5-cache/app-i18n/opencc-1.0.6 @@ -0,0 +1,13 @@ +BDEPEND=|| ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) doc? ( app-doc/doxygen ) dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare setup test +DESCRIPTION=Library for conversion between Traditional and Simplified Chinese characters +EAPI=7 +HOMEPAGE=https://github.com/BYVoid/OpenCC +IUSE=doc test +KEYWORDS=~amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 +LICENSE=Apache-2.0 BSD-2 MIT test? ( BSD ) +RESTRICT=!test? ( test ) +SLOT=0/2 +SRC_URI=https://github.com/BYVoid/OpenCC/archive/ver.1.0.6.tar.gz -> opencc-1.0.6.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=f058eacbe04c55d8db07ab589a97098c diff --git a/metadata/md5-cache/app-i18n/opencc-9999 b/metadata/md5-cache/app-i18n/opencc-9999 index 994732c6356e..263d1bf34823 100644 --- a/metadata/md5-cache/app-i18n/opencc-9999 +++ b/metadata/md5-cache/app-i18n/opencc-9999 @@ -1,12 +1,12 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=doc? ( app-doc/doxygen ) sys-devel/make >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] -DESCRIPTION=Libraries for conversion between Traditional and Simplified Chinese -EAPI=6 +BDEPEND=|| ( dev-lang/python:3.9 dev-lang/python:3.8 dev-lang/python:3.7 ) doc? ( app-doc/doxygen ) dev-util/ninja dev-util/cmake >=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=compile configure install prepare setup test unpack +DESCRIPTION=Library for conversion between Traditional and Simplified Chinese characters +EAPI=7 HOMEPAGE=https://github.com/BYVoid/OpenCC IUSE=doc test -LICENSE=Apache-2.0 +LICENSE=Apache-2.0 BSD-2 MIT || ( BSD-2 LGPL-2.1+ ) test? ( BSD ) PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0/2 -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=175f359b75285f8d646a66cadd0d4370 +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=39a48cd59a09f507fc8f865c0b93d682 diff --git a/metadata/md5-cache/app-i18n/skk-jisyo-999999 b/metadata/md5-cache/app-i18n/skk-jisyo-999999 index ff749e45f4cf..4dbdf680ade7 100644 --- a/metadata/md5-cache/app-i18n/skk-jisyo-999999 +++ b/metadata/md5-cache/app-i18n/skk-jisyo-999999 @@ -1,6 +1,6 @@ BDEPEND=>=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile install prepare unpack -DEPEND=|| ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems app-i18n/skktools virtual/awk cdb? ( || ( dev-db/tinycdb dev-db/cdb ) ) +DEPEND=|| ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems app-i18n/skktools virtual/awk cdb? ( || ( dev-db/tinycdb dev-db/cdb ) ) DESCRIPTION=Jisyo (dictionary) files for the SKK Japanese-input software EAPI=7 HOMEPAGE=http://openlab.ring.gr.jp/skk/dic.html @@ -8,5 +8,5 @@ IUSE=cdb ruby_targets_ruby24 ruby_targets_ruby25 ruby_targets_ruby26 LICENSE=CC-BY-SA-3.0 GPL-2+ public-domain unicode PROPERTIES=live SLOT=0 -_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 _md5_=403f0b0e6214ec20833d97317838f0a5 diff --git a/metadata/md5-cache/app-i18n/tomoe-0.6.0-r6 b/metadata/md5-cache/app-i18n/tomoe-0.6.0-r6 index cf9a0fa4054c..7d8a36ee71d2 100644 --- a/metadata/md5-cache/app-i18n/tomoe-0.6.0-r6 +++ b/metadata/md5-cache/app-i18n/tomoe-0.6.0-r6 @@ -11,5 +11,5 @@ REQUIRED_USE=ruby? ( ^^ ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_r RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/tomoe/tomoe-0.6.0.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a02d43ef11fd35f889fd57fc6cb64c64 diff --git a/metadata/md5-cache/app-misc/Manifest.gz b/metadata/md5-cache/app-misc/Manifest.gz index bd94dff93542..7b7868758480 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/chkcrontab-1.7-r1 b/metadata/md5-cache/app-misc/chkcrontab-1.7-r1 index d577f4e3d6b9..2432bc680709 100644 --- a/metadata/md5-cache/app-misc/chkcrontab-1.7-r1 +++ b/metadata/md5-cache/app-misc/chkcrontab-1.7-r1 @@ -4,7 +4,7 @@ DESCRIPTION=A tool to detect crontab errors EAPI=7 HOMEPAGE=https://github.com/lyda/chkcrontab IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Apache-2.0 RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/lyda/chkcrontab/archive/v1.7.tar.gz -> chkcrontab-1.7.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=563c0c81ec460d81fcbcba4a9e08c600 +_md5_=f63eb62ccea57b82244c226c0e63b9ee diff --git a/metadata/md5-cache/app-misc/hivex-1.3.14 b/metadata/md5-cache/app-misc/hivex-1.3.14 index 35cedf484db8..3663ca4e76ef 100644 --- a/metadata/md5-cache/app-misc/hivex-1.3.14 +++ b/metadata/md5-cache/app-misc/hivex-1.3.14 @@ -11,5 +11,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 ) ) ruby? ( || ( ruby RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://libguestfs.org/download/hivex/hivex-1.3.14.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 preserve-libs ef207dc62baddfddfd39a164d9797648 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6a2471e9871813e912d7225fa478bdff diff --git a/metadata/md5-cache/app-misc/hivex-1.3.18 b/metadata/md5-cache/app-misc/hivex-1.3.18 index 5437a27e8552..31d2dfb83b4f 100644 --- a/metadata/md5-cache/app-misc/hivex-1.3.18 +++ b/metadata/md5-cache/app-misc/hivex-1.3.18 @@ -12,5 +12,5 @@ REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://libguestfs.org/download/hivex/hivex-1.3.18.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=29c4052f162e084e74387118838abfa1 diff --git a/metadata/md5-cache/app-office/Manifest.gz b/metadata/md5-cache/app-office/Manifest.gz index 6995379f2c1e..c5962796d238 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/gnucash-3.8b b/metadata/md5-cache/app-office/gnucash-3.8b deleted file mode 100644 index ab8e40084c58..000000000000 --- a/metadata/md5-cache/app-office/gnucash-3.8b +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=>=dev-libs/glib-2.46.0:2 >=dev-libs/libxml2-2.7.0:2 >=dev-scheme/guile-2.2.0:12=[deprecated,regex] >=sys-libs/zlib-1.1.4 dev-libs/boost:=[icu,nls] dev-libs/icu:= dev-libs/libxslt aqbanking? ( >=net-libs/aqbanking-6[ofx?] >=sys-libs/gwenhywfar-5.1.2 smartcard? ( sys-libs/libchipcard ) ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gui? ( >=x11-libs/gtk+-3.14.0:3 gnome-base/dconf net-libs/webkit-gtk:4= sys-libs/gwenhywfar[gtk] ) mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] ) ofx? ( >=dev-libs/libofx-0.9.1:= ) postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) quotes? ( >=dev-perl/Finance-Quote-1.11 dev-perl/Date-Manip dev-perl/HTML-TableExtract ) sqlite? ( >=dev-db/libdbi-0.9.0 >=dev-db/libdbi-drivers-0.9.0[sqlite] ) >=dev-cpp/gtest-1.8.0 >=sys-devel/gettext-0.19.6 dev-lang/perl dev-perl/XML-Parser sys-devel/libtool virtual/pkgconfig -DESCRIPTION=A personal finance manager -EAPI=7 -HOMEPAGE=http://www.gnucash.org/ -IUSE=aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres python quotes -register2 smartcard sqlite test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=amd64 ~ppc ~ppc64 x86 -LICENSE=GPL-2 -PDEPEND=doc? ( ~app-doc/gnucash-docs-3.8b gnome-extra/yelp ) -RDEPEND=>=dev-libs/glib-2.46.0:2 >=dev-libs/libxml2-2.7.0:2 >=dev-scheme/guile-2.2.0:12=[deprecated,regex] >=sys-libs/zlib-1.1.4 dev-libs/boost:=[icu,nls] dev-libs/icu:= dev-libs/libxslt aqbanking? ( >=net-libs/aqbanking-6[ofx?] >=sys-libs/gwenhywfar-5.1.2 smartcard? ( sys-libs/libchipcard ) ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gui? ( >=x11-libs/gtk+-3.14.0:3 gnome-base/dconf net-libs/webkit-gtk:4= sys-libs/gwenhywfar[gtk] ) mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] ) ofx? ( >=dev-libs/libofx-0.9.1:= ) postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) quotes? ( >=dev-perl/Finance-Quote-1.11 dev-perl/Date-Manip dev-perl/HTML-TableExtract ) sqlite? ( >=dev-db/libdbi-0.9.0 >=dev-db/libdbi-drivers-0.9.0[sqlite] ) -REQUIRED_USE=examples? ( gui ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) smartcard? ( aqbanking ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/Gnucash/gnucash/releases/download/3.8b/gnucash-3.8b.tar.bz2 -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1de260b00dd06fbb73aea4330584cc69 diff --git a/metadata/md5-cache/app-office/gnucash-3.8b-r1 b/metadata/md5-cache/app-office/gnucash-3.8b-r1 deleted file mode 100644 index ad137345ed23..000000000000 --- a/metadata/md5-cache/app-office/gnucash-3.8b-r1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 -DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=>=dev-libs/glib-2.46.0:2 >=dev-libs/libxml2-2.7.0:2 >=dev-scheme/guile-2.2.0:12=[deprecated,regex] >=sys-libs/zlib-1.1.4 dev-libs/boost:=[icu,nls] dev-libs/icu:= dev-libs/libxslt aqbanking? ( >=net-libs/aqbanking-6[ofx?] sys-libs/gwenhywfar smartcard? ( sys-libs/libchipcard ) ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gui? ( >=x11-libs/gtk+-3.14.0:3 gnome-base/dconf net-libs/webkit-gtk:4= aqbanking? ( sys-libs/gwenhywfar[gtk] ) ) mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] ) ofx? ( >=dev-libs/libofx-0.9.1:= ) postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) quotes? ( >=dev-perl/Finance-Quote-1.11 dev-perl/Date-Manip dev-perl/HTML-TableExtract ) sqlite? ( >=dev-db/libdbi-0.9.0 >=dev-db/libdbi-drivers-0.9.0[sqlite] ) >=dev-cpp/gtest-1.8.0 >=sys-devel/gettext-0.19.6 dev-lang/perl dev-perl/XML-Parser sys-devel/libtool virtual/pkgconfig -DESCRIPTION=A personal finance manager -EAPI=7 -HOMEPAGE=http://www.gnucash.org/ -IUSE=aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres python quotes -register2 smartcard sqlite test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 -LICENSE=GPL-2 -PDEPEND=doc? ( ~app-doc/gnucash-docs-3.8b gnome-extra/yelp ) -RDEPEND=>=dev-libs/glib-2.46.0:2 >=dev-libs/libxml2-2.7.0:2 >=dev-scheme/guile-2.2.0:12=[deprecated,regex] >=sys-libs/zlib-1.1.4 dev-libs/boost:=[icu,nls] dev-libs/icu:= dev-libs/libxslt aqbanking? ( >=net-libs/aqbanking-6[ofx?] sys-libs/gwenhywfar smartcard? ( sys-libs/libchipcard ) ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gui? ( >=x11-libs/gtk+-3.14.0:3 gnome-base/dconf net-libs/webkit-gtk:4= aqbanking? ( sys-libs/gwenhywfar[gtk] ) ) mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] ) ofx? ( >=dev-libs/libofx-0.9.1:= ) postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) quotes? ( >=dev-perl/Finance-Quote-1.11 dev-perl/Date-Manip dev-perl/HTML-TableExtract ) sqlite? ( >=dev-db/libdbi-0.9.0 >=dev-db/libdbi-drivers-0.9.0[sqlite] ) -REQUIRED_USE=examples? ( gui ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) smartcard? ( aqbanking ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/Gnucash/gnucash/releases/download/3.8b/gnucash-3.8b.tar.bz2 -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=f3a310ebf9ec414983919267e9ce36e3 diff --git a/metadata/md5-cache/app-office/gnucash-4.0 b/metadata/md5-cache/app-office/gnucash-4.0 deleted file mode 100644 index 43ea39dfd04d..000000000000 --- a/metadata/md5-cache/app-office/gnucash-4.0 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-lang/swig dev-util/cmake virtual/pkgconfig || ( >=sys-devel/gcc-8:* >=sys-devel/clang-6:* ) dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test -DEPEND=>=dev-libs/glib-2.56.1:2 >=dev-scheme/guile-2.2.0:12=[deprecated,regex] >=sys-libs/zlib-1.1.4 dev-libs/boost:=[icu,nls] dev-libs/icu:= dev-libs/libxml2:2 dev-libs/libxslt aqbanking? ( >=net-libs/aqbanking-6[ofx?] sys-libs/gwenhywfar smartcard? ( sys-libs/libchipcard ) ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gui? ( >=x11-libs/gtk+-3.22.30:3 gnome-base/dconf net-libs/webkit-gtk:4= aqbanking? ( sys-libs/gwenhywfar[gtk] ) ) mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] ) ofx? ( >=dev-libs/libofx-0.9.1:= ) postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) quotes? ( >=dev-perl/Finance-Quote-1.11 dev-perl/Date-Manip dev-perl/HTML-TableExtract ) sqlite? ( dev-db/libdbi dev-db/libdbi-drivers[sqlite] ) >=dev-cpp/gtest-1.8.0 >=sys-devel/gettext-0.20 dev-lang/perl dev-perl/XML-Parser sys-devel/libtool -DESCRIPTION=A personal finance manager -EAPI=7 -HOMEPAGE=http://www.gnucash.org/ -IUSE=aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres python quotes -register2 smartcard sqlite test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 -LICENSE=GPL-2 -PDEPEND=doc? ( ~app-doc/gnucash-docs-4.0 gnome-extra/yelp ) -RDEPEND=>=dev-libs/glib-2.56.1:2 >=dev-scheme/guile-2.2.0:12=[deprecated,regex] >=sys-libs/zlib-1.1.4 dev-libs/boost:=[icu,nls] dev-libs/icu:= dev-libs/libxml2:2 dev-libs/libxslt aqbanking? ( >=net-libs/aqbanking-6[ofx?] sys-libs/gwenhywfar smartcard? ( sys-libs/libchipcard ) ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gui? ( >=x11-libs/gtk+-3.22.30:3 gnome-base/dconf net-libs/webkit-gtk:4= aqbanking? ( sys-libs/gwenhywfar[gtk] ) ) mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] ) ofx? ( >=dev-libs/libofx-0.9.1:= ) postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) quotes? ( >=dev-perl/Finance-Quote-1.11 dev-perl/Date-Manip dev-perl/HTML-TableExtract ) sqlite? ( dev-db/libdbi dev-db/libdbi-drivers[sqlite] ) -REQUIRED_USE=examples? ( gui ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) smartcard? ( aqbanking ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/Gnucash/gnucash/releases/download/4.0/gnucash-4.0.tar.bz2 -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cc66aca99a0bdd6bf1ab49c488f7690b diff --git a/metadata/md5-cache/app-office/gnucash-4.1 b/metadata/md5-cache/app-office/gnucash-4.1 deleted file mode 100644 index 81abbba30808..000000000000 --- a/metadata/md5-cache/app-office/gnucash-4.1 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-lang/swig dev-util/cmake virtual/pkgconfig || ( >=sys-devel/gcc-8:* >=sys-devel/clang-6:* ) dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test -DEPEND=>=dev-libs/glib-2.56.1:2 >=dev-scheme/guile-2.2.0:=[regex] >=sys-libs/zlib-1.1.4 dev-libs/boost:=[icu,nls] dev-libs/icu:= dev-libs/libxml2:2 dev-libs/libxslt aqbanking? ( >=net-libs/aqbanking-6[ofx?] sys-libs/gwenhywfar smartcard? ( sys-libs/libchipcard ) ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gui? ( >=x11-libs/gtk+-3.22.30:3 gnome-base/dconf net-libs/webkit-gtk:4= aqbanking? ( sys-libs/gwenhywfar[gtk] ) ) mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] ) ofx? ( >=dev-libs/libofx-0.9.1:= ) postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) quotes? ( >=dev-perl/Finance-Quote-1.11 dev-perl/Date-Manip dev-perl/HTML-TableExtract ) sqlite? ( dev-db/libdbi dev-db/libdbi-drivers[sqlite] ) >=dev-cpp/gtest-1.8.0 >=sys-devel/gettext-0.20 dev-lang/perl dev-perl/XML-Parser sys-devel/libtool -DESCRIPTION=A personal finance manager -EAPI=7 -HOMEPAGE=http://www.gnucash.org/ -IUSE=aqbanking debug doc examples gnome-keyring +gui mysql nls ofx postgres python quotes -register2 smartcard sqlite test python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~x86 -LICENSE=GPL-2 -PDEPEND=doc? ( ~app-doc/gnucash-docs-4.1 gnome-extra/yelp ) -RDEPEND=>=dev-libs/glib-2.56.1:2 >=dev-scheme/guile-2.2.0:=[regex] >=sys-libs/zlib-1.1.4 dev-libs/boost:=[icu,nls] dev-libs/icu:= dev-libs/libxml2:2 dev-libs/libxslt aqbanking? ( >=net-libs/aqbanking-6[ofx?] sys-libs/gwenhywfar smartcard? ( sys-libs/libchipcard ) ) gnome-keyring? ( >=app-crypt/libsecret-0.18 ) gui? ( >=x11-libs/gtk+-3.22.30:3 gnome-base/dconf net-libs/webkit-gtk:4= aqbanking? ( sys-libs/gwenhywfar[gtk] ) ) mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] ) ofx? ( >=dev-libs/libofx-0.9.1:= ) postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) quotes? ( >=dev-perl/Finance-Quote-1.11 dev-perl/Date-Manip dev-perl/HTML-TableExtract ) sqlite? ( dev-db/libdbi dev-db/libdbi-drivers[sqlite] ) -REQUIRED_USE=examples? ( gui ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) smartcard? ( aqbanking ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/Gnucash/gnucash/releases/download/4.1/gnucash-4.1.tar.bz2 -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=db6cf780abda05eaf4ec3e772372dcf1 diff --git a/metadata/md5-cache/app-office/libreoffice-7.0.3.1 b/metadata/md5-cache/app-office/libreoffice-7.0.3.1 new file mode 100644 index 000000000000..ddaf3fab4792 --- /dev/null +++ b/metadata/md5-cache/app-office/libreoffice-7.0.3.1 @@ -0,0 +1,17 @@ +BDEPEND=dev-util/intltool sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig odk? ( >=app-doc/doxygen-1.8.4 ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack +DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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.15 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 >=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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) clang? ( || ( ( sys-devel/clang:12 sys-devel/llvm:12 =sys-devel/lld-12* ) ( sys-devel/clang:11 sys-devel/llvm:11 =sys-devel/lld-11* ) ( sys-devel/clang:10 sys-devel/llvm:10 =sys-devel/lld-10* ) ) ) 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 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.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] ) >=dev-libs/libatomic_ops-7.2d dev-perl/Archive-Zip >=dev-util/cppunit-1.14.0 >=dev-util/gperf-3.1 dev-util/mdds:1/1.5 media-libs/glm sys-devel/ucpp x11-base/xorg-proto x11-libs/libXt x11-libs/libXtst java? ( dev-java/ant-core || ( dev-java/openjdk:11 dev-java/openjdk-bin:11 ) ) test? ( app-crypt/gnupg dev-util/cppunit media-fonts/dejavu media-fonts/liberation-fonts ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DESCRIPTION=A full office productivity suite +EAPI=7 +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 elibc_FreeBSD java python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~amd64-linux +LICENSE=|| ( LGPL-3 MPL-1.1 ) +PDEPEND==app-office/libreoffice-l10n-7.0* +RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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.15 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 >=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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) clang? ( || ( ( sys-devel/clang:12 sys-devel/llvm:12 =sys-devel/lld-12* ) ( sys-devel/clang:11 sys-devel/llvm:11 =sys-devel/lld-11* ) ( sys-devel/clang:10 sys-devel/llvm:10 =sys-devel/lld-10* ) ) ) 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 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.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 !app-office/openoffice 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 ) +REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) base? ( firebird java ) bluetooth? ( dbus ) gtk? ( dbus ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) +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.0.3.1.tar.xz https://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-7.0.3.1.tar.xz https://download.documentfoundation.org/libreoffice/src/7.0.3//libreoffice-7.0.3.1.tar.xz https://download.documentfoundation.org/libreoffice/src/7.0.3//libreoffice-help-7.0.3.1.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.3.1/src/libreoffice-7.0.3.1.tar.xz https://downloadarchive.documentfoundation.org/libreoffice/old/7.0.3.1/src/libreoffice-help-7.0.3.1.tar.xz https://dev-www.libreoffice.org/src//dtoa-20180411.tgz https://dev-www.libreoffice.org/src//skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz https://dev-www.libreoffice.org/src//QR-Code-generator-1.4.0.tar.gz 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 7d999b62b8749fad43fff00620cedf47 bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=edd2679a0a185cdcc85d98183d3be536 diff --git a/metadata/md5-cache/app-office/libreoffice-7.0.9999 b/metadata/md5-cache/app-office/libreoffice-7.0.9999 index 6384f04a26cf..c4ab3736f524 100644 --- a/metadata/md5-cache/app-office/libreoffice-7.0.9999 +++ b/metadata/md5-cache/app-office/libreoffice-7.0.9999 @@ -1,17 +1,17 @@ BDEPEND=dev-util/intltool sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig odk? ( >=app-doc/doxygen-1.8.4 ) >=dev-vcs/git-1.8.2.1[curl] >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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.15 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 >=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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) 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 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.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] ) >=dev-libs/libatomic_ops-7.2d dev-perl/Archive-Zip >=dev-util/cppunit-1.14.0 >=dev-util/gperf-3.1 dev-util/mdds:1/1.5 media-libs/glm sys-devel/ucpp x11-base/xorg-proto x11-libs/libXt x11-libs/libXtst java? ( dev-java/ant-core || ( dev-java/openjdk:11 dev-java/openjdk-bin:11 ) ) test? ( app-crypt/gnupg dev-util/cppunit media-fonts/dejavu media-fonts/liberation-fonts ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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.15 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 >=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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) clang? ( || ( ( sys-devel/clang:12 sys-devel/llvm:12 =sys-devel/lld-12* ) ( sys-devel/clang:11 sys-devel/llvm:11 =sys-devel/lld-11* ) ( sys-devel/clang:10 sys-devel/llvm:10 =sys-devel/lld-10* ) ) ) 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 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.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] ) >=dev-libs/libatomic_ops-7.2d dev-perl/Archive-Zip >=dev-util/cppunit-1.14.0 >=dev-util/gperf-3.1 dev-util/mdds:1/1.5 media-libs/glm sys-devel/ucpp x11-base/xorg-proto x11-libs/libXt x11-libs/libXtst java? ( dev-java/ant-core || ( dev-java/openjdk:11 dev-java/openjdk-bin:11 ) ) test? ( app-crypt/gnupg dev-util/cppunit media-fonts/dejavu media-fonts/liberation-fonts ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=A full office productivity suite EAPI=7 HOMEPAGE=https://www.libreoffice.org -IUSE=accessibility base bluetooth +branding coinmp +cups +dbus debug eds firebird googledrive gstreamer +gtk kde ldap +mariadb odk pdfimport postgres test libreoffice_extensions_nlpsolver libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher elibc_FreeBSD java python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +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 elibc_FreeBSD java python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 LICENSE=|| ( LGPL-3 MPL-1.1 ) PDEPEND=!app-office/libreoffice-l10n PROPERTIES=live -RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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.15 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 >=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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) 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 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.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 !app-office/openoffice 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 ) +RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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.15 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 >=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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) clang? ( || ( ( sys-devel/clang:12 sys-devel/llvm:12 =sys-devel/lld-12* ) ( sys-devel/clang:11 sys-devel/llvm:11 =sys-devel/lld-11* ) ( sys-devel/clang:10 sys-devel/llvm:10 =sys-devel/lld-10* ) ) ) 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 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.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 !app-office/openoffice 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 ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) base? ( firebird java ) bluetooth? ( dbus ) gtk? ( dbus ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev-www.libreoffice.org/src//dtoa-20180411.tgz https://dev-www.libreoffice.org/src//skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz https://dev-www.libreoffice.org/src//QR-Code-generator-1.4.0.tar.gz 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 7d999b62b8749fad43fff00620cedf47 bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=beacdc05533cb111241e56d221fe0ddd +_md5_=3b09ea3920b04122314f5c8087093820 diff --git a/metadata/md5-cache/app-office/libreoffice-9999 b/metadata/md5-cache/app-office/libreoffice-9999 index b815f56b5723..404a72307091 100644 --- a/metadata/md5-cache/app-office/libreoffice-9999 +++ b/metadata/md5-cache/app-office/libreoffice-9999 @@ -1,17 +1,17 @@ BDEPEND=dev-util/intltool sys-devel/bison sys-devel/flex sys-devel/gettext virtual/pkgconfig odk? ( >=app-doc/doxygen-1.8.4 ) >=dev-vcs/git-1.8.2.1[curl] >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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] media-gfx/fontforge media-gfx/graphite2 media-libs/fontconfig media-libs/freetype: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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) 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 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.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] ) >=dev-libs/libatomic_ops-7.2d dev-perl/Archive-Zip >=dev-util/cppunit-1.14.0 >=dev-util/gperf-3.1 dev-util/mdds:1/1.5 media-libs/glm sys-devel/ucpp x11-base/xorg-proto x11-libs/libXt x11-libs/libXtst java? ( dev-java/ant-core || ( dev-java/openjdk:11 dev-java/openjdk-bin:11 ) ) test? ( app-crypt/gnupg dev-util/cppunit media-fonts/dejavu media-fonts/liberation-fonts ) java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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] media-gfx/fontforge media-gfx/graphite2 media-libs/fontconfig media-libs/freetype: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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) clang? ( || ( ( sys-devel/clang:12 sys-devel/llvm:12 =sys-devel/lld-12* ) ( sys-devel/clang:11 sys-devel/llvm:11 =sys-devel/lld-11* ) ( sys-devel/clang:10 sys-devel/llvm:10 =sys-devel/lld-10* ) ) ) 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 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.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] ) >=dev-libs/libatomic_ops-7.2d dev-perl/Archive-Zip >=dev-util/cppunit-1.14.0 >=dev-util/gperf-3.1 dev-util/mdds:1/1.5 media-libs/glm sys-devel/ucpp x11-base/xorg-proto x11-libs/libXt x11-libs/libXtst java? ( dev-java/ant-core || ( dev-java/openjdk:11 dev-java/openjdk-bin:11 ) ) test? ( app-crypt/gnupg dev-util/cppunit media-fonts/dejavu media-fonts/liberation-fonts ) java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=A full office productivity suite EAPI=7 HOMEPAGE=https://www.libreoffice.org -IUSE=accessibility base bluetooth +branding coinmp +cups +dbus debug eds firebird googledrive gstreamer +gtk kde ldap +mariadb odk pdfimport postgres test libreoffice_extensions_nlpsolver libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher elibc_FreeBSD java python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +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 elibc_FreeBSD java python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 LICENSE=|| ( LGPL-3 MPL-1.1 ) PDEPEND=!app-office/libreoffice-l10n PROPERTIES=live -RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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] media-gfx/fontforge media-gfx/graphite2 media-libs/fontconfig media-libs/freetype: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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) 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 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.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 !app-office/openoffice 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 ) +RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[threads(+),xml] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) app-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 >=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] media-gfx/fontforge media-gfx/graphite2 media-libs/fontconfig media-libs/freetype: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 net-libs/neon 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 accessibility? ( python_single_target_python3_6? ( dev-python/lxml[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/lxml[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/lxml[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/lxml[python_targets_python3_9(-)] ) ) bluetooth? ( dev-libs/glib:2 net-wireless/bluez ) clang? ( || ( ( sys-devel/clang:12 sys-devel/llvm:12 =sys-devel/lld-12* ) ( sys-devel/clang:11 sys-devel/llvm:11 =sys-devel/lld-11* ) ( sys-devel/clang:10 sys-devel/llvm:10 =sys-devel/lld-10* ) ) ) 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 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.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 !app-office/openoffice 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 ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) base? ( firebird java ) bluetooth? ( dbus ) gtk? ( dbus ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=branding? ( https://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) https://dev-www.libreoffice.org/src//dtoa-20180411.tgz https://dev-www.libreoffice.org/src//skia-m85-e684c6daef6bfb774a325a069eda1f76ca6ac26c.tar.xz https://dev-www.libreoffice.org/src//QR-Code-generator-1.4.0.tar.gz 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 7d999b62b8749fad43fff00620cedf47 bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=8396850a6504b7c3f51e0183110ba19d +_md5_=c1035371b853cb530eaa38bea380684a diff --git a/metadata/md5-cache/app-office/libreoffice-l10n-7.0.3.1 b/metadata/md5-cache/app-office/libreoffice-l10n-7.0.3.1 new file mode 100644 index 000000000000..dd3be235592f --- /dev/null +++ b/metadata/md5-cache/app-office/libreoffice-l10n-7.0.3.1 @@ -0,0 +1,14 @@ +BDEPEND=>=app-arch/rpm2targz-9.0.0.3g +DEFINED_PHASES=compile configure install prepare unpack +DESCRIPTION=Translations for the Libreoffice suite +EAPI=7 +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 ~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.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_am.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_am.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_am.tar.gz ) ) l10n_ar? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ar.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ar.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ar.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ar.tar.gz ) ) l10n_ast? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ast.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ast.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ast.tar.gz ) ) l10n_bg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_bg.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bg.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bg.tar.gz ) ) l10n_bn-IN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_bn-IN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bn-IN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bn-IN.tar.gz ) ) l10n_bn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_bn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bn.tar.gz ) ) l10n_bo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_bo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bo.tar.gz ) ) l10n_bs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_bs.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bs.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_bs.tar.gz ) ) l10n_ca-valencia? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ca-valencia.tar.gz ) ) l10n_ca? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ca.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ca.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ca.tar.gz ) ) l10n_cs? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_cs.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_cs.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_cs.tar.gz ) ) l10n_da? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_da.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_da.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_da.tar.gz ) ) l10n_de? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_de.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_de.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_de.tar.gz ) ) l10n_dz? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_dz.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_dz.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_dz.tar.gz ) ) l10n_el? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_el.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_el.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_el.tar.gz ) ) l10n_en-GB? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_en-GB.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-GB.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-GB.tar.gz ) ) l10n_en? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_en-US.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-US.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-US.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-US.tar.gz ) ) l10n_en-ZA? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_en-ZA.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-ZA.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_en-ZA.tar.gz ) ) l10n_eo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_eo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_eo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_eo.tar.gz ) ) l10n_es? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_es.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_es.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_es.tar.gz ) ) l10n_et? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_et.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_et.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_et.tar.gz ) ) l10n_eu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_eu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_eu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_eu.tar.gz ) ) l10n_fi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_fi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_fi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_fi.tar.gz ) ) l10n_fr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_fr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_fr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_fr.tar.gz ) ) l10n_gl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_gl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_gl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_gl.tar.gz ) ) l10n_gu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_gu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_gu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_gu.tar.gz ) ) l10n_he? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_he.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_he.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_he.tar.gz ) ) l10n_hi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_hi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hi.tar.gz ) ) l10n_hr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_hr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hr.tar.gz ) ) l10n_hu? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_hu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_hu.tar.gz ) ) l10n_id? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_id.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_id.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_id.tar.gz ) ) l10n_is? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_is.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_is.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_is.tar.gz ) ) l10n_it? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_it.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_it.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_it.tar.gz ) ) l10n_ja? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ja.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ja.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ja.tar.gz ) ) l10n_ka? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ka.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ka.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ka.tar.gz ) ) l10n_km? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_km.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_km.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_km.tar.gz ) ) l10n_ko? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ko.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ko.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ko.tar.gz ) ) l10n_lo? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_lo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lo.tar.gz ) ) l10n_lt? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_lt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lt.tar.gz ) ) l10n_lv? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_lv.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lv.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lv.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_lv.tar.gz ) ) l10n_mk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_mk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_mk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_mk.tar.gz ) ) l10n_nb? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_nb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nb.tar.gz ) ) l10n_ne? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ne.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ne.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ne.tar.gz ) ) l10n_nl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_nl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nl.tar.gz ) ) l10n_nn? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_nn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_nn.tar.gz ) ) l10n_om? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_om.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_om.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_om.tar.gz ) ) l10n_pl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_pl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pl.tar.gz ) ) l10n_pt-BR? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_pt-BR.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pt-BR.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pt-BR.tar.gz ) ) l10n_pt? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_pt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_pt.tar.gz ) ) l10n_ro? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ro.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ro.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ro.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ro.tar.gz ) ) l10n_ru? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ru.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ru.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ru.tar.gz ) ) l10n_si? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_si.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_si.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_si.tar.gz ) ) l10n_sid? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_sid.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sid.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sid.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sid.tar.gz ) ) l10n_sk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_sk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sk.tar.gz ) ) l10n_sl? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_sl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sl.tar.gz ) ) l10n_sq? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_sq.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sq.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sq.tar.gz ) ) l10n_sv? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_sv.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sv.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_sv.tar.gz ) ) l10n_ta? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ta.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ta.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ta.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ta.tar.gz ) ) l10n_tg? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_tg.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_tg.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_tg.tar.gz ) ) l10n_tr? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_tr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_tr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_tr.tar.gz ) ) l10n_ug? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_ug.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ug.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_ug.tar.gz ) ) l10n_uk? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_uk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_uk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_uk.tar.gz ) ) l10n_vi? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_vi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_vi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_vi.tar.gz ) ) l10n_zh-CN? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_zh-CN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_zh-CN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_zh-CN.tar.gz ) ) l10n_zh-TW? ( offlinehelp? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_helppack_zh-TW.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_zh-TW.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_helppack_zh-TW.tar.gz ) ) l10n_am? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_am.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_am.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_am.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_am.tar.gz ) l10n_ar? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ar.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ar.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ar.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ar.tar.gz ) l10n_ast? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ast.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ast.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ast.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ast.tar.gz ) l10n_bg? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_bg.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bg.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bg.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bg.tar.gz ) l10n_bn-IN? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_bn-IN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bn-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bn-IN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bn-IN.tar.gz ) l10n_bn? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_bn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bn.tar.gz ) l10n_bo? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_bo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bo.tar.gz ) l10n_bs? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_bs.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bs.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bs.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_bs.tar.gz ) l10n_ca-valencia? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ca-valencia.tar.gz ) l10n_ca? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ca.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ca.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ca.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ca.tar.gz ) l10n_cs? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_cs.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_cs.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_cs.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_cs.tar.gz ) l10n_da? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_da.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_da.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_da.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_da.tar.gz ) l10n_de? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_de.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_de.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_de.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_de.tar.gz ) l10n_dz? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_dz.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dz.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dz.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dz.tar.gz ) l10n_el? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_el.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_el.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_el.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_el.tar.gz ) l10n_en-GB? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_en-GB.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_en-GB.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_en-GB.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_en-GB.tar.gz ) l10n_en-ZA? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_en-ZA.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_en-ZA.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_en-ZA.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_en-ZA.tar.gz ) l10n_eo? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_eo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_eo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_eo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_eo.tar.gz ) l10n_es? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_es.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_es.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_es.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_es.tar.gz ) l10n_et? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_et.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_et.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_et.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_et.tar.gz ) l10n_eu? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_eu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_eu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_eu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_eu.tar.gz ) l10n_fi? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_fi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fi.tar.gz ) l10n_fr? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_fr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fr.tar.gz ) l10n_gl? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_gl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gl.tar.gz ) l10n_gu? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_gu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gu.tar.gz ) l10n_he? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_he.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_he.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_he.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_he.tar.gz ) l10n_hi? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_hi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hi.tar.gz ) l10n_hr? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_hr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hr.tar.gz ) l10n_hu? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_hu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hu.tar.gz ) l10n_id? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_id.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_id.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_id.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_id.tar.gz ) l10n_is? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_is.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_is.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_is.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_is.tar.gz ) l10n_it? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_it.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_it.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_it.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_it.tar.gz ) l10n_ja? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ja.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ja.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ja.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ja.tar.gz ) l10n_ka? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ka.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ka.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ka.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ka.tar.gz ) l10n_km? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_km.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_km.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_km.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_km.tar.gz ) l10n_ko? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ko.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ko.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ko.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ko.tar.gz ) l10n_lo? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_lo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lo.tar.gz ) l10n_lt? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_lt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lt.tar.gz ) l10n_lv? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_lv.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lv.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lv.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lv.tar.gz ) l10n_mk? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_mk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mk.tar.gz ) l10n_nb? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_nb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nb.tar.gz ) l10n_ne? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ne.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ne.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ne.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ne.tar.gz ) l10n_nl? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_nl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nl.tar.gz ) l10n_nn? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_nn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nn.tar.gz ) l10n_om? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_om.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_om.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_om.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_om.tar.gz ) l10n_pl? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_pl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pl.tar.gz ) l10n_pt-BR? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_pt-BR.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pt-BR.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pt-BR.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pt-BR.tar.gz ) l10n_pt? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_pt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pt.tar.gz ) l10n_ro? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ro.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ro.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ro.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ro.tar.gz ) l10n_ru? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ru.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ru.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ru.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ru.tar.gz ) l10n_si? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_si.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_si.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_si.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_si.tar.gz ) l10n_sid? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sid.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sid.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sid.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sid.tar.gz ) l10n_sk? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sk.tar.gz ) l10n_sl? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sl.tar.gz ) l10n_sq? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sq.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sq.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sq.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sq.tar.gz ) l10n_sv? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sv.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sv.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sv.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sv.tar.gz ) l10n_ta? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ta.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ta.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ta.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ta.tar.gz ) l10n_tg? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_tg.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tg.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tg.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tg.tar.gz ) l10n_tr? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_tr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tr.tar.gz ) l10n_ug? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ug.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ug.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ug.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ug.tar.gz ) l10n_uk? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_uk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_uk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_uk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_uk.tar.gz ) l10n_vi? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_vi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_vi.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_vi.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_vi.tar.gz ) l10n_zh-CN? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_zh-CN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zh-CN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zh-CN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zh-CN.tar.gz ) l10n_zh-TW? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_zh-TW.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zh-TW.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zh-TW.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zh-TW.tar.gz ) l10n_af? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_af.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_af.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_af.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_af.tar.gz ) l10n_as? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_as.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_as.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_as.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_as.tar.gz ) l10n_be? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_be.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_be.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_be.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_be.tar.gz ) l10n_br? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_br.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_br.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_br.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_br.tar.gz ) l10n_brx? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_brx.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_brx.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_brx.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_brx.tar.gz ) l10n_ckb? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ckb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ckb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ckb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ckb.tar.gz ) l10n_cy? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_cy.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_cy.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_cy.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_cy.tar.gz ) l10n_dgo? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_dgo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dgo.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dgo.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dgo.tar.gz ) l10n_dsb? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_dsb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dsb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dsb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_dsb.tar.gz ) l10n_fa? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_fa.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fa.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fa.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fa.tar.gz ) l10n_fur? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_fur.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fur.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fur.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fur.tar.gz ) l10n_fy? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_fy.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fy.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fy.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_fy.tar.gz ) l10n_ga? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ga.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ga.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ga.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ga.tar.gz ) l10n_gd? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_gd.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gd.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gd.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gd.tar.gz ) l10n_gug? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_gug.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gug.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gug.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_gug.tar.gz ) l10n_hsb? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_hsb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hsb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hsb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_hsb.tar.gz ) l10n_kab? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_kab.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kab.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kab.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kab.tar.gz ) l10n_kk? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_kk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kk.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kk.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kk.tar.gz ) l10n_kmr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kmr-Latn.tar.gz ) l10n_kn? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_kn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kn.tar.gz ) l10n_kok? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_kok.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kok.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kok.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_kok.tar.gz ) l10n_ks? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ks.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ks.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ks.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ks.tar.gz ) l10n_lb? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_lb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lb.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lb.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_lb.tar.gz ) l10n_mai? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_mai.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mai.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mai.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mai.tar.gz ) l10n_ml? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ml.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ml.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ml.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ml.tar.gz ) l10n_mn? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_mn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mn.tar.gz ) l10n_mni? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_mni.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mni.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mni.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mni.tar.gz ) l10n_mr? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_mr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_mr.tar.gz ) l10n_my? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_my.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_my.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_my.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_my.tar.gz ) l10n_nr? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_nr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nr.tar.gz ) l10n_nso? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_nso.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nso.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nso.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_nso.tar.gz ) l10n_oc? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_oc.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_oc.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_oc.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_oc.tar.gz ) l10n_or? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_or.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_or.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_or.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_or.tar.gz ) l10n_pa? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_pa-IN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pa-IN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_pa-IN.tar.gz ) l10n_rw? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_rw.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_rw.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_rw.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_rw.tar.gz ) l10n_sa? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sa-IN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sa-IN.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sa-IN.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sa-IN.tar.gz ) l10n_sat? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sat.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sat.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sat.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sat.tar.gz ) l10n_sd? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sd.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sd.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sd.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sd.tar.gz ) l10n_sr-Latn? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sr-Latn.tar.gz ) l10n_sr? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sr.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sr.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sr.tar.gz ) l10n_ss? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ss.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ss.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ss.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ss.tar.gz ) l10n_st? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_st.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_st.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_st.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_st.tar.gz ) l10n_sw-TZ? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_sw-TZ.tar.gz ) l10n_szl? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_szl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_szl.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_szl.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_szl.tar.gz ) l10n_te? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_te.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_te.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_te.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_te.tar.gz ) l10n_th? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_th.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_th.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_th.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_th.tar.gz ) l10n_tn? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_tn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tn.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tn.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tn.tar.gz ) l10n_ts? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ts.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ts.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ts.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ts.tar.gz ) l10n_tt? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_tt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tt.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tt.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_tt.tar.gz ) l10n_uz? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_uz.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_uz.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_uz.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_uz.tar.gz ) l10n_ve? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_ve.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ve.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ve.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_ve.tar.gz ) l10n_vec? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_vec.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_vec.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_vec.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_vec.tar.gz ) l10n_xh? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_xh.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_xh.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_xh.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_xh.tar.gz ) l10n_zu? ( https://download.documentfoundation.org/libreoffice/stable/7.0.3/rpm/x86_64/LibreOffice_7.0.3_Linux_x86-64_rpm_langpack_zu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zu.tar.gz https://download.documentfoundation.org/libreoffice/testing/7.0.3/rpm/x86_64/LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zu.tar.gz -> LibreOffice_7.0.3.1_Linux_x86-64_rpm_langpack_zu.tar.gz ) +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e rpm 760ff223c2c4299b68ea901e24c4cabd wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=58b4b31bf398bf5c5611bcf00b8e7de9 diff --git a/metadata/md5-cache/app-portage/Manifest.gz b/metadata/md5-cache/app-portage/Manifest.gz index b9dcb7d7c4ae..1200a9c71602 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/euses-2.6.0 b/metadata/md5-cache/app-portage/euses-2.6.0 index 4769a2466c4f..fe42c1bdb812 100644 --- a/metadata/md5-cache/app-portage/euses-2.6.0 +++ b/metadata/md5-cache/app-portage/euses-2.6.0 @@ -2,8 +2,8 @@ DEFINED_PHASES=install DESCRIPTION=look up USE flag descriptions fast EAPI=7 HOMEPAGE=https://www.xs4all.nl/~rooversj/gentoo -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://www.xs4all.nl/~rooversj/gentoo/euses-2.6.0.tar.bz2 -_md5_=77cde8e674aedae5f25d7dd510d4131b +_md5_=467aefeadd425351b3c68029e4469b92 diff --git a/metadata/md5-cache/app-text/Manifest.gz b/metadata/md5-cache/app-text/Manifest.gz index fcff9f933192..f27576a4d841 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/docbook-xsl-stylesheets-1.79.1-r2 b/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.1-r2 index 92fded954ad4..41b0624c2967 100644 --- a/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.1-r2 +++ b/metadata/md5-cache/app-text/docbook-xsl-stylesheets-1.79.1-r2 @@ -5,9 +5,9 @@ HOMEPAGE=https://github.com/docbook/wiki/wiki IUSE=ruby KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=BSD -RDEPEND=>=app-text/build-docbook-catalog-1.1 ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) +RDEPEND=>=app-text/build-docbook-catalog-1.1 ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/docbook/docbook-xsl-1.79.1.tar.bz2 -_eclasses_=ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f +_eclasses_=ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 _md5_=4b30a20ec4e3eb39910cf0b339655ee0 diff --git a/metadata/md5-cache/app-text/hyperestraier-1.4.13 b/metadata/md5-cache/app-text/hyperestraier-1.4.13 index 3f72d4ab6352..82e322f72d21 100644 --- a/metadata/md5-cache/app-text/hyperestraier-1.4.13 +++ b/metadata/md5-cache/app-text/hyperestraier-1.4.13 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-db/qdbm bzip2? ( app-arch/bzip2 ) java? ( >=virtual/jre-1.4:* ) lzo? ( dev-libs/lzo ) mecab? ( app-text/mecab ) perl? ( dev-lang/perl ) ruby? ( ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ) 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 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0cf5910cc359c8a94dcb11f4359d43f6 diff --git a/metadata/md5-cache/app-text/ronn-0.7.3-r3 b/metadata/md5-cache/app-text/ronn-0.7.3-r3 index dc90218d0d47..3b82c1d40cb5 100644 --- a/metadata/md5-cache/app-text/ronn-0.7.3-r3 +++ b/metadata/md5-cache/app-text/ronn-0.7.3-r3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ronn-0.7.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=c61c1a576e7622265a3d707f9e5606fe diff --git a/metadata/md5-cache/app-text/webgen-1.7.1 b/metadata/md5-cache/app-text/webgen-1.7.1 index 205d2b6ec125..3b7d6358298d 100644 --- a/metadata/md5-cache/app-text/webgen-1.7.1 +++ b/metadata/md5-cache/app-text/webgen-1.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/webgen-1.7.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5209ac189a51dd345f83453e44b6c693 diff --git a/metadata/md5-cache/app-text/xmlformat-1.04 b/metadata/md5-cache/app-text/xmlformat-1.04 index 5b195c7f6e7b..78289e1eebab 100644 --- a/metadata/md5-cache/app-text/xmlformat-1.04 +++ b/metadata/md5-cache/app-text/xmlformat-1.04 @@ -1,13 +1,13 @@ DEFINED_PHASES=install test -DEPEND=ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) !ruby? ( dev-lang/perl ) +DEPEND=ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) !ruby? ( dev-lang/perl ) DESCRIPTION=Reformat XML documents to your custom style EAPI=5 HOMEPAGE=http://www.kitebird.com/software/xmlformat/ IUSE=ruby doc KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=xmlformat -RDEPEND=ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) !ruby? ( dev-lang/perl ) +RDEPEND=ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) !ruby? ( dev-lang/perl ) SLOT=0 SRC_URI=http://www.kitebird.com/software/xmlformat/xmlformat-1.04.tar.gz -_eclasses_=ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f +_eclasses_=ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 _md5_=59dab15c4a133961a5534e7b77271f00 diff --git a/metadata/md5-cache/app-vim/Manifest.gz b/metadata/md5-cache/app-vim/Manifest.gz index 02400ca262fd..3880170dc575 100644 Binary files a/metadata/md5-cache/app-vim/Manifest.gz and b/metadata/md5-cache/app-vim/Manifest.gz differ diff --git a/metadata/md5-cache/app-vim/command-t-5.0.3 b/metadata/md5-cache/app-vim/command-t-5.0.3 index 7741bafe9506..cf9c40471168 100644 --- a/metadata/md5-cache/app-vim/command-t-5.0.3 +++ b/metadata/md5-cache/app-vim/command-t-5.0.3 @@ -10,5 +10,5 @@ RDEPEND=|| ( app-editors/vim[ruby] app-editors/gvim[ruby] ) || ( >=app-editors/v REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 3160d9cb05ef44497be1485db0fe7590 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 3160d9cb05ef44497be1485db0fe7590 _md5_=08c4f85af110cda9b0d617713f675fc9 diff --git a/metadata/md5-cache/app-vim/vimoutliner-0.3.6-r1 b/metadata/md5-cache/app-vim/vimoutliner-0.3.6-r1 index d871b26b7ed4..51937308cd1a 100644 --- a/metadata/md5-cache/app-vim/vimoutliner-0.3.6-r1 +++ b/metadata/md5-cache/app-vim/vimoutliner-0.3.6-r1 @@ -3,10 +3,10 @@ DEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) DESCRIPTION=vim plugin: easy and fast outlining EAPI=6 HOMEPAGE=https://github.com/vimoutliner/vimoutliner -KEYWORDS=amd64 ~ia64 ~mips ppc sparc x86 +KEYWORDS=amd64 ~ia64 ppc sparc x86 LICENSE=GPL-2 RDEPEND=|| ( >=app-editors/vim-7.3 >=app-editors/gvim-7.3 ) SLOT=0 SRC_URI=https://github.com/vimoutliner/vimoutliner/archive/v0.3.6.tar.gz -> vimoutliner-0.3.6.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 vim-doc af2c81a1feeb0a99e91bee3e20769edb vim-plugin 3160d9cb05ef44497be1485db0fe7590 -_md5_=b9fdbde20bf0143997d04fdecf8cfdcd +_md5_=a47119000a66a426d58f0eac1e958959 diff --git a/metadata/md5-cache/dev-cpp/Manifest.gz b/metadata/md5-cache/dev-cpp/Manifest.gz index 2d6c9fe360b5..aef3bbb1f57a 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/eigen-3.3.7-r1 b/metadata/md5-cache/dev-cpp/eigen-3.3.7-r1 index e49afcdbb2e7..3f0165f2532f 100644 --- a/metadata/md5-cache/dev-cpp/eigen-3.3.7-r1 +++ b/metadata/md5-cache/dev-cpp/eigen-3.3.7-r1 @@ -5,10 +5,10 @@ DESCRIPTION=C++ template library for linear algebra EAPI=7 HOMEPAGE=http://eigen.tuxfamily.org/index.php?title=Main_Page IUSE=cpu_flags_arm_neon cpu_flags_ppc_altivec cpu_flags_ppc_vsx cuda debug doc openmp test -KEYWORDS=~amd64 ~arm arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm arm64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux LICENSE=MPL-2.0 RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.tar.bz2 -> eigen-3.3.7-gitlab.tar.bz2 _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 cuda c2f1b334711bbbf2130f339636dc7515 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 fortran-2 b4796813ccda91c9c0d3463fc90aa969 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=50a140350e3b5e0456b7c43f7e4c96b3 +_md5_=0d4b63e3d4257447bb1035cf8b70b505 diff --git a/metadata/md5-cache/dev-db/Manifest.gz b/metadata/md5-cache/dev-db/Manifest.gz index ce3e201cf4e4..fc3cb54a4ec3 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-util/clazy-1.7 b/metadata/md5-cache/dev-db/pg_top-4.0.0 similarity index 62% rename from metadata/md5-cache/dev-util/clazy-1.7 rename to metadata/md5-cache/dev-db/pg_top-4.0.0 index d7cd9d5800d6..5640d8128cb8 100644 --- a/metadata/md5-cache/dev-util/clazy-1.7 +++ b/metadata/md5-cache/dev-db/pg_top-4.0.0 @@ -1,13 +1,13 @@ BDEPEND=dev-util/ninja dev-util/cmake DEFINED_PHASES=compile configure install prepare test -DEPEND=>=sys-devel/clang-5.0:= >=sys-devel/llvm-5.0:= -DESCRIPTION=Compiler plugin which allows clang to understand Qt semantics +DEPEND=dev-db/postgresql:= +DESCRIPTION='top' for PostgreSQL EAPI=7 -HOMEPAGE=https://apps.kde.org/en/clazy -KEYWORDS=amd64 -LICENSE=LGPL-2+ -RDEPEND=>=sys-devel/clang-5.0:= >=sys-devel/llvm-5.0:= +HOMEPAGE=https://pg_top.gitlab.io/ +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-db/postgresql:= SLOT=0 -SRC_URI=mirror://kde/stable/clazy/1.7/src/clazy-1.7.tar.xz +SRC_URI=https://pg_top.gitlab.io/source/pg_top-4.0.0.tar.xz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=0f741701b4b5584bd8214ea838d2fc03 +_md5_=977981817233c4a6bfe12863f1866a2b diff --git a/metadata/md5-cache/dev-db/pgadmin4-4.28 b/metadata/md5-cache/dev-db/pgadmin4-4.28 new file mode 100644 index 000000000000..52c0fe6b1b54 --- /dev/null +++ b/metadata/md5-cache/dev-db/pgadmin4-4.28 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup +DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) dev-libs/libsodium[-minimal] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtwidgets:5 doc? ( python_single_target_python3_6? ( dev-python/sphinx[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/sphinx[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/sphinx[python_targets_python3_8(-)] ) ) virtual/imagemagick-tools[png] dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=GUI administration and development platform for PostgreSQL +EAPI=7 +HOMEPAGE=https://www.pgadmin.org/ +IUSE=doc python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 +KEYWORDS=~amd64 ~x86 +LICENSE=POSTGRESQL +RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) dev-libs/libsodium[-minimal] dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtwidgets:5 python_single_target_python3_6? ( >=dev-python/blinker-1.4[python_targets_python3_6(-)] >=dev-python/flask-1.0.2[python_targets_python3_6(-)] >=dev-python/flask-compress-1.4.0[python_targets_python3_6(-)] >=dev-python/flask-gravatar-0.5.0[python_targets_python3_6(-)] >=dev-python/flask-login-0.4.1[python_targets_python3_6(-)] >=dev-python/flask-mail-0.9.1[python_targets_python3_6(-)] >=dev-python/flask-migrate-2.4.0[python_targets_python3_6(-)] >=dev-python/flask-paranoid-0.2.0[python_targets_python3_6(-)] >=dev-python/flask-principal-0.4.0[python_targets_python3_6(-)] >=dev-python/flask-security-3.0.0[python_targets_python3_6(-)] >=dev-python/flask-sqlalchemy-2.4.1[python_targets_python3_6(-)] >=dev-python/flask-wtf-0.14.3[python_targets_python3_6(-)] >=dev-python/ldap3-2.5.1[python_targets_python3_6(-)] >=dev-python/passlib-1.7.2[python_targets_python3_6(-)] >=dev-python/psutil-5.7.0[python_targets_python3_6(-)] >=dev-python/psycopg-2.8[python_targets_python3_6(-)] >=dev-python/python-dateutil-2.8.0[python_targets_python3_6(-)] >=dev-python/pytz-2020.1[python_targets_python3_6(-)] >=dev-python/simplejson-3.16.0[python_targets_python3_6(-)] >=dev-python/six-1.12.0[python_targets_python3_6(-)] >=dev-python/speaklater-1.3[python_targets_python3_6(-)] >=dev-python/sqlalchemy-1.3.13[python_targets_python3_6(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_6(-)] >=dev-python/sshtunnel-0.1.5[python_targets_python3_6(-)] >=dev-python/werkzeug-0.15.0[python_targets_python3_6(-)] >=dev-python/wtforms-2.2.1[python_targets_python3_6(-)] dev-python/bcrypt[python_targets_python3_6(-)] dev-python/cryptography[python_targets_python3_6(-)] dev-python/python-email-validator[python_targets_python3_6(-)] ) python_single_target_python3_7? ( >=dev-python/blinker-1.4[python_targets_python3_7(-)] >=dev-python/flask-1.0.2[python_targets_python3_7(-)] >=dev-python/flask-compress-1.4.0[python_targets_python3_7(-)] >=dev-python/flask-gravatar-0.5.0[python_targets_python3_7(-)] >=dev-python/flask-login-0.4.1[python_targets_python3_7(-)] >=dev-python/flask-mail-0.9.1[python_targets_python3_7(-)] >=dev-python/flask-migrate-2.4.0[python_targets_python3_7(-)] >=dev-python/flask-paranoid-0.2.0[python_targets_python3_7(-)] >=dev-python/flask-principal-0.4.0[python_targets_python3_7(-)] >=dev-python/flask-security-3.0.0[python_targets_python3_7(-)] >=dev-python/flask-sqlalchemy-2.4.1[python_targets_python3_7(-)] >=dev-python/flask-wtf-0.14.3[python_targets_python3_7(-)] >=dev-python/ldap3-2.5.1[python_targets_python3_7(-)] >=dev-python/passlib-1.7.2[python_targets_python3_7(-)] >=dev-python/psutil-5.7.0[python_targets_python3_7(-)] >=dev-python/psycopg-2.8[python_targets_python3_7(-)] >=dev-python/python-dateutil-2.8.0[python_targets_python3_7(-)] >=dev-python/pytz-2020.1[python_targets_python3_7(-)] >=dev-python/simplejson-3.16.0[python_targets_python3_7(-)] >=dev-python/six-1.12.0[python_targets_python3_7(-)] >=dev-python/speaklater-1.3[python_targets_python3_7(-)] >=dev-python/sqlalchemy-1.3.13[python_targets_python3_7(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_7(-)] >=dev-python/sshtunnel-0.1.5[python_targets_python3_7(-)] >=dev-python/werkzeug-0.15.0[python_targets_python3_7(-)] >=dev-python/wtforms-2.2.1[python_targets_python3_7(-)] dev-python/bcrypt[python_targets_python3_7(-)] dev-python/cryptography[python_targets_python3_7(-)] dev-python/python-email-validator[python_targets_python3_7(-)] ) python_single_target_python3_8? ( >=dev-python/blinker-1.4[python_targets_python3_8(-)] >=dev-python/flask-1.0.2[python_targets_python3_8(-)] >=dev-python/flask-compress-1.4.0[python_targets_python3_8(-)] >=dev-python/flask-gravatar-0.5.0[python_targets_python3_8(-)] >=dev-python/flask-login-0.4.1[python_targets_python3_8(-)] >=dev-python/flask-mail-0.9.1[python_targets_python3_8(-)] >=dev-python/flask-migrate-2.4.0[python_targets_python3_8(-)] >=dev-python/flask-paranoid-0.2.0[python_targets_python3_8(-)] >=dev-python/flask-principal-0.4.0[python_targets_python3_8(-)] >=dev-python/flask-security-3.0.0[python_targets_python3_8(-)] >=dev-python/flask-sqlalchemy-2.4.1[python_targets_python3_8(-)] >=dev-python/flask-wtf-0.14.3[python_targets_python3_8(-)] >=dev-python/ldap3-2.5.1[python_targets_python3_8(-)] >=dev-python/passlib-1.7.2[python_targets_python3_8(-)] >=dev-python/psutil-5.7.0[python_targets_python3_8(-)] >=dev-python/psycopg-2.8[python_targets_python3_8(-)] >=dev-python/python-dateutil-2.8.0[python_targets_python3_8(-)] >=dev-python/pytz-2020.1[python_targets_python3_8(-)] >=dev-python/simplejson-3.16.0[python_targets_python3_8(-)] >=dev-python/six-1.12.0[python_targets_python3_8(-)] >=dev-python/speaklater-1.3[python_targets_python3_8(-)] >=dev-python/sqlalchemy-1.3.13[python_targets_python3_8(-)] >=dev-python/sqlparse-0.3.0[python_targets_python3_8(-)] >=dev-python/sshtunnel-0.1.5[python_targets_python3_8(-)] >=dev-python/werkzeug-0.15.0[python_targets_python3_8(-)] >=dev-python/wtforms-2.2.1[python_targets_python3_8(-)] dev-python/bcrypt[python_targets_python3_8(-)] dev-python/cryptography[python_targets_python3_8(-)] dev-python/python-email-validator[python_targets_python3_8(-)] ) +REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v4.28/source/pgadmin4-4.28.tar.gz +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=df16d9dd6d9ebd59281b998e09c7e864 diff --git a/metadata/md5-cache/dev-db/pgbouncer-1.15.0 b/metadata/md5-cache/dev-db/pgbouncer-1.15.0 new file mode 100644 index 000000000000..7b602c27b7c8 --- /dev/null +++ b/metadata/md5-cache/dev-db/pgbouncer-1.15.0 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=configure install postinst prepare +DEPEND=>=dev-libs/libevent-2.0:= >=sys-libs/glibc-2.10 acct-user/pgbouncer c-ares? ( >=net-dns/c-ares-1.10 ) ssl? ( >=dev-libs/openssl-1.0.1:=[-bindist] ) systemd? ( sys-apps/systemd ) udns? ( >=net-libs/udns-0.1 ) +DESCRIPTION=Lightweight connection pooler for PostgreSQL +EAPI=7 +HOMEPAGE=https://www.pgbouncer.org/ +IUSE=+c-ares debug doc pam ssl systemd -udns +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-libs/libevent-2.0:= >=sys-libs/glibc-2.10 acct-user/pgbouncer c-ares? ( >=net-dns/c-ares-1.10 ) ssl? ( >=dev-libs/openssl-1.0.1:=[-bindist] ) systemd? ( sys-apps/systemd ) udns? ( >=net-libs/udns-0.1 ) +REQUIRED_USE=?? ( c-ares udns ) +RESTRICT=test +SLOT=0 +SRC_URI=https://www.pgbouncer.org/downloads/files/1.15.0/pgbouncer-1.15.0.tar.gz +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=5c83d09db8f75aa45e4f4c70abcb41d5 diff --git a/metadata/md5-cache/dev-db/postgis-3.0.3 b/metadata/md5-cache/dev-db/postgis-3.0.3 new file mode 100644 index 000000000000..7e2f9e274d13 --- /dev/null +++ b/metadata/md5-cache/dev-db/postgis-3.0.3 @@ -0,0 +1,16 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_targets_postgres12? ( dev-db/postgresql:12=[server] ) postgres_targets_postgres11? ( dev-db/postgresql:11=[server] ) postgres_targets_postgres10? ( dev-db/postgresql:10=[server] ) postgres_targets_postgres9_6? ( dev-db/postgresql:9.6=[server] ) postgres_targets_postgres9_5? ( dev-db/postgresql:9.5=[server] ) dev-libs/json-c:= dev-libs/libxml2:2 dev-libs/protobuf-c:= >=sci-libs/geos-3.6.0 >=sci-libs/proj-4.9.0:= >=sci-libs/gdal-1.10.0:= address-standardizer? ( dev-libs/libpcre ) gtk? ( x11-libs/gtk+:2 ) virtual/pkgconfig doc? ( app-text/docbook-xsl-stylesheets app-text/docbook-xml-dtd:4.5 dev-libs/libxslt virtual/imagemagick-tools[png] ) test? ( dev-util/cunit ) +DESCRIPTION=Geographic Objects for PostgreSQL +EAPI=7 +HOMEPAGE=https://postgis.net +IUSE=address-standardizer doc gtk static-libs test topology postgres_targets_postgres13 postgres_targets_postgres12 postgres_targets_postgres11 postgres_targets_postgres10 postgres_targets_postgres9_6 postgres_targets_postgres9_5 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_targets_postgres12? ( dev-db/postgresql:12=[server] ) postgres_targets_postgres11? ( dev-db/postgresql:11=[server] ) postgres_targets_postgres10? ( dev-db/postgresql:10=[server] ) postgres_targets_postgres9_6? ( dev-db/postgresql:9.6=[server] ) postgres_targets_postgres9_5? ( dev-db/postgresql:9.5=[server] ) dev-libs/json-c:= dev-libs/libxml2:2 dev-libs/protobuf-c:= >=sci-libs/geos-3.6.0 >=sci-libs/proj-4.9.0:= >=sci-libs/gdal-1.10.0:= address-standardizer? ( dev-libs/libpcre ) gtk? ( x11-libs/gtk+:2 ) +REQUIRED_USE=test? ( doc ) || ( postgres_targets_postgres13 postgres_targets_postgres12 postgres_targets_postgres11 postgres_targets_postgres10 postgres_targets_postgres9_6 postgres_targets_postgres9_5 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://download.osgeo.org/postgis/source/postgis-3.0.3.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 postgres 9613fb90112e2a521b6a8315187c2966 postgres-multi b784ac6c30437f2ded3f16482b56374c toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_md5_=848ab87ed98c847c82c0859715e6d8fc diff --git a/metadata/md5-cache/dev-db/postgis-3.1.0_alpha3 b/metadata/md5-cache/dev-db/postgis-3.1.0_alpha3 new file mode 100644 index 000000000000..34c23f4545b5 --- /dev/null +++ b/metadata/md5-cache/dev-db/postgis-3.1.0_alpha3 @@ -0,0 +1,15 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_targets_postgres12? ( dev-db/postgresql:12=[server] ) postgres_targets_postgres11? ( dev-db/postgresql:11=[server] ) postgres_targets_postgres10? ( dev-db/postgresql:10=[server] ) postgres_targets_postgres9_6? ( dev-db/postgresql:9.6=[server] ) postgres_targets_postgres9_5? ( dev-db/postgresql:9.5=[server] ) dev-libs/json-c:= dev-libs/libxml2:2 dev-libs/protobuf-c:= >=sci-libs/geos-3.6.0 >=sci-libs/proj-4.9.0:= >=sci-libs/gdal-1.10.0:= address-standardizer? ( dev-libs/libpcre ) gtk? ( x11-libs/gtk+:2 ) virtual/pkgconfig doc? ( app-text/docbook-xsl-stylesheets app-text/docbook-xml-dtd:4.5 dev-libs/libxslt virtual/imagemagick-tools[png] ) test? ( dev-util/cunit ) +DESCRIPTION=Geographic Objects for PostgreSQL +EAPI=7 +HOMEPAGE=https://postgis.net +IUSE=address-standardizer doc gtk static-libs test topology postgres_targets_postgres13 postgres_targets_postgres12 postgres_targets_postgres11 postgres_targets_postgres10 postgres_targets_postgres9_6 postgres_targets_postgres9_5 +LICENSE=GPL-2 +RDEPEND=postgres_targets_postgres13? ( dev-db/postgresql:13=[server] ) postgres_targets_postgres12? ( dev-db/postgresql:12=[server] ) postgres_targets_postgres11? ( dev-db/postgresql:11=[server] ) postgres_targets_postgres10? ( dev-db/postgresql:10=[server] ) postgres_targets_postgres9_6? ( dev-db/postgresql:9.6=[server] ) postgres_targets_postgres9_5? ( dev-db/postgresql:9.5=[server] ) dev-libs/json-c:= dev-libs/libxml2:2 dev-libs/protobuf-c:= >=sci-libs/geos-3.6.0 >=sci-libs/proj-4.9.0:= >=sci-libs/gdal-1.10.0:= address-standardizer? ( dev-libs/libpcre ) gtk? ( x11-libs/gtk+:2 ) +REQUIRED_USE=test? ( doc ) || ( postgres_targets_postgres13 postgres_targets_postgres12 postgres_targets_postgres11 postgres_targets_postgres10 postgres_targets_postgres9_6 postgres_targets_postgres9_5 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://download.osgeo.org/postgis/source/postgis-3.1.0alpha3.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 postgres 9613fb90112e2a521b6a8315187c2966 postgres-multi b784ac6c30437f2ded3f16482b56374c toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 +_md5_=cafebda1e4a8c52054154ae9124e9c5e diff --git a/metadata/md5-cache/dev-db/postgresql-10.14 b/metadata/md5-cache/dev-db/postgresql-10.14 deleted file mode 100644 index e70520a44030..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-10.14 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile config configure install postinst postrm prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) -DESCRIPTION=PostgreSQL RDBMS -EAPI=7 -HOMEPAGE=https://www.postgresql.org/ -IUSE=debug doc icu kerberos kernel_linux ldap libressl nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-macos ~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 ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) -SLOT=10 -SRC_URI=https://ftp.postgresql.org/pub/source/v10.14/postgresql-10.14.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 pam 226d8d2ff588bdfd7d188512dbdb189d prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=4801593923201d4330e943bf25c28d53 diff --git a/metadata/md5-cache/dev-db/postgresql-11.9 b/metadata/md5-cache/dev-db/postgresql-11.9 deleted file mode 100644 index 65cdd543a7bb..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-11.9 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile config configure install postinst postrm prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) llvm? ( sys-devel/llvm:= sys-devel/clang:= ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) -DESCRIPTION=PostgreSQL RDBMS -EAPI=7 -HOMEPAGE=https://www.postgresql.org/ -IUSE=debug doc icu kerberos kernel_linux ldap libressl llvm nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-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:= ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) -SLOT=11 -SRC_URI=https://ftp.postgresql.org/pub/source/v11.9/postgresql-11.9.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 pam 226d8d2ff588bdfd7d188512dbdb189d prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=8dc9677a13e5a2cb95d6e67ac59c7c6c diff --git a/metadata/md5-cache/dev-db/postgresql-12.4 b/metadata/md5-cache/dev-db/postgresql-12.4 deleted file mode 100644 index f46290b43dc0..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-12.4 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile config configure install postinst postrm prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) llvm? ( sys-devel/llvm:= sys-devel/clang:= ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) -DESCRIPTION=PostgreSQL RDBMS -EAPI=7 -HOMEPAGE=https://www.postgresql.org/ -IUSE=debug doc icu kerberos kernel_linux ldap libressl llvm nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-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:= ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) -SLOT=12 -SRC_URI=https://ftp.postgresql.org/pub/source/v12.4/postgresql-12.4.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 pam 226d8d2ff588bdfd7d188512dbdb189d prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=8146bd429c8f6a5264411370ac149b5a diff --git a/metadata/md5-cache/dev-db/postgresql-13.0 b/metadata/md5-cache/dev-db/postgresql-13.0 deleted file mode 100644 index 32dd2064ffbe..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-13.0 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile config configure install postinst postrm prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl icu? ( dev-libs/icu:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) llvm? ( sys-devel/llvm:= sys-devel/clang:= ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) -DESCRIPTION=PostgreSQL RDBMS -EAPI=7 -HOMEPAGE=https://www.postgresql.org/ -IUSE=debug doc icu kerberos kernel_linux ldap libressl llvm nls pam perl python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-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:= ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) server? ( systemd? ( sys-apps/systemd ) ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) -SLOT=13 -SRC_URI=https://ftp.postgresql.org/pub/source/v13.0/postgresql-13.0.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 pam 226d8d2ff588bdfd7d188512dbdb189d prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=6ec03d25180a8a04bf5606d6908cc9d1 diff --git a/metadata/md5-cache/dev-db/postgresql-9.5.23 b/metadata/md5-cache/dev-db/postgresql-9.5.23 deleted file mode 100644 index 8a198e77e1b3..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-9.5.23 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) -DESCRIPTION=PostgreSQL RDBMS -EAPI=7 -HOMEPAGE=https://www.postgresql.org/ -IUSE=debug doc kerberos kernel_linux ldap libressl nls pam perl -pg-legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-macos ~x86-solaris -LICENSE=POSTGRESQL GPL-2 -RDEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) -SLOT=9.5 -SRC_URI=https://ftp.postgresql.org/pub/source/v9.5.23/postgresql-9.5.23.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 pam 226d8d2ff588bdfd7d188512dbdb189d prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f7ee7866a2030fa0d5f3ecc0a88301dd diff --git a/metadata/md5-cache/dev-db/postgresql-9.6.19 b/metadata/md5-cache/dev-db/postgresql-9.6.19 deleted file mode 100644 index 57682d0510da..000000000000 --- a/metadata/md5-cache/dev-db/postgresql-9.6.19 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=virtual/pkgconfig -DEFINED_PHASES=compile config configure install postinst postrm preinst prepare prerm setup test -DEPEND=>=app-eselect/eselect-postgresql-2.0 acct-group/postgres acct-user/postgres sys-apps/less virtual/libintl kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) server? ( systemd? ( sys-apps/systemd ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) sys-devel/bison sys-devel/flex nls? ( sys-devel/gettext ) xml? ( virtual/pkgconfig ) -DESCRIPTION=PostgreSQL RDBMS -EAPI=7 -HOMEPAGE=https://www.postgresql.org/ -IUSE=debug doc kerberos kernel_linux ldap libressl nls pam perl -pg-legacytimestamp python +readline selinux +server systemd ssl static-libs tcl threads uuid xml zlib elibc_glibc elibc_uclibc elibc_musl elibc_FreeBSD elibc_NetBSD elibc_OpenBSD kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-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 kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) pam? ( sys-libs/pam ) perl? ( >=dev-lang/perl-5.8:= ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) readline? ( sys-libs/readline:0= ) ssl? ( !libressl? ( >=dev-libs/openssl-0.9.6-r1:0= ) libressl? ( dev-libs/libressl:= ) ) server? ( systemd? ( sys-apps/systemd ) ) 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_uclibc? ( sys-apps/util-linux ) elibc_musl? ( sys-apps/util-linux ) !elibc_glibc? ( !elibc_uclibc? ( !elibc_musl? ( !elibc_FreeBSD? ( !elibc_NetBSD? ( !elibc_OpenBSD? ( dev-libs/ossp-uuid ) ) ) ) ) ) ) selinux? ( sec-policy/selinux-postgresql ) -REQUIRED_USE=python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) -SLOT=9.6 -SRC_URI=https://ftp.postgresql.org/pub/source/v9.6.19/postgresql-9.6.19.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 pam 226d8d2ff588bdfd7d188512dbdb189d prefix c2993e4c430c1ee24f278983d6189501 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=0f81ca06a6559ae4a4f2178a1abc02e4 diff --git a/metadata/md5-cache/dev-db/pspg-1.6.5 b/metadata/md5-cache/dev-db/pspg-1.6.5 deleted file mode 100644 index 1c7ca347042c..000000000000 --- a/metadata/md5-cache/dev-db/pspg-1.6.5 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=- -DEPEND=sys-libs/ncurses:* -DESCRIPTION=A better pager for psql and mysql -EAPI=7 -HOMEPAGE=https://github.com/okbob/pspg -KEYWORDS=amd64 x86 -LICENSE=BSD-2 -RDEPEND=sys-libs/ncurses:* -SLOT=0 -SRC_URI=https://github.com/okbob/pspg/archive/1.6.5.tar.gz -> pspg-1.6.5.tar.gz -_md5_=0d6a757f84a939cf2087c071f7b5819b diff --git a/metadata/md5-cache/dev-db/pspg-1.6.8 b/metadata/md5-cache/dev-db/pspg-1.6.8 deleted file mode 100644 index 1c8df4d4df8e..000000000000 --- a/metadata/md5-cache/dev-db/pspg-1.6.8 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=- -DEPEND=sys-libs/ncurses:* -DESCRIPTION=A better pager for psql and mysql -EAPI=7 -HOMEPAGE=https://github.com/okbob/pspg -KEYWORDS=~amd64 ~x86 -LICENSE=BSD-2 -RDEPEND=sys-libs/ncurses:* -SLOT=0 -SRC_URI=https://github.com/okbob/pspg/archive/1.6.8.tar.gz -> pspg-1.6.8.tar.gz -_md5_=c6084d58fa24479563dbcfafd72385f7 diff --git a/metadata/md5-cache/dev-db/pspg-2.5.4 b/metadata/md5-cache/dev-db/pspg-2.5.4 deleted file mode 100644 index 72b6c59aba24..000000000000 --- a/metadata/md5-cache/dev-db/pspg-2.5.4 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=- -DEPEND=sys-libs/ncurses:* dev-db/postgresql:= sys-libs/readline:* -DESCRIPTION=A better pager for psql and mysql -EAPI=7 -HOMEPAGE=https://github.com/okbob/pspg -KEYWORDS=~amd64 ~x86 -LICENSE=BSD-2 -RDEPEND=sys-libs/ncurses:* dev-db/postgresql:= sys-libs/readline:* -SLOT=0 -SRC_URI=https://github.com/okbob/pspg/archive/2.5.4.tar.gz -> pspg-2.5.4.tar.gz -_md5_=d11ec786add74c254d7855b9b53c6351 diff --git a/metadata/md5-cache/dev-db/pspg-2.6.6 b/metadata/md5-cache/dev-db/pspg-2.6.6 deleted file mode 100644 index 20988d81f67f..000000000000 --- a/metadata/md5-cache/dev-db/pspg-2.6.6 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=- -DEPEND=sys-libs/ncurses:* dev-db/postgresql:= sys-libs/readline:* -DESCRIPTION=A better pager for psql and mysql -EAPI=7 -HOMEPAGE=https://github.com/okbob/pspg -KEYWORDS=amd64 x86 -LICENSE=BSD-2 -RDEPEND=sys-libs/ncurses:* dev-db/postgresql:= sys-libs/readline:* -SLOT=0 -SRC_URI=https://github.com/okbob/pspg/archive/2.6.6.tar.gz -> pspg-2.6.6.tar.gz -_md5_=e206d98bfdc90b08fd3059968e384b53 diff --git a/metadata/md5-cache/dev-db/pspg-2.5.5 b/metadata/md5-cache/dev-db/pspg-3.1.5 similarity index 66% rename from metadata/md5-cache/dev-db/pspg-2.5.5 rename to metadata/md5-cache/dev-db/pspg-3.1.5 index 77c037550a67..6989ceb13093 100644 --- a/metadata/md5-cache/dev-db/pspg-2.5.5 +++ b/metadata/md5-cache/dev-db/pspg-3.1.5 @@ -1,11 +1,12 @@ DEFINED_PHASES=- -DEPEND=sys-libs/ncurses:* dev-db/postgresql:= sys-libs/readline:* +DEPEND=sys-libs/ncurses:* dev-db/postgresql:= sys-libs/readline:= DESCRIPTION=A better pager for psql and mysql EAPI=7 HOMEPAGE=https://github.com/okbob/pspg KEYWORDS=~amd64 ~x86 LICENSE=BSD-2 -RDEPEND=sys-libs/ncurses:* dev-db/postgresql:= sys-libs/readline:* +RDEPEND=sys-libs/ncurses:* dev-db/postgresql:= sys-libs/readline:= +RESTRICT=test SLOT=0 -SRC_URI=https://github.com/okbob/pspg/archive/2.5.5.tar.gz -> pspg-2.5.5.tar.gz -_md5_=d11ec786add74c254d7855b9b53c6351 +SRC_URI=https://github.com/okbob/pspg/archive/3.1.5.tar.gz -> pspg-3.1.5.tar.gz +_md5_=b3ed18427ba33548098cae0ee1f4422f diff --git a/metadata/md5-cache/dev-db/qdbm-1.8.78-r2 b/metadata/md5-cache/dev-db/qdbm-1.8.78-r2 index 8d78f2b2c438..fa4d8deb399d 100644 --- a/metadata/md5-cache/dev-db/qdbm-1.8.78-r2 +++ b/metadata/md5-cache/dev-db/qdbm-1.8.78-r2 @@ -10,5 +10,5 @@ LICENSE=LGPL-2.1 RDEPEND=bzip2? ( app-arch/bzip2 ) java? ( >=virtual/jre-1.4:* ) lzo? ( dev-libs/lzo ) perl? ( dev-lang/perl ) ruby? ( ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ) 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 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=85bd8ac440caa54016dc96e923079441 diff --git a/metadata/md5-cache/dev-db/tora-3.2-r1 b/metadata/md5-cache/dev-db/tora-3.2-r1 index 629874aafd32..f60ca9de23c0 100644 --- a/metadata/md5-cache/dev-db/tora-3.2-r1 +++ b/metadata/md5-cache/dev-db/tora-3.2-r1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=dev-libs/ferrisloki dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5[mysql?,postgres?] dev-qt/qtwidgets:5 >=x11-libs/qscintilla-2.10.1:=[qt5(+)] oracle? ( || ( =dev-db/oracle-instantclient-basic-11* dev-db/oracle-instantclient ) ) postgres? ( dev-db/postgresql:* ) dev-qt/linguist:5 virtual/pkgconfig doc? ( app-doc/doxygen ) sys-devel/make >=dev-util/cmake-3.9.6 +DEPEND=dev-libs/ferrisloki dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5[mysql?,postgres?] dev-qt/qtwidgets:5 >=x11-libs/qscintilla-2.10.1:=[qt5(+)] oracle? ( || ( =dev-db/oracle-instantclient-basic-11* dev-db/oracle-instantclient ) ) postgres? ( dev-db/postgresql:* ) dev-qt/linguist-tools:5 virtual/pkgconfig doc? ( app-doc/doxygen ) sys-devel/make >=dev-util/cmake-3.9.6 DESCRIPTION=SQL IDE for Oracle, MySQL and PostgreSQL dbs EAPI=6 HOMEPAGE=https://github.com/tora-tool/tora/wiki @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( mysql oracle postgres ) SLOT=0 SRC_URI=https://github.com/tora-tool/tora/archive/v3.2.tar.gz -> tora-3.2.tar.gz _eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ca337005d021bde3d800a62a448b4947 +_md5_=4cf718a4af1b015b20c10969bc744abe diff --git a/metadata/md5-cache/dev-db/tora-9999 b/metadata/md5-cache/dev-db/tora-9999 index a6dc46873f6a..bdd515b671b6 100644 --- a/metadata/md5-cache/dev-db/tora-9999 +++ b/metadata/md5-cache/dev-db/tora-9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=dev-libs/ferrisloki dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5[mysql?,postgres?] dev-qt/qtwidgets:5 >=x11-libs/qscintilla-2.10.1:=[qt5(+)] oracle? ( || ( =dev-db/oracle-instantclient-basic-11* dev-db/oracle-instantclient ) ) postgres? ( dev-db/postgresql:* ) dev-qt/linguist:5 virtual/pkgconfig doc? ( app-doc/doxygen ) sys-devel/make >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] +DEPEND=dev-libs/ferrisloki dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5[mysql?,postgres?] dev-qt/qtwidgets:5 >=x11-libs/qscintilla-2.10.1:=[qt5(+)] oracle? ( || ( =dev-db/oracle-instantclient-basic-11* dev-db/oracle-instantclient ) ) postgres? ( dev-db/postgresql:* ) dev-qt/linguist-tools:5 virtual/pkgconfig doc? ( app-doc/doxygen ) sys-devel/make >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] DESCRIPTION=SQL IDE for Oracle, MySQL and PostgreSQL dbs EAPI=6 HOMEPAGE=https://github.com/tora-tool/tora/wiki @@ -10,4 +10,4 @@ RDEPEND=dev-libs/ferrisloki dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 de REQUIRED_USE=|| ( mysql oracle postgres ) SLOT=0 _eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c9b53e6e80a1ede6463f2c06fa1b8b0f +_md5_=f0b12facc93395b945a61b09ef6ee933 diff --git a/metadata/md5-cache/dev-dotnet/Manifest.gz b/metadata/md5-cache/dev-dotnet/Manifest.gz index 07c7270f597c..81837ef25151 100644 Binary files a/metadata/md5-cache/dev-dotnet/Manifest.gz and b/metadata/md5-cache/dev-dotnet/Manifest.gz differ diff --git a/metadata/md5-cache/dev-dotnet/gio-sharp-0.3-r1 b/metadata/md5-cache/dev-dotnet/gio-sharp-0.3-r1 deleted file mode 100644 index b4842aa732a5..000000000000 --- a/metadata/md5-cache/dev-dotnet/gio-sharp-0.3-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile prepare setup unpack -DEPEND=>=dev-dotnet/gtk-sharp-2.12.21 >=dev-libs/glib-2.22:2 virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=GIO API C# binding -EAPI=4 -HOMEPAGE=https://github.com/mono/gio-sharp -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=>=dev-dotnet/gtk-sharp-2.12.21 >=dev-libs/glib-2.22:2 -SLOT=0 -SRC_URI=https://github.com/mono/gio-sharp/tarball/0.3 -> gio-sharp-0.3.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1d4bdbf73705ab62b3b3e358b26eb755 diff --git a/metadata/md5-cache/dev-dotnet/ikvm-bin-7.1.4532.2 b/metadata/md5-cache/dev-dotnet/ikvm-bin-7.1.4532.2 deleted file mode 100644 index 29cbea8a5add..000000000000 --- a/metadata/md5-cache/dev-dotnet/ikvm-bin-7.1.4532.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install -DEPEND=>=dev-lang/mono-1.1 !dev-dotnet/ikvm app-arch/unzip -DESCRIPTION=Java VM for .NET -EAPI=4 -HOMEPAGE=http://www.ikvm.net/ http://weblog.ikvm.net/ -KEYWORDS=amd64 x86 -LICENSE=ZLIB GPL-2-with-linking-exception -RDEPEND=>=dev-lang/mono-1.1 !dev-dotnet/ikvm app-arch/unzip -SLOT=0 -SRC_URI=http://www.frijters.net/ikvmbin-7.1.4532.2.zip -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa mono 6b9c26a7a64b4530f483c30a494ac0a1 multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f3045e990203a0aa654e670ba6e169fd diff --git a/metadata/md5-cache/dev-dotnet/log4net-1.2.11 b/metadata/md5-cache/dev-dotnet/log4net-1.2.11 deleted file mode 100644 index 7123c680c6e6..000000000000 --- a/metadata/md5-cache/dev-dotnet/log4net-1.2.11 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install -DEPEND=>=dev-lang/mono-2.0 -DESCRIPTION=tool to help the programmer output log statements to a variety of output targets -EAPI=4 -HOMEPAGE=http://logging.apache.org/log4net/ -KEYWORDS=amd64 x86 -LICENSE=Apache-2.0 -RDEPEND=>=dev-lang/mono-2.0 -SLOT=0 -SRC_URI=mirror://apache/logging/log4net/source/log4net-1.2.11-src.zip https://dev.gentoo.org/~pacho/dotnet/log4net.snk -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa mono 6b9c26a7a64b4530f483c30a494ac0a1 multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e736eb73f9a5b202d7bf4f7e1d0bf778 diff --git a/metadata/md5-cache/dev-games/Manifest.gz b/metadata/md5-cache/dev-games/Manifest.gz index 92ffbf5135f9..b0dda5987cd7 100644 Binary files a/metadata/md5-cache/dev-games/Manifest.gz and b/metadata/md5-cache/dev-games/Manifest.gz differ diff --git a/metadata/md5-cache/dev-games/t4k-common-0.1.1 b/metadata/md5-cache/dev-games/t4k-common-0.1.1 index 108006a56f59..c7b19766fa23 100644 --- a/metadata/md5-cache/dev-games/t4k-common-0.1.1 +++ b/metadata/md5-cache/dev-games/t4k-common-0.1.1 @@ -1,13 +1,14 @@ +BDEPEND=sys-devel/gettext virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install prepare -DEPEND=dev-libs/libxml2:2 media-libs/libsdl media-libs/sdl-image media-libs/sdl-mixer media-libs/sdl-net media-libs/sdl-ttf media-libs/sdl-pango svg? ( gnome-base/librsvg:2 media-libs/libpng:0 x11-libs/cairo ) virtual/pkgconfig +DEPEND=dev-libs/libxml2:2 media-libs/libsdl media-libs/sdl-image media-libs/sdl-mixer media-libs/sdl-net media-libs/sdl-ttf media-libs/sdl-pango svg? ( gnome-base/librsvg:2 media-libs/libpng:0 x11-libs/cairo ) DESCRIPTION=A library of code shared between tuxmath and tuxtype -EAPI=5 +EAPI=7 HOMEPAGE=https://github.com/tux4kids/t4kcommon -IUSE=static-libs svg +IUSE=svg KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-libs/libxml2:2 media-libs/libsdl media-libs/sdl-image media-libs/sdl-mixer media-libs/sdl-net media-libs/sdl-ttf media-libs/sdl-pango svg? ( gnome-base/librsvg:2 media-libs/libpng:0 x11-libs/cairo ) SLOT=0 SRC_URI=https://github.com/tux4kids/t4kcommon/archive/upstream/0.1.1.tar.gz -> t4k-common-0.1.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=a528978223a5f18adb0f57e1b9ff5567 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=6fa7e060490fb16b02b40fce903d520f diff --git a/metadata/md5-cache/dev-java/Manifest.gz b/metadata/md5-cache/dev-java/Manifest.gz index 3bcde5720ec5..b228272ad62f 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/protobuf-java-3.13.0 b/metadata/md5-cache/dev-java/protobuf-java-3.13.0 index e47f7f686453..ae9c675f8a17 100644 --- a/metadata/md5-cache/dev-java/protobuf-java-3.13.0 +++ b/metadata/md5-cache/dev-java/protobuf-java-3.13.0 @@ -5,10 +5,10 @@ DESCRIPTION=Google's Protocol Buffers - Java bindings EAPI=7 HOMEPAGE=https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf IUSE=elibc_FreeBSD doc source elibc_FreeBSD -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +KEYWORDS=amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=BSD RDEPEND=>=virtual/jre-1.7 !=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) SLOT=0/24 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.13.0.tar.gz -> protobuf-3.13.0.tar.gz _eclasses_=java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple a814c0c1adac3d7902bc7023902a2e1a java-utils-2 ec7a89849c84f93e9c6db27812923888 -_md5_=176ba11a2adfdd3466ad043bc7782087 +_md5_=bdf9d1b9371d9c334137b34a00e33e03 diff --git a/metadata/md5-cache/dev-java/protobuf-java-3.14.0 b/metadata/md5-cache/dev-java/protobuf-java-3.14.0 new file mode 100644 index 000000000000..7c0297d0c4ee --- /dev/null +++ b/metadata/md5-cache/dev-java/protobuf-java-3.14.0 @@ -0,0 +1,14 @@ +BDEPEND=~dev-libs/protobuf-3.14.0 >=virtual/jdk-1.7 +DEFINED_PHASES=compile install preinst prepare setup test +DEPEND=>=virtual/jdk-1.7 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +DESCRIPTION=Google's Protocol Buffers - Java bindings +EAPI=7 +HOMEPAGE=https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf +IUSE=elibc_FreeBSD doc source elibc_FreeBSD +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +LICENSE=BSD +RDEPEND=>=virtual/jre-1.7 !=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) +SLOT=0/25 +SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.14.0.tar.gz -> protobuf-3.14.0.tar.gz +_eclasses_=java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple a814c0c1adac3d7902bc7023902a2e1a java-utils-2 ec7a89849c84f93e9c6db27812923888 +_md5_=6693d54594ae0b8f489bf1fbe362ad4b diff --git a/metadata/md5-cache/dev-java/protobuf-java-9999 b/metadata/md5-cache/dev-java/protobuf-java-9999 index 128e9b2b1e89..9a436f05f1d1 100644 --- a/metadata/md5-cache/dev-java/protobuf-java-9999 +++ b/metadata/md5-cache/dev-java/protobuf-java-9999 @@ -8,6 +8,6 @@ IUSE=elibc_FreeBSD doc source elibc_FreeBSD LICENSE=BSD PROPERTIES=live RDEPEND=>=virtual/jre-1.7 !=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -SLOT=0/24 +SLOT=0/25 _eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-pkg-simple a814c0c1adac3d7902bc7023902a2e1a java-utils-2 ec7a89849c84f93e9c6db27812923888 -_md5_=68cd0885d3e7f14c988c3219186a4307 +_md5_=3de5222edb8b00bf58ca87ccbf442ac9 diff --git a/metadata/md5-cache/dev-lang/Manifest.gz b/metadata/md5-cache/dev-lang/Manifest.gz index 36ca24efc9d3..0df051ab4825 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/erlang-23.0.3 b/metadata/md5-cache/dev-lang/erlang-23.1.4 similarity index 79% rename from metadata/md5-cache/dev-lang/erlang-23.0.3 rename to metadata/md5-cache/dev-lang/erlang-23.1.4 index 3015f17fcecb..2eaeef847be4 100644 --- a/metadata/md5-cache/dev-lang/erlang-23.0.3 +++ b/metadata/md5-cache/dev-lang/erlang-23.1.4 @@ -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 libressl odbc sctp ssl systemd tk wxwidgets elibc_FreeBSD java -KEYWORDS=amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-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? ( !libressl? ( >=dev-libs/openssl-0.9.7d:0= ) libressl? ( dev-libs/libressl: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.0.3 -SRC_URI=https://github.com/erlang/otp/archive/OTP-23.0.3.tar.gz -> erlang-23.0.3.tar.gz http://erlang.org/download/otp_doc_man_23.0.tar.gz -> erlang_doc_man_23.0.tar.gz doc? ( http://erlang.org/download/otp_doc_html_23.0.tar.gz -> erlang_doc_html_23.0.tar.gz ) +SLOT=0/23.1.4 +SRC_URI=https://github.com/erlang/otp/archive/OTP-23.1.4.tar.gz -> erlang-23.1.4.tar.gz http://erlang.org/download/otp_doc_man_23.1.tar.gz -> erlang_doc_man_23.1.tar.gz doc? ( http://erlang.org/download/otp_doc_html_23.1.tar.gz -> erlang_doc_html_23.1.tar.gz ) _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 wxwidgets e1e6e1eb5b3d911b3abd712f611e2312 -_md5_=f9ed637583f845dd9eec29a3386e83ce +_md5_=ec3ca69ef421261925723ecb688d37bd diff --git a/metadata/md5-cache/dev-lang/python-3.8.6 b/metadata/md5-cache/dev-lang/python-3.8.6 index 87fbe9330202..306868f00b16 100644 --- a/metadata/md5-cache/dev-lang/python-3.8.6 +++ b/metadata/md5-cache/dev-lang/python-3.8.6 @@ -5,7 +5,7 @@ DESCRIPTION=An interpreted, interactive, object-oriented programming language EAPI=7 HOMEPAGE=https://www.python.org/ IUSE=bluetooth build examples gdbm hardened ipv6 libressl +ncurses +readline sqlite +ssl test tk wininst +xml -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 LICENSE=PSF-2 PDEPEND=>=app-eselect/eselect-python-20140125-r1 RDEPEND=app-arch/bzip2:= app-arch/xz-utils:= dev-libs/libffi:= sys-apps/util-linux:= >=sys-libs/zlib-1.1.3:= virtual/libcrypt:= virtual/libintl gdbm? ( sys-libs/gdbm:=[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2:= ) readline? ( >=sys-libs/readline-4.1:= ) sqlite? ( >=dev-db/sqlite-3.3.8:3= ) ssl? ( !libressl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) ) tk? ( >=dev-lang/tcl-8.0:= >=dev-lang/tk-8.0:= dev-tcltk/blt:= dev-tcltk/tix ) xml? ( >=dev-libs/expat-2.1:= ) !build? ( app-misc/mime-types ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=3.8 SRC_URI=https://www.python.org/ftp/python/3.8.6/Python-3.8.6.tar.xz https://dev.gentoo.org/~mgorny/dist/python/python-gentoo-patches-3.8.6.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=16440e965454c632b9d25c6f2f4da80c +_md5_=87921f210edd725e2fce4f15cf628453 diff --git a/metadata/md5-cache/dev-libs/Ice-3.6.5 b/metadata/md5-cache/dev-libs/Ice-3.6.5 index f7090ef623f3..4d94cf9e3471 100644 --- a/metadata/md5-cache/dev-libs/Ice-3.6.5 +++ b/metadata/md5-cache/dev-libs/Ice-3.6.5 @@ -12,5 +12,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 py 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 7d999b62b8749fad43fff00620cedf47 db-use 501a5d0963e0d17f30260023f292ae8e estack 686eaab303305a908fd57b2fd7617800 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 db-use 501a5d0963e0d17f30260023f292ae8e estack 686eaab303305a908fd57b2fd7617800 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=07941d53fabcf4d7cc6de0a7d863b657 diff --git a/metadata/md5-cache/dev-libs/Ice-3.6.5-r1 b/metadata/md5-cache/dev-libs/Ice-3.6.5-r1 index 89e40b6b4120..1f5642c14052 100644 --- a/metadata/md5-cache/dev-libs/Ice-3.6.5-r1 +++ b/metadata/md5-cache/dev-libs/Ice-3.6.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 py 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 7d999b62b8749fad43fff00620cedf47 db-use 501a5d0963e0d17f30260023f292ae8e estack 686eaab303305a908fd57b2fd7617800 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 db-use 501a5d0963e0d17f30260023f292ae8e estack 686eaab303305a908fd57b2fd7617800 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d4c99408d36a0315dab3aef6a09476d9 diff --git a/metadata/md5-cache/dev-libs/Manifest.gz b/metadata/md5-cache/dev-libs/Manifest.gz index 01d025f71dbe..a4d9bb80636f 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/concurrencykit-0.7.0 b/metadata/md5-cache/dev-libs/concurrencykit-0.7.0-r1 similarity index 64% rename from metadata/md5-cache/dev-libs/concurrencykit-0.7.0 rename to metadata/md5-cache/dev-libs/concurrencykit-0.7.0-r1 index f734477675a0..5f7f37f653e4 100644 --- a/metadata/md5-cache/dev-libs/concurrencykit-0.7.0 +++ b/metadata/md5-cache/dev-libs/concurrencykit-0.7.0-r1 @@ -1,4 +1,4 @@ -DEFINED_PHASES=- +DEFINED_PHASES=configure DESCRIPTION=A library with concurrency related algorithms and data structures in C EAPI=7 HOMEPAGE=http://concurrencykit.org @@ -7,4 +7,5 @@ LICENSE=Apache-2.0 BSD-2 RDEPEND=!sys-cluster/charm SLOT=0 SRC_URI=https://github.com/concurrencykit/ck/archive/0.7.0.tar.gz -> concurrencykit-0.7.0.tar.gz -_md5_=3a072e3a5034c2d720c2085ef3de3a84 +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=1b69adaefe1bf67b27f2ec6aecefd251 diff --git a/metadata/md5-cache/dev-libs/libprelude-4.0.0 b/metadata/md5-cache/dev-libs/libprelude-4.0.0 index abf47b3d945d..e02cb6a903d1 100644 --- a/metadata/md5-cache/dev-libs/libprelude-4.0.0 +++ b/metadata/md5-cache/dev-libs/libprelude-4.0.0 @@ -10,5 +10,5 @@ RDEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= virtua REQUIRED_USE=python? ( || ( python_targets_python3_6 ) ) SLOT=0 SRC_URI=https://www.prelude-siem.org/pkg/src/4.0.0/libprelude-4.0.0.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=d7c34e97c35c51be7c5c4aa115e87684 diff --git a/metadata/md5-cache/dev-libs/libprelude-4.1.0 b/metadata/md5-cache/dev-libs/libprelude-4.1.0 index 579957f48872..b2ea21f3db73 100644 --- a/metadata/md5-cache/dev-libs/libprelude-4.1.0 +++ b/metadata/md5-cache/dev-libs/libprelude-4.1.0 @@ -10,5 +10,5 @@ RDEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= virtua REQUIRED_USE=python? ( || ( python_targets_python3_6 ) ) SLOT=0 SRC_URI=https://www.prelude-siem.org/pkg/src/4.1.0/libprelude-4.1.0.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=794faa1122ca11fe8d588fe0a1827e90 diff --git a/metadata/md5-cache/dev-libs/libprelude-5.1.1 b/metadata/md5-cache/dev-libs/libprelude-5.1.1 index 7f80f2247155..256fab0a88a1 100644 --- a/metadata/md5-cache/dev-libs/libprelude-5.1.1 +++ b/metadata/md5-cache/dev-libs/libprelude-5.1.1 @@ -1,15 +1,15 @@ -BDEPEND=>=dev-lang/swig-3.0.11 dev-util/gtk-doc-am sys-devel/flex lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= virtual/perl-ExtUtils-MakeMaker ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) virtual/pkgconfig virtual/yacc >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +BDEPEND=>=dev-lang/swig-3.0.11 dev-util/gtk-doc-am sys-devel/flex lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= virtual/perl-ExtUtils-MakeMaker ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) virtual/pkgconfig virtual/yacc >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install prepare -DEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) +DEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) DESCRIPTION=Prelude-SIEM Framework Library EAPI=7 HOMEPAGE=https://www.prelude-siem.org IUSE=lua perl python ruby python_targets_python3_6 python_targets_python3_7 KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ -RDEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) +RDEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-)] ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 ) ) SLOT=0 SRC_URI=https://www.prelude-siem.org/pkg/src/5.1.0/libprelude-5.1.1.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0eb0eab5b6529638fbdb07bd74cd4731 diff --git a/metadata/md5-cache/dev-libs/libprelude-5.2.0 b/metadata/md5-cache/dev-libs/libprelude-5.2.0 index 084714ffbf3e..df90fcebb78e 100644 --- a/metadata/md5-cache/dev-libs/libprelude-5.2.0 +++ b/metadata/md5-cache/dev-libs/libprelude-5.2.0 @@ -1,15 +1,15 @@ -BDEPEND=>=dev-lang/swig-4.0.0 dev-util/gtk-doc-am sys-devel/flex lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= virtual/perl-ExtUtils-MakeMaker ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) virtual/pkgconfig virtual/yacc >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +BDEPEND=>=dev-lang/swig-4.0.0 dev-util/gtk-doc-am sys-devel/flex lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= virtual/perl-ExtUtils-MakeMaker ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) virtual/pkgconfig virtual/yacc >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install prepare -DEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) +DEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) DESCRIPTION=Prelude-SIEM Framework Library EAPI=7 HOMEPAGE=https://www.prelude-siem.org IUSE=lua perl python ruby python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ -RDEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) +RDEPEND=net-libs/gnutls:= lua? ( dev-lang/lua:* ) perl? ( dev-lang/perl:= ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) SLOT=0 SRC_URI=https://www.prelude-siem.org/pkg/src/5.2.0/libprelude-5.2.0.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3f425d901fa6788d2fe4c8682603b685 diff --git a/metadata/md5-cache/dev-libs/libpreludedb-4.0.0-r1 b/metadata/md5-cache/dev-libs/libpreludedb-4.0.0-r1 index 0e05665af435..0b9030f86b5b 100644 --- a/metadata/md5-cache/dev-libs/libpreludedb-4.0.0-r1 +++ b/metadata/md5-cache/dev-libs/libpreludedb-4.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND=~dev-libs/libprelude-4.0.0 net-libs/gnutls:= mysql? ( dev-db/mysql-conne REQUIRED_USE=python? ( || ( python_targets_python3_6 ) ) SLOT=0 SRC_URI=https://www.prelude-siem.org/pkg/src/4.0.0/libpreludedb-4.0.0.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=1f583ce4b71c813df43ad548f89133d6 diff --git a/metadata/md5-cache/dev-libs/libpreludedb-4.1.0-r1 b/metadata/md5-cache/dev-libs/libpreludedb-4.1.0-r1 index dc3718c8a415..bad21b207483 100644 --- a/metadata/md5-cache/dev-libs/libpreludedb-4.1.0-r1 +++ b/metadata/md5-cache/dev-libs/libpreludedb-4.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=~dev-libs/libprelude-4.1.0 net-libs/gnutls:= mysql? ( dev-db/mysql-conne REQUIRED_USE=python? ( || ( python_targets_python3_6 ) ) SLOT=0 SRC_URI=https://www.prelude-siem.org/pkg/src/4.1.0/libpreludedb-4.1.0.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=ea6e2edd3d83e9b2b0c9abd413202cff diff --git a/metadata/md5-cache/dev-libs/ocl-icd-2.2.12-r3 b/metadata/md5-cache/dev-libs/ocl-icd-2.2.12-r3 index 5567137aeebc..ac8ae003df24 100644 --- a/metadata/md5-cache/dev-libs/ocl-icd-2.2.12-r3 +++ b/metadata/md5-cache/dev-libs/ocl-icd-2.2.12-r3 @@ -1,4 +1,4 @@ -BDEPEND=|| ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +BDEPEND=|| ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install prepare test DEPEND=dev-util/opencl-headers DESCRIPTION=Alternative to vendor specific OpenCL ICD loaders @@ -10,5 +10,5 @@ LICENSE=BSD-2 RDEPEND=dev-util/opencl-headers !app-eselect/eselect-opencl !dev-libs/opencl-icd-loader SLOT=0 SRC_URI=https://github.com/OCL-dev/ocl-icd/archive/v2.2.12.tar.gz -> ocl-icd-2.2.12.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ef4474a161eed409ffa09c5cdd50dfdf diff --git a/metadata/md5-cache/dev-libs/protobuf-3.13.0 b/metadata/md5-cache/dev-libs/protobuf-3.13.0 index a99b2c74fb80..79e9e2cb18e1 100644 --- a/metadata/md5-cache/dev-libs/protobuf-3.13.0 +++ b/metadata/md5-cache/dev-libs/protobuf-3.13.0 @@ -5,11 +5,11 @@ DESCRIPTION=Google's Protocol Buffers - Extensible mechanism for serializing str EAPI=7 HOMEPAGE=https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf IUSE=emacs examples static-libs test zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=BSD 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/24 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.13.0.tar.gz -> protobuf-3.13.0.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=7f7476fa75f3c77ad096aa41919b8111 +_md5_=9690a36c0d6138fc02daadcdae706a9e diff --git a/metadata/md5-cache/dev-libs/protobuf-3.14.0 b/metadata/md5-cache/dev-libs/protobuf-3.14.0 new file mode 100644 index 000000000000..5a2d156acfdb --- /dev/null +++ b/metadata/md5-cache/dev-libs/protobuf-3.14.0 @@ -0,0 +1,15 @@ +BDEPEND=emacs? ( app-editors/emacs:* ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=test? ( >=dev-cpp/gtest-1.9[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) 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(-)?] ) +DESCRIPTION=Google's Protocol Buffers - Extensible mechanism for serializing structured data +EAPI=7 +HOMEPAGE=https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf +IUSE=emacs examples static-libs test zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +LICENSE=BSD +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/25 +SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.14.0.tar.gz -> protobuf-3.14.0.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=68a23728e89c0621c49d69fe3cac6ba5 diff --git a/metadata/md5-cache/dev-libs/protobuf-9999 b/metadata/md5-cache/dev-libs/protobuf-9999 index 2e505a6fad22..a6d1723704dc 100644 --- a/metadata/md5-cache/dev-libs/protobuf-9999 +++ b/metadata/md5-cache/dev-libs/protobuf-9999 @@ -9,6 +9,6 @@ LICENSE=BSD 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/24 +SLOT=0/25 _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=66191bf0fa2254dbe6c0ab59e60c2b3b +_md5_=f38a81f67cd62567c8a3f72a4c46a595 diff --git a/metadata/md5-cache/dev-libs/re2-0.2020.11.01 b/metadata/md5-cache/dev-libs/re2-0.2020.11.01 index 827abfb12c5d..7dafa6f7fd75 100644 --- a/metadata/md5-cache/dev-libs/re2-0.2020.11.01 +++ b/metadata/md5-cache/dev-libs/re2-0.2020.11.01 @@ -5,10 +5,10 @@ DESCRIPTION=An efficient, principled regular expression library EAPI=7 HOMEPAGE=https://github.com/google/re2 IUSE=icu abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 LICENSE=BSD RDEPEND=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(-)?] ) SLOT=0/9 SRC_URI=https://github.com/google/re2/archive/2020-11-01.tar.gz -> re2-2020-11-01.tar.gz _eclasses_=multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=48229965cbe6692a3400373698d30a75 +_md5_=53bd2c07614ae6227e9fe0cdb9e87c78 diff --git a/metadata/md5-cache/dev-libs/rocksdb-6.14.5 b/metadata/md5-cache/dev-libs/rocksdb-6.14.5 index d1750cc62aae..756539dde401 100644 --- a/metadata/md5-cache/dev-libs/rocksdb-6.14.5 +++ b/metadata/md5-cache/dev-libs/rocksdb-6.14.5 @@ -5,10 +5,10 @@ DESCRIPTION=Embeddable, persistent key-value store for fast storage EAPI=7 HOMEPAGE=http://rocksdb.org https://github.com/facebook/rocksdb/ IUSE=cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_sse4_2 jemalloc static-libs -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm64 ~x86 LICENSE=GPL-2 RDEPEND=app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= dev-python/zstandard:= sys-libs/zlib:= jemalloc? ( dev-libs/jemalloc:= ) SLOT=0 SRC_URI=https://github.com/facebook/rocksdb/archive/v6.14.5.tar.gz -> rocksdb-6.14.5.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c38596b7b43842ef306a7032593e1bff +_md5_=3436c4c520f9f9f44d473eae60fd8cae diff --git a/metadata/md5-cache/dev-libs/tree-sitter-0.17.3 b/metadata/md5-cache/dev-libs/tree-sitter-0.17.3 new file mode 100644 index 000000000000..b16597e04bca --- /dev/null +++ b/metadata/md5-cache/dev-libs/tree-sitter-0.17.3 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install +DESCRIPTION=Tree-sitter is a parser generator tool and an incremental parsing library. +EAPI=7 +HOMEPAGE=https://github.com/tree-sitter/tree-sitter +KEYWORDS=~amd64 +LICENSE=MIT +SLOT=0 +SRC_URI=https://github.com/tree-sitter/tree-sitter/archive/0.17.3.tar.gz -> tree-sitter-0.17.3.tar.gz +_md5_=add630b716ab29379981e4c65cf82827 diff --git a/metadata/md5-cache/dev-libs/tree-sitter-9999 b/metadata/md5-cache/dev-libs/tree-sitter-9999 new file mode 100644 index 000000000000..6933264e4bf5 --- /dev/null +++ b/metadata/md5-cache/dev-libs/tree-sitter-9999 @@ -0,0 +1,10 @@ +BDEPEND=>=dev-vcs/git-1.8.2.1[curl] +DEFINED_PHASES=install unpack +DESCRIPTION=Tree-sitter is a parser generator tool and an incremental parsing library. +EAPI=7 +HOMEPAGE=https://github.com/tree-sitter/tree-sitter +LICENSE=MIT +PROPERTIES=live +SLOT=0 +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 +_md5_=add630b716ab29379981e4c65cf82827 diff --git a/metadata/md5-cache/dev-libs/utfcpp-3.1 b/metadata/md5-cache/dev-libs/utfcpp-3.1 index 61d94c050f21..117235860de0 100644 --- a/metadata/md5-cache/dev-libs/utfcpp-3.1 +++ b/metadata/md5-cache/dev-libs/utfcpp-3.1 @@ -1,4 +1,4 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 +BDEPEND=dev-util/ninja dev-util/cmake DEFINED_PHASES=compile configure install prepare test DEPEND=test? ( dev-cpp/gtest ) DESCRIPTION=UTF-8 C++ library @@ -10,5 +10,5 @@ LICENSE=Boost-1.0 RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/nemtrif/utfcpp/archive/v3.1.tar.gz -> utfcpp-3.1.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=21b374c658a9607e4ab1e9429a4a874a +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=2e65923fbdab16b983168bac7272ea8a diff --git a/metadata/md5-cache/dev-libs/utfcpp-3.1.1 b/metadata/md5-cache/dev-libs/utfcpp-3.1.1 new file mode 100644 index 000000000000..ecc7677d16a5 --- /dev/null +++ b/metadata/md5-cache/dev-libs/utfcpp-3.1.1 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DEPEND=test? ( dev-cpp/gtest ) +DESCRIPTION=UTF-8 C++ library +EAPI=7 +HOMEPAGE=https://github.com/nemtrif/utfcpp +IUSE=test +KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=Boost-1.0 +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/nemtrif/utfcpp/archive/v3.1.1.tar.gz -> utfcpp-3.1.1.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=1fadcd3d5dacceedef9caf3a24e2f098 diff --git a/metadata/md5-cache/dev-libs/utfcpp-3.1.2 b/metadata/md5-cache/dev-libs/utfcpp-3.1.2 new file mode 100644 index 000000000000..41eb3c2c9bb5 --- /dev/null +++ b/metadata/md5-cache/dev-libs/utfcpp-3.1.2 @@ -0,0 +1,14 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DEPEND=test? ( dev-cpp/gtest ) +DESCRIPTION=UTF-8 C++ library +EAPI=7 +HOMEPAGE=https://github.com/nemtrif/utfcpp +IUSE=test +KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=Boost-1.0 +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/nemtrif/utfcpp/archive/v3.1.2.tar.gz -> utfcpp-3.1.2.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=1fadcd3d5dacceedef9caf3a24e2f098 diff --git a/metadata/md5-cache/dev-libs/utfcpp-9999 b/metadata/md5-cache/dev-libs/utfcpp-9999 index 2ea162ed046e..2b8d88145f59 100644 --- a/metadata/md5-cache/dev-libs/utfcpp-9999 +++ b/metadata/md5-cache/dev-libs/utfcpp-9999 @@ -1,4 +1,4 @@ -BDEPEND=dev-util/ninja >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=dev-util/ninja dev-util/cmake >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare test unpack DEPEND=test? ( dev-cpp/gtest ) DESCRIPTION=UTF-8 C++ library @@ -9,5 +9,5 @@ LICENSE=Boost-1.0 PROPERTIES=live RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c14a5368ee73acf096fbcca0e41ceaf9 +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=5c697ec8967082a44db5b15ae625e7f7 diff --git a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.14 b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.14 index 6bd8f348560a..2ee4514a165a 100644 --- a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.14 +++ b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.14 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/xapian-1.4.14 lua? ( dev-lang/lua:= ) perl? ( dev-lang/perl:= REQUIRED_USE=|| ( java lua mono perl php python ruby tcl ) python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) ruby? ( || ( ruby_targets_ruby25 ruby_targets_ruby26 ) ) php? ( || ( php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 ) ) SLOT=0 SRC_URI=https://oligarchy.co.uk/xapian/1.4.14/xapian-bindings-1.4.14.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c30c74e897dac70f8e3ec5f242754e07 diff --git a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.15 b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.15 index b567fb343684..d5383b76023f 100644 --- a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.15 +++ b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.15 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/xapian-1.4.15 lua? ( dev-lang/lua:= ) perl? ( dev-lang/perl:= REQUIRED_USE=|| ( java lua mono perl php python ruby tcl ) python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) ruby? ( || ( ruby_targets_ruby25 ruby_targets_ruby26 ) ) php? ( || ( php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 ) ) SLOT=0 SRC_URI=https://oligarchy.co.uk/xapian/1.4.15/xapian-bindings-1.4.15.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=28af3d7dd7ec30fcd4c58426782026d3 diff --git a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.16 b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.16 index dc3b669ab545..e4fbb587d617 100644 --- a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.16 +++ b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.16 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/xapian-1.4.15 lua? ( dev-lang/lua:= ) perl? ( dev-lang/perl:= REQUIRED_USE=|| ( java lua mono perl php python ruby tcl ) python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) ruby? ( || ( ruby_targets_ruby25 ruby_targets_ruby26 ) ) php? ( || ( php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 ) ) SLOT=0 SRC_URI=https://oligarchy.co.uk/xapian/1.4.16/xapian-bindings-1.4.16.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=28af3d7dd7ec30fcd4c58426782026d3 diff --git a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.17 b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.17 index 61fc6e03e875..36491c6b9e35 100644 --- a/metadata/md5-cache/dev-libs/xapian-bindings-1.4.17 +++ b/metadata/md5-cache/dev-libs/xapian-bindings-1.4.17 @@ -11,5 +11,5 @@ RDEPEND=>=dev-libs/xapian-1.4.15 lua? ( dev-lang/lua:= ) perl? ( dev-lang/perl:= REQUIRED_USE=|| ( java lua mono perl php python ruby tcl ) python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) ruby? ( || ( ruby_targets_ruby25 ruby_targets_ruby26 ) ) php? ( || ( php_targets_php7-2 php_targets_php7-3 php_targets_php7-4 ) ) SLOT=0 SRC_URI=https://oligarchy.co.uk/xapian/1.4.17/xapian-bindings-1.4.17.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f39d65abf6805656f493d73542d1f6d1 diff --git a/metadata/md5-cache/dev-lua/Manifest.gz b/metadata/md5-cache/dev-lua/Manifest.gz index 7660bec16ef6..d9cc7121a882 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/luasec-0.9-r100 b/metadata/md5-cache/dev-lua/luasec-0.9-r100 new file mode 100644 index 000000000000..47e400b49aa0 --- /dev/null +++ b/metadata/md5-cache/dev-lua/luasec-0.9-r100 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=compile install prepare +DEPEND=>=dev-lua/luasocket-3.0_rc1_p20200328-r100 libressl? ( dev-libs/libressl:= ) !libressl? ( dev-libs/openssl:0= ) lua_targets_lua5-1? ( dev-lang/lua:5.1[deprecated] ) lua_targets_lua5-2? ( dev-lang/lua:5.2[deprecated] ) lua_targets_lua5-3? ( dev-lang/lua:5.3[deprecated] ) +DESCRIPTION=Lua binding for OpenSSL library to provide TLS/SSL communication +EAPI=7 +HOMEPAGE=https://github.com/brunoos/luasec +IUSE=libressl lua_targets_lua5-1 lua_targets_lua5-2 lua_targets_lua5-3 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-lua/luasocket-3.0_rc1_p20200328-r100 libressl? ( dev-libs/libressl:= ) !libressl? ( dev-libs/openssl:0= ) lua_targets_lua5-1? ( dev-lang/lua:5.1[deprecated] ) lua_targets_lua5-2? ( dev-lang/lua:5.2[deprecated] ) lua_targets_lua5-3? ( dev-lang/lua:5.3[deprecated] ) +REQUIRED_USE=|| ( lua_targets_lua5-1 lua_targets_lua5-2 lua_targets_lua5-3 ) +SLOT=0 +SRC_URI=https://github.com/brunoos/luasec/archive/v0.9.tar.gz -> luasec-0.9.tar.gz +_eclasses_=lua 117840f7c4855d27ccde1c6cca990331 lua-utils 661d14f97b7d04273143565853fdfbfe multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=6abba7daa649b221b0dbb2df08592f47 diff --git a/metadata/md5-cache/dev-lua/luasocket-3.0_rc1_p20200328 b/metadata/md5-cache/dev-lua/luasocket-3.0_rc1_p20200328 new file mode 100644 index 000000000000..16073c66df90 --- /dev/null +++ b/metadata/md5-cache/dev-lua/luasocket-3.0_rc1_p20200328 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-lang/lua-5.1.5-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(-)?] +DESCRIPTION=Networking support library for the Lua language +EAPI=7 +HOMEPAGE=http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/ https://github.com/diegonehab/luasocket +IUSE=abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 +LICENSE=MIT +RDEPEND=>=dev-lang/lua-5.1.5-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(-)?] +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/diegonehab/luasocket/archive/5b18e475f38fcf28429b1cc4b17baee3b9793a62.tar.gz -> luasocket-3.0_rc1_p20200328.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=1d19913b563f776ad25bf698744eba7d diff --git a/metadata/md5-cache/dev-lua/luasocket-3.0_rc1_p20200328-r100 b/metadata/md5-cache/dev-lua/luasocket-3.0_rc1_p20200328-r100 new file mode 100644 index 000000000000..225dc4eb03d2 --- /dev/null +++ b/metadata/md5-cache/dev-lua/luasocket-3.0_rc1_p20200328-r100 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=compile configure install prepare test +DEPEND=lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-2? ( dev-lang/lua:5.2 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) +DESCRIPTION=Networking support library for the Lua language +EAPI=7 +HOMEPAGE=http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/ https://github.com/diegonehab/luasocket +IUSE=lua_targets_lua5-1 lua_targets_lua5-2 lua_targets_lua5-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 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 +LICENSE=MIT +RDEPEND=lua_targets_lua5-1? ( dev-lang/lua:5.1 ) lua_targets_lua5-2? ( dev-lang/lua:5.2 ) lua_targets_lua5-3? ( dev-lang/lua:5.3 ) +REQUIRED_USE=|| ( lua_targets_lua5-1 lua_targets_lua5-2 lua_targets_lua5-3 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/diegonehab/luasocket/archive/5b18e475f38fcf28429b1cc4b17baee3b9793a62.tar.gz -> luasocket-3.0_rc1_p20200328.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e lua 117840f7c4855d27ccde1c6cca990331 lua-utils 661d14f97b7d04273143565853fdfbfe multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=be0faf1ac534a34046a29a9cecdd7add diff --git a/metadata/md5-cache/dev-perl/Manifest.gz b/metadata/md5-cache/dev-perl/Manifest.gz index 78beed49b2bf..33d559fd313a 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/Search-Xapian-1.2.25.3 b/metadata/md5-cache/dev-perl/Search-Xapian-1.2.25.4 similarity index 92% rename from metadata/md5-cache/dev-perl/Search-Xapian-1.2.25.3 rename to metadata/md5-cache/dev-perl/Search-Xapian-1.2.25.4 index 9a16c3a2a04c..4cab698206e4 100644 --- a/metadata/md5-cache/dev-perl/Search-Xapian-1.2.25.3 +++ b/metadata/md5-cache/dev-perl/Search-Xapian-1.2.25.4 @@ -9,6 +9,6 @@ LICENSE=|| ( Artistic GPL-1 GPL-2 GPL-3 ) RDEPEND=dev-libs/xapian:0/1.2.22 !dev-libs/xapian-bindings[perl] dev-lang/perl:= RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://cpan/authors/id/O/OL/OLLY/Search-Xapian-1.2.25.3.tar.gz http://oligarchy.co.uk/xapian/1.2.25/Search-Xapian-1.2.25.3.tar.gz +SRC_URI=mirror://cpan/authors/id/O/OL/OLLY/Search-Xapian-1.2.25.4.tar.gz http://oligarchy.co.uk/xapian/1.2.25/Search-Xapian-1.2.25.4.tar.gz _eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=28aa7786ba53082755b3de124839fdd8 diff --git a/metadata/md5-cache/dev-php/Manifest.gz b/metadata/md5-cache/dev-php/Manifest.gz index 2a2bc1847254..8a2872fc42c4 100644 Binary files a/metadata/md5-cache/dev-php/Manifest.gz and b/metadata/md5-cache/dev-php/Manifest.gz differ diff --git a/metadata/md5-cache/dev-php/PEAR-Archive_Tar-1.4.11 b/metadata/md5-cache/dev-php/PEAR-Archive_Tar-1.4.11 new file mode 100644 index 000000000000..03d6645636fe --- /dev/null +++ b/metadata/md5-cache/dev-php/PEAR-Archive_Tar-1.4.11 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install +DESCRIPTION=Tar file management class +EAPI=7 +HOMEPAGE=https://pear.php.net/package/Archive_Tar +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=BSD +PDEPEND=dev-php/PEAR-PEAR +RDEPEND=dev-lang/php:*[bzip2,pcre(+),zlib] +SLOT=0 +SRC_URI=https://pear.php.net/get/Archive_Tar-1.4.11.tgz +_md5_=2576e570fca1f70d43d821f821555123 diff --git a/metadata/md5-cache/dev-python/Manifest.gz b/metadata/md5-cache/dev-python/Manifest.gz index 9a5e2d239c8c..91bffe71b860 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/aiocontextvars-0.2.2 b/metadata/md5-cache/dev-python/aiocontextvars-0.2.2 index 8be6e7291c3c..ba83b7e45cd5 100644 --- a/metadata/md5-cache/dev-python/aiocontextvars-0.2.2 +++ b/metadata/md5-cache/dev-python/aiocontextvars-0.2.2 @@ -5,7 +5,7 @@ DESCRIPTION=Asyncio support for PEP-567 contextvars backport EAPI=7 HOMEPAGE=https://github.com/fantix/aiocontextvars IUSE=doc test python_targets_python3_6 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ~ppc64 x86 LICENSE=BSD RDEPEND=dev-python/contextvars[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,-python_single_target_python3_6(-)] REQUIRED_USE=|| ( python_targets_python3_6 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/fantix/aiocontextvars/archive/v0.2.2.tar.gz -> aiocontextvars-0.2.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2566dbd6c341753b8a29e37b6ba0428e +_md5_=8e2706fa9538cf1995abd9dd609fef8d diff --git a/metadata/md5-cache/dev-python/aiohttp-3.7.2 b/metadata/md5-cache/dev-python/aiohttp-3.7.2 index 8fc7a9c79a23..14508fca393b 100644 --- a/metadata/md5-cache/dev-python/aiohttp-3.7.2 +++ b/metadata/md5-cache/dev-python/aiohttp-3.7.2 @@ -5,7 +5,7 @@ DESCRIPTION=http client/server for asyncio EAPI=7 HOMEPAGE=https://pypi.org/project/aiohttp/ IUSE=doc test doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/async_timeout-3.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/attrs-17.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/chardet[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/multidict-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/yarl-1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/idna-ssl[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://pypi/a/aiohttp/aiohttp-3.7.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f29eac0352e2bddb338f18767ef9b066 +_md5_=f2eefa1cb96157d8c49338379b8728ca diff --git a/metadata/md5-cache/dev-python/asttokens-2.0.4 b/metadata/md5-cache/dev-python/asttokens-2.0.4 index f4428e5a979e..550c97710ad0 100644 --- a/metadata/md5-cache/dev-python/asttokens-2.0.4 +++ b/metadata/md5-cache/dev-python/asttokens-2.0.4 @@ -4,7 +4,7 @@ DESCRIPTION=Annotate Python AST trees with source text and token information EAPI=7 HOMEPAGE=https://github.com/gristlabs/asttokens/ https://pypi.org/project/asttokens/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ~ppc64 x86 LICENSE=Apache-2.0 RDEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/gristlabs/asttokens/archive/v2.0.4.tar.gz -> asttokens-2.0.4.gh.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=f9a86efaf7c5f8ee78e3c1adf9f2a133 +_md5_=205eec9cf11d1c938ab79f8653aee2ef diff --git a/metadata/md5-cache/dev-python/boto3-1.16.22 b/metadata/md5-cache/dev-python/boto3-1.16.22 new file mode 100644 index 000000000000..767b8d844a73 --- /dev/null +++ b/metadata/md5-cache/dev-python/boto3-1.16.22 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.22[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jmespath-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/s3transfer-0.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=The AWS SDK for Python +EAPI=7 +HOMEPAGE=https://github.com/boto/boto3 +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.19.22[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jmespath-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/s3transfer-0.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/boto/boto3/archive/1.16.22.tar.gz -> boto3-1.16.22.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/boto3-1.16.23 b/metadata/md5-cache/dev-python/boto3-1.16.23 new file mode 100644 index 000000000000..68c061b855af --- /dev/null +++ b/metadata/md5-cache/dev-python/boto3-1.16.23 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/botocore-1.19.23[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jmespath-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/s3transfer-0.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=The AWS SDK for Python +EAPI=7 +HOMEPAGE=https://github.com/boto/boto3 +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/botocore-1.19.23[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/jmespath-0.7.1[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/s3transfer-0.3.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/boto/boto3/archive/1.16.23.tar.gz -> boto3-1.16.23.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=53909f2d22ada8f7f100ce8183ef9cfc diff --git a/metadata/md5-cache/dev-python/botocore-1.19.22 b/metadata/md5-cache/dev-python/botocore-1.19.22 new file mode 100644 index 000000000000..6f0bf8d3b035 --- /dev/null +++ b/metadata/md5-cache/dev-python/botocore-1.19.22 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jsonschema[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/urllib3-1.25.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Low-level, data-driven core of boto 3 +EAPI=7 +HOMEPAGE=https://github.com/boto/botocore +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/urllib3-1.25.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/b/botocore/botocore-1.19.22.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/botocore-1.19.23 b/metadata/md5-cache/dev-python/botocore-1.19.23 new file mode 100644 index 000000000000..f9844fc71619 --- /dev/null +++ b/metadata/md5-cache/dev-python/botocore-1.19.23 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jsonschema[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/guzzle_sphinx_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/urllib3-1.25.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Low-level, data-driven core of boto 3 +EAPI=7 +HOMEPAGE=https://github.com/boto/botocore +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=Apache-2.0 +RDEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/jmespath[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/urllib3-1.25.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/b/botocore/botocore-1.19.23.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=f5530f62319f8a88c8d1822506f374be diff --git a/metadata/md5-cache/dev-python/executing-0.5.3 b/metadata/md5-cache/dev-python/executing-0.5.3 index 73fa376e97d6..deda8f9ab493 100644 --- a/metadata/md5-cache/dev-python/executing-0.5.3 +++ b/metadata/md5-cache/dev-python/executing-0.5.3 @@ -4,7 +4,7 @@ DESCRIPTION=Get information about what a Python frame is currently doing EAPI=7 HOMEPAGE=https://github.com/alexmojaki/executing/ https://pypi.org/project/executing/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ~ppc64 x86 LICENSE=MIT RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/alexmojaki/executing/archive/v0.5.3.tar.gz -> executing-0.5.3.gh.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1614f65e3e818d38771ac1e5d1ea05a4 +_md5_=05ef436ec1974b22e555edeac604f40a diff --git a/metadata/md5-cache/dev-python/fakeredis-1.4.3 b/metadata/md5-cache/dev-python/fakeredis-1.4.3 index 8cc5ae00a7aa..788aaffbffd1 100644 --- a/metadata/md5-cache/dev-python/fakeredis-1.4.3 +++ b/metadata/md5-cache/dev-python/fakeredis-1.4.3 @@ -4,7 +4,7 @@ DESCRIPTION=Fake implementation of redis API for testing purposes EAPI=7 HOMEPAGE=https://github.com/jamesls/fakeredis/ https://pypi.org/project/fakeredis/ IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ~ppc64 x86 LICENSE=BSD RDEPEND=dev-python/redis-py[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/six[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/sortedcontainers[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/jamesls/fakeredis/archive/1.4.3.tar.gz -> fakeredis-1.4.3.gh.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=955252013aa57d67204fd0192b195177 +_md5_=5f2d0a7bd5886407653841e51d5d9fc3 diff --git a/metadata/md5-cache/dev-python/flask-mongoengine-1.0.0 b/metadata/md5-cache/dev-python/flask-mongoengine-1.0.0 new file mode 100644 index 000000000000..9c37b17172ee --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-mongoengine-1.0.0 @@ -0,0 +1,15 @@ +BDEPEND=doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) ) test? ( >=dev-python/flask-1.1.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/mongoengine-0.20[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/flask-wtf-0.14.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Flask support for MongoDB and with WTF model forms +EAPI=7 +HOMEPAGE=https://pypi.org/project/flask-mongoengine/ +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/flask-1.1.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/mongoengine-0.20[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/flask-wtf-0.14.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=test !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/MongoEngine/flask-mongoengine/archive/v1.0.0.tar.gz -> flask-mongoengine-1.0.0.gh.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=e296437b80c8c5c22fd033ec398836ab diff --git a/metadata/md5-cache/dev-python/ifaddr-0.1.7 b/metadata/md5-cache/dev-python/ifaddr-0.1.7 new file mode 100644 index 000000000000..c3bb3840d150 --- /dev/null +++ b/metadata/md5-cache/dev-python/ifaddr-0.1.7 @@ -0,0 +1,15 @@ +BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Enumerate IP addresses on the local network adapters +EAPI=7 +HOMEPAGE=https://github.com/pydron/ifaddr +IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/i/ifaddr/ifaddr-0.1.7.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=1893fd2bc2b55c5f3ab432e568a2e51c diff --git a/metadata/md5-cache/dev-python/immutables-0.11 b/metadata/md5-cache/dev-python/immutables-0.11 deleted file mode 100644 index b8774a2daf6e..000000000000 --- a/metadata/md5-cache/dev-python/immutables-0.11 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=A high-performance immutable mapping type for Python -EAPI=7 -HOMEPAGE=https://github.com/MagicStack/immutables -IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 ~arm64 ~ppc64 x86 -LICENSE=Apache-2.0 -RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/MagicStack/immutables/archive/v0.11.tar.gz -> immutables-0.11.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c378f57d75f8d3e7f568b01e68462cef diff --git a/metadata/md5-cache/dev-python/jaraco-packaging-8.1.1 b/metadata/md5-cache/dev-python/jaraco-packaging-8.1.1 new file mode 100644 index 000000000000..b396349cdbc3 --- /dev/null +++ b/metadata/md5-cache/dev-python/jaraco-packaging-8.1.1 @@ -0,0 +1,16 @@ +BDEPEND=doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] >=dev-python/rst-linker-1.9[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] >=dev-python/rst-linker-1.9[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] >=dev-python/rst-linker-1.9[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] >=dev-python/rst-linker-1.9[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( >=dev-python/pypy3-7.3.0:0 dev-python/sphinx[python_targets_pypy3(-),python_single_target_pypy3(+)] >=dev-python/rst-linker-1.9[python_targets_pypy3(-),python_single_target_pypy3(+)] ) ) ) test? ( python_targets_pypy3? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_6? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/namespace-jaraco-2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools_scm-1.15.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DESCRIPTION=Tools to supplement packaging Python releases +EAPI=7 +HOMEPAGE=https://github.com/jaraco/jaraco.packaging +IUSE=doc test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=python_targets_pypy3? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_6? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( dev-python/importlib_metadata[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) >=dev-python/namespace-jaraco-2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/j/jaraco.packaging/jaraco.packaging-8.1.1.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=f8658a8fd6db3a1d9b5c622c3910dacd diff --git a/metadata/md5-cache/dev-python/jeepney-0.6.0 b/metadata/md5-cache/dev-python/jeepney-0.6.0 new file mode 100644 index 000000000000..bd440e81c3a7 --- /dev/null +++ b/metadata/md5-cache/dev-python/jeepney-0.6.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pytest-asyncio[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/testpath[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/sphinx_rtd_theme[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx_rtd_theme[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/sphinx_rtd_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/sphinx_rtd_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( >=dev-python/pypy3-7.3.0:0 dev-python/sphinx[python_targets_pypy3(-),python_single_target_pypy3(+)] dev-python/sphinx_rtd_theme[python_targets_pypy3(-),python_single_target_pypy3(+)] ) ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Low-level, pure Python DBus protocol wrapper +EAPI=7 +HOMEPAGE=https://gitlab.com/takluyver/jeepney +IUSE=examples test doc python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/j/jeepney/jeepney-0.6.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=5434d3667467e1491d4442dc8c10ae16 diff --git a/metadata/md5-cache/dev-python/miniupnpc-2.1.20191224 b/metadata/md5-cache/dev-python/miniupnpc-2.1.20191224 deleted file mode 100644 index d10dfce53d53..000000000000 --- a/metadata/md5-cache/dev-python/miniupnpc-2.1.20191224 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=verify-sig? ( app-crypt/openpgp-keys-miniupnp ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=net-libs/miniupnpc-2.1.20191224:0= -DESCRIPTION=Python bindings for UPnP client library -EAPI=7 -HOMEPAGE=http://miniupnp.free.fr/ -IUSE=python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 verify-sig -KEYWORDS=amd64 ppc ppc64 x86 -LICENSE=BSD -RDEPEND=>=net-libs/miniupnpc-2.1.20191224:0= python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) -SLOT=0 -SRC_URI=http://miniupnp.free.fr/files/miniupnpc-2.1.20191224.tar.gz verify-sig? ( http://miniupnp.free.fr/files/miniupnpc-2.1.20191224.tar.gz.sig ) -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a -_md5_=6a2912e0ef3ff11f066cecabdce1d425 diff --git a/metadata/md5-cache/dev-python/mongoengine-0.21.0 b/metadata/md5-cache/dev-python/mongoengine-0.21.0 new file mode 100644 index 000000000000..722ef5bd9172 --- /dev/null +++ b/metadata/md5-cache/dev-python/mongoengine-0.21.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/mongomock[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( dev-python/blinker[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pymongo[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A Python Object-Document-Mapper for working with MongoDB +EAPI=7 +HOMEPAGE=https://github.com/MongoEngine/mongoengine/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-python/blinker[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pillow[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pymongo[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=test !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/MongoEngine/mongoengine/archive/v0.21.0.tar.gz -> mongoengine-0.21.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=865fd0b5c96728c27b62dcc3e081c7e1 diff --git a/metadata/md5-cache/dev-python/passlib-1.7.2 b/metadata/md5-cache/dev-python/passlib-1.7.2 deleted file mode 100644 index 05e1a0c13cf7..000000000000 --- a/metadata/md5-cache/dev-python/passlib-1.7.2 +++ /dev/null @@ -1,15 +0,0 @@ -BDEPEND=test? ( dev-python/bcrypt[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/cryptography[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/scrypt[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( bcrypt? ( dev-python/bcrypt[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) totp? ( dev-python/cryptography[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) scrypt? ( dev-python/scrypt[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) >=dev-python/nose-1.3.7-r4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DESCRIPTION=Password hashing framework supporting over 20 schemes -EAPI=7 -HOMEPAGE=https://foss.heptapod.net/python-libs/passlib/wikis/home -IUSE=+bcrypt doc +scrypt +totp test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 -LICENSE=BSD-2 -RDEPEND=bcrypt? ( dev-python/bcrypt[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) totp? ( dev-python/cryptography[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) scrypt? ( dev-python/scrypt[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://pypi/p/passlib/passlib-1.7.2.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=8faa290bba3ed585f054be740659399e diff --git a/metadata/md5-cache/dev-python/passlib-1.7.4 b/metadata/md5-cache/dev-python/passlib-1.7.4 index dacf4a596524..a7a03dff774d 100644 --- a/metadata/md5-cache/dev-python/passlib-1.7.4 +++ b/metadata/md5-cache/dev-python/passlib-1.7.4 @@ -4,7 +4,7 @@ DESCRIPTION=Password hashing framework supporting over 20 schemes EAPI=7 HOMEPAGE=https://foss.heptapod.net/python-libs/passlib/wikis/home IUSE=+bcrypt doc +scrypt +totp test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86 +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 LICENSE=BSD-2 RDEPEND=bcrypt? ( dev-python/bcrypt[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) totp? ( dev-python/cryptography[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) scrypt? ( dev-python/scrypt[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/passlib/passlib-1.7.4.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4abd0dce8abd8e64570987699e1c378a +_md5_=3c7c75dd44494cd08099e43ae24bd379 diff --git a/metadata/md5-cache/dev-python/protobuf-python-3.13.0-r1 b/metadata/md5-cache/dev-python/protobuf-python-3.13.0-r1 index c01f6f48f238..17349c31f62b 100644 --- a/metadata/md5-cache/dev-python/protobuf-python-3.13.0-r1 +++ b/metadata/md5-cache/dev-python/protobuf-python-3.13.0-r1 @@ -5,11 +5,11 @@ DESCRIPTION=Google's Protocol Buffers - Python bindings EAPI=7 HOMEPAGE=https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=BSD RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~dev-libs/protobuf-3.13.0 dev-python/namespace-google[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] !=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0/24 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.13.0.tar.gz -> protobuf-3.13.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c75865f189024b593057a97becba10e3 +_md5_=067e5392a6ed1f1bef212d2137d2b5fb diff --git a/metadata/md5-cache/dev-python/protobuf-python-3.14.0 b/metadata/md5-cache/dev-python/protobuf-python-3.14.0 new file mode 100644 index 000000000000..7b399880c82c --- /dev/null +++ b/metadata/md5-cache/dev-python/protobuf-python-3.14.0 @@ -0,0 +1,15 @@ +BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~dev-libs/protobuf-3.14.0 dev-python/namespace-google[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~dev-libs/protobuf-3.14.0 +DESCRIPTION=Google's Protocol Buffers - Python bindings +EAPI=7 +HOMEPAGE=https://developers.google.com/protocol-buffers/ https://github.com/protocolbuffers/protobuf +IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +LICENSE=BSD +RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~dev-libs/protobuf-3.14.0 dev-python/namespace-google[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] !=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +SLOT=0/25 +SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.14.0.tar.gz -> protobuf-3.14.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=09235f901cd0f2c233e1220336779511 diff --git a/metadata/md5-cache/dev-python/protobuf-python-9999 b/metadata/md5-cache/dev-python/protobuf-python-9999 index 0d9ca4208e08..a73fc85b89d5 100644 --- a/metadata/md5-cache/dev-python/protobuf-python-9999 +++ b/metadata/md5-cache/dev-python/protobuf-python-9999 @@ -7,8 +7,8 @@ HOMEPAGE=https://developers.google.com/protocol-buffers/ https://github.com/prot IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 LICENSE=BSD PROPERTIES=live -RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~dev-libs/protobuf-9999 dev-python/namespace-google[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] !=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ~dev-libs/protobuf-9999 dev-python/namespace-google[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] !=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -SLOT=0/24 +SLOT=0/25 _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e git-r3 3e7ec3d6619213460c85e2aa48398441 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=a9be68277bcbf033e6ba94eae92bd5d4 +_md5_=67faa3d2ab09ee7d0f7dd281771250f3 diff --git a/metadata/md5-cache/dev-python/pycairo-1.19.1 b/metadata/md5-cache/dev-python/pycairo-1.19.1 deleted file mode 100644 index 0c8d2b2a9427..000000000000 --- a/metadata/md5-cache/dev-python/pycairo-1.19.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( dev-python/hypothesis[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) doc? ( || ( ( dev-lang/python:3.9[threads(+)] dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/sphinx_rtd_theme[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8[threads(+)] dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx_rtd_theme[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7[threads(+)] dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/sphinx_rtd_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6[threads(+)] dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/sphinx_rtd_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( >=dev-python/pypy3-7.3.0:0[threads(+)] dev-python/sphinx[python_targets_pypy3(-),python_single_target_pypy3(+)] dev-python/sphinx_rtd_theme[python_targets_pypy3(-),python_single_target_pypy3(+)] ) ) ) test? ( >=x11-libs/cairo-1.13.1[svg] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -DEFINED_PHASES=compile configure install prepare test -DEPEND=>=x11-libs/cairo-1.13.1[svg] -DESCRIPTION=Python bindings for the cairo library -EAPI=7 -HOMEPAGE=https://www.cairographics.org/pycairo/ https://github.com/pygobject/pycairo -IUSE=examples doc test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos -LICENSE=|| ( LGPL-2.1 MPL-1.1 ) -RDEPEND=>=x11-libs/cairo-1.13.1[svg] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/pygobject/pycairo/releases/download/v1.19.1/pycairo-1.19.1.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=a53473f0cb90a35fd332c79c781b73d6 diff --git a/metadata/md5-cache/dev-python/pycairo-1.20.0 b/metadata/md5-cache/dev-python/pycairo-1.20.0 index 344d671410f4..f2f19b2078f3 100644 --- a/metadata/md5-cache/dev-python/pycairo-1.20.0 +++ b/metadata/md5-cache/dev-python/pycairo-1.20.0 @@ -5,7 +5,7 @@ DESCRIPTION=Python bindings for the cairo library EAPI=7 HOMEPAGE=https://www.cairographics.org/pycairo/ https://github.com/pygobject/pycairo IUSE=examples doc test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=|| ( LGPL-2.1 MPL-1.1 ) RDEPEND=>=x11-libs/cairo-1.13.1[svg] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/pygobject/pycairo/releases/download/v1.20.0/pycairo-1.20.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c5b38cf72539150dc62247dca18c30b8 +_md5_=48e0925e86a1f38011dcdcec8a897d44 diff --git a/metadata/md5-cache/dev-python/pylatex-1.3.3 b/metadata/md5-cache/dev-python/pylatex-1.4.1 similarity index 51% rename from metadata/md5-cache/dev-python/pylatex-1.3.3 rename to metadata/md5-cache/dev-python/pylatex-1.4.1 index e2bfb58f1579..e9c5ca7d5a9f 100644 --- a/metadata/md5-cache/dev-python/pylatex-1.3.3 +++ b/metadata/md5-cache/dev-python/pylatex-1.4.1 @@ -1,15 +1,15 @@ -BDEPEND=test? ( dev-python/ordered-set[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( dev-python/quantities[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/matplotlib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/numpy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] app-text/texlive dev-texlive/texlive-latexextra ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +BDEPEND=test? ( dev-python/ordered-set[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( dev-python/quantities[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/matplotlib[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/numpy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] app-text/texlive dev-texlive/texlive-latexextra ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install postinst prepare test DESCRIPTION=A Python library for creating LaTeX files and snippets EAPI=7 HOMEPAGE=https://github.com/JelteF/PyLaTeX IUSE=examples test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=amd64 x86 +KEYWORDS=~amd64 ~x86 LICENSE=MIT RDEPEND=dev-python/ordered-set[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://github.com/JelteF/PyLaTeX/archive/v1.3.3.tar.gz -> pylatex-1.3.3.tar.gz +SRC_URI=https://github.com/JelteF/PyLaTeX/archive/v1.4.1.tar.gz -> pylatex-1.4.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=dc66c476c106b4059a9271a48df101be +_md5_=e4d4aee271cc2e59388a865406debe67 diff --git a/metadata/md5-cache/dev-python/pyproject2setuppy-9 b/metadata/md5-cache/dev-python/pyproject2setuppy-9 new file mode 100644 index 000000000000..37b0170c1d54 --- /dev/null +++ b/metadata/md5-cache/dev-python/pyproject2setuppy-9 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/setuptools[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( dev-python/setuptools[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Cheap setup.py hack to install flit & poetry-based projects +EAPI=7 +HOMEPAGE=https://github.com/mgorny/pyproject2setuppy +IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=BSD-2 +RDEPEND=dev-python/setuptools[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/mgorny/pyproject2setuppy/archive/v9.tar.gz -> pyproject2setuppy-9.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=22a8861637e21f361d65f41e148aae0d diff --git a/metadata/md5-cache/dev-python/pypy-7.3.3 b/metadata/md5-cache/dev-python/pypy-7.3.3 new file mode 100644 index 000000000000..445d6fbfef9d --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy-7.3.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare test +DEPEND=|| ( dev-python/pypy-exe:7.3.3[bzip2?,ncurses?] dev-python/pypy-exe-bin:7.3.3 ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) gdbm? ( sys-libs/gdbm:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !=sys-libs/zlib-1.1.3:0= dev-libs/libffi:0= virtual/libintl:0= dev-libs/expat:0= bzip2? ( app-arch/bzip2:0= ) ncurses? ( sys-libs/ncurses:0= ) !dev-python/pypy-exe-bin:7.3.3 +DESCRIPTION=PyPy executable (build from source) +EAPI=7 +HOMEPAGE=https://pypy.org/ +IUSE=bzip2 +jit low-memory ncurses cpu_flags_x86_sse2 +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=>=sys-libs/zlib-1.1.3:0= dev-libs/libffi:0= virtual/libintl:0= dev-libs/expat:0= bzip2? ( app-arch/bzip2:0= ) ncurses? ( sys-libs/ncurses:0= ) !dev-python/pypy-exe-bin:7.3.3 +SLOT=7.3.3 +SRC_URI=https://buildbot.pypy.org/pypy/pypy2.7-v7.3.3-src.tar.bz2 +_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=4faaeb49e8283690b3e9973cb177027d diff --git a/metadata/md5-cache/dev-python/pypy-exe-bin-7.3.3 b/metadata/md5-cache/dev-python/pypy-exe-bin-7.3.3 new file mode 100644 index 000000000000..530d1f41801c --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy-exe-bin-7.3.3 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install unpack +DESCRIPTION=PyPy executable (pre-built version) +EAPI=7 +HOMEPAGE=https://pypy.org/ +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=sys-libs/zlib-1.1.3:0/1 dev-libs/libffi:0/7 virtual/libintl:0/0 dev-libs/expat:0/0 app-arch/bzip2:0/1 sys-libs/ncurses:0/6 !dev-python/pypy-exe:7.3.3 +SLOT=7.3.3 +SRC_URI=amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/pypy/dev-python/pypy-exe/pypy-exe-7.3.3-1.xpak -> pypy-exe-7.3.3-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/pypy/dev-python/pypy-exe/pypy-exe-7.3.3-1.xpak -> pypy-exe-7.3.3-1.x86.xpak ) +_eclasses_=pax-utils a41d1fd1c111289ffa04490de6ee79d7 +_md5_=387bc9886fa41abb4f67e163de746ebc diff --git a/metadata/md5-cache/dev-python/pypy3-7.3.3 b/metadata/md5-cache/dev-python/pypy3-7.3.3 new file mode 100644 index 000000000000..0d037e4b3622 --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy3-7.3.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=|| ( dev-python/pypy3-exe:7.3.3[bzip2?,ncurses?] dev-python/pypy3-exe-bin:7.3.3 ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) gdbm? ( sys-libs/gdbm:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !=dev-lang/python-2.7.5-r2:2.7 ) !!dev-python/pytest-forked ) +DESCRIPTION=A fast, compliant alternative implementation of the Python (3.6) language +EAPI=7 +HOMEPAGE=https://pypy.org/ +IUSE=bzip2 gdbm +jit libressl ncurses sqlite test tk +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=|| ( dev-python/pypy3-exe:7.3.3[bzip2?,ncurses?] dev-python/pypy3-exe-bin:7.3.3 ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) gdbm? ( sys-libs/gdbm:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !=dev-lang/python-2.7.5-r2:2.7 ) !!dev-python/pytest-forked ) +DESCRIPTION=A fast, compliant alternative implementation of the Python (3.7) language +EAPI=7 +HOMEPAGE=https://pypy.org/ +IUSE=bzip2 gdbm +jit libressl ncurses sqlite test tk +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=|| ( dev-python/pypy3-exe:7.3.3_p37[bzip2?,ncurses?] dev-python/pypy3-exe-bin:7.3.3_p37 ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) gdbm? ( sys-libs/gdbm:0= ) sqlite? ( dev-db/sqlite:3= ) tk? ( dev-lang/tk:0= dev-tcltk/tix:0= ) !=sys-libs/zlib-1.1.3:0= dev-libs/libffi:0= virtual/libintl:0= dev-libs/expat:0= bzip2? ( app-arch/bzip2:0= ) ncurses? ( sys-libs/ncurses:0= ) !dev-python/pypy3-exe-bin:7.3.3 +DESCRIPTION=PyPy3 executable (build from source) +EAPI=7 +HOMEPAGE=https://pypy.org/ +IUSE=bzip2 +jit low-memory ncurses cpu_flags_x86_sse2 +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=>=sys-libs/zlib-1.1.3:0= dev-libs/libffi:0= virtual/libintl:0= dev-libs/expat:0= bzip2? ( app-arch/bzip2:0= ) ncurses? ( sys-libs/ncurses:0= ) !dev-python/pypy3-exe-bin:7.3.3 +SLOT=7.3.3 +SRC_URI=https://buildbot.pypy.org/pypy/pypy3.6-v7.3.3-src.tar.bz2 +_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=85c161d4bbf7ad742ebeee50a4130efd diff --git a/metadata/md5-cache/dev-python/pypy3-exe-7.3.3_p37 b/metadata/md5-cache/dev-python/pypy3-exe-7.3.3_p37 new file mode 100644 index 000000000000..0a966f3a766b --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy3-exe-7.3.3_p37 @@ -0,0 +1,14 @@ +BDEPEND=low-memory? ( dev-python/pypy ) !low-memory? ( || ( dev-python/pypy dev-lang/python:2.7 ) ) +DEFINED_PHASES=compile configure install pretend setup +DEPEND=>=sys-libs/zlib-1.1.3:0= dev-libs/libffi:0= virtual/libintl:0= dev-libs/expat:0= bzip2? ( app-arch/bzip2:0= ) ncurses? ( sys-libs/ncurses:0= ) !dev-python/pypy3-exe-bin:7.3.3_p37 +DESCRIPTION=PyPy3 executable (build from source) +EAPI=7 +HOMEPAGE=https://pypy.org/ +IUSE=bzip2 +jit low-memory ncurses cpu_flags_x86_sse2 +KEYWORDS=~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=>=sys-libs/zlib-1.1.3:0= dev-libs/libffi:0= virtual/libintl:0= dev-libs/expat:0= bzip2? ( app-arch/bzip2:0= ) ncurses? ( sys-libs/ncurses:0= ) !dev-python/pypy3-exe-bin:7.3.3_p37 +SLOT=7.3.3_p37 +SRC_URI=https://buildbot.pypy.org/pypy/pypy3.7-v7.3.3-src.tar.bz2 +_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=ad2cade3de3ca9379cf35b7acc9f0181 diff --git a/metadata/md5-cache/dev-python/pypy3-exe-bin-7.3.3 b/metadata/md5-cache/dev-python/pypy3-exe-bin-7.3.3 new file mode 100644 index 000000000000..5a233f1b4d86 --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy3-exe-bin-7.3.3 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install unpack +DESCRIPTION=PyPy3 executable (pre-built version) +EAPI=7 +HOMEPAGE=https://pypy.org/ +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=sys-libs/zlib-1.1.3:0/1 dev-libs/libffi:0/7 virtual/libintl:0/0 dev-libs/expat:0/0 app-arch/bzip2:0/1 sys-libs/ncurses:0/6 !dev-python/pypy-exe:7.3.3 +SLOT=7.3.3 +SRC_URI=amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/pypy/dev-python/pypy3-exe/pypy3-exe-7.3.3-1.xpak -> pypy3-exe-7.3.3-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/pypy/dev-python/pypy3-exe/pypy3-exe-7.3.3-1.xpak -> pypy3-exe-7.3.3-1.x86.xpak ) +_eclasses_=pax-utils a41d1fd1c111289ffa04490de6ee79d7 +_md5_=7c1f8b5c23bfac8af9825465542a2de1 diff --git a/metadata/md5-cache/dev-python/pypy3-exe-bin-7.3.3_p37 b/metadata/md5-cache/dev-python/pypy3-exe-bin-7.3.3_p37 new file mode 100644 index 000000000000..af282dd0990a --- /dev/null +++ b/metadata/md5-cache/dev-python/pypy3-exe-bin-7.3.3_p37 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install unpack +DESCRIPTION=PyPy3 executable (pre-built version) +EAPI=7 +HOMEPAGE=https://pypy.org/ +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=sys-libs/zlib-1.1.3:0/1 dev-libs/libffi:0/7 virtual/libintl:0/0 dev-libs/expat:0/0 app-arch/bzip2:0/1 sys-libs/ncurses:0/6 !dev-python/pypy-exe:7.3.3_p37 +SLOT=7.3.3_p37 +SRC_URI=amd64? ( https://dev.gentoo.org/~mgorny/binpkg/amd64/pypy/dev-python/pypy3-exe/pypy3-exe-7.3.3_p37-1.xpak -> pypy3-exe-7.3.3_p37-1.amd64.xpak ) x86? ( https://dev.gentoo.org/~mgorny/binpkg/x86/pypy/dev-python/pypy3-exe/pypy3-exe-7.3.3_p37-1.xpak -> pypy3-exe-7.3.3_p37-1.x86.xpak ) +_eclasses_=pax-utils a41d1fd1c111289ffa04490de6ee79d7 +_md5_=c5cfda5ec3a0db071c8a3148cff9a796 diff --git a/metadata/md5-cache/dev-python/pyqtgraph-0.11.0_rc0 b/metadata/md5-cache/dev-python/pyqtgraph-0.11.0_rc0 index adab1c328e95..759da1510383 100644 --- a/metadata/md5-cache/dev-python/pyqtgraph-0.11.0_rc0 +++ b/metadata/md5-cache/dev-python/pyqtgraph-0.11.0_rc0 @@ -1,14 +1,14 @@ -BDEPEND=doc? ( || ( ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ) ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +BDEPEND=doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ) ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=A pure-python graphics and GUI library built on PyQt and numpy EAPI=7 HOMEPAGE=http://www.pyqtgraph.org/ https://pypi.org/project/pyqtgraph/ -IUSE=examples opengl svg doc python_targets_python3_7 python_targets_python3_8 +IUSE=examples opengl svg doc python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=amd64 x86 LICENSE=MIT -RDEPEND=dev-python/numpy[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/scipy[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/PyQt5[gui,widgets,opengl=,svg=,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] opengl? ( dev-python/pyopengl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 ) +RDEPEND=dev-python/numpy[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/scipy[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/PyQt5[gui,widgets,opengl=,svg=,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] opengl? ( dev-python/pyopengl[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 SRC_URI=https://github.com/pyqtgraph/pyqtgraph/archive/pyqtgraph-0.11.0rc0.tar.gz -> pyqtgraph-0.11.0_rc0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=93e33b2fb19200d5bb77f97ebd1f2dcc +_md5_=1051701509ebd281f1695fbcf2526cd6 diff --git a/metadata/md5-cache/dev-python/pyquery-1.4.3 b/metadata/md5-cache/dev-python/pyquery-1.4.3 new file mode 100644 index 000000000000..033ed926325c --- /dev/null +++ b/metadata/md5-cache/dev-python/pyquery-1.4.3 @@ -0,0 +1,16 @@ +BDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=test? ( >=dev-python/lxml-2.1[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >dev-python/cssselect-0.7.9[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/webob-1.1.9[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/beautifulsoup[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/requests[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/nose[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/webtest[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) +DESCRIPTION=A jQuery-like library for python +EAPI=7 +HOMEPAGE=https://github.com/gawel/pyquery +IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/lxml-2.1[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >dev-python/cssselect-0.7.9[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/webob-1.1.9[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/p/pyquery/pyquery-1.4.3.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=9923893c4d0d7950f84932e310dbd068 diff --git a/metadata/md5-cache/dev-python/pytest-django-4.1.0 b/metadata/md5-cache/dev-python/pytest-django-4.1.0 index dac84eba88e3..0f30790fcc6e 100644 --- a/metadata/md5-cache/dev-python/pytest-django-4.1.0 +++ b/metadata/md5-cache/dev-python/pytest-django-4.1.0 @@ -5,7 +5,7 @@ DESCRIPTION=A Django plugin for py.test EAPI=7 HOMEPAGE=https://pypi.org/project/pytest-django/ https://pytest-django.readthedocs.org https://github.com/pytest-dev/pytest-django IUSE=python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=>=dev-python/pytest-5.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -13,4 +13,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/pytest-dev/pytest-django/archive/v4.1.0.tar.gz -> pytest-django-4.1.0.gh.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=133735b9ea07713c052979b51d719826 +_md5_=ebe1dcd9b87596b24d2ef8f18121df05 diff --git a/metadata/md5-cache/dev-python/python-swiftclient-3.10.1 b/metadata/md5-cache/dev-python/python-swiftclient-3.10.1 index 29e08285671e..e0031e3c7860 100644 --- a/metadata/md5-cache/dev-python/python-swiftclient-3.10.1 +++ b/metadata/md5-cache/dev-python/python-swiftclient-3.10.1 @@ -1,6 +1,6 @@ BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/pbr[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] test? ( >=dev-python/coverage-4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/coverage-4.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/keystoneauth-3.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/mock-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/stestr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/stestr-3.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/openstacksdk-0.11.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) +DEPEND=dev-python/pbr[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] test? ( >=dev-python/coverage-4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/coverage-4.4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/keystoneauth-3.4.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/python-keystoneclient[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/mock-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/stestr-2.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/stestr-3.0.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/openstacksdk-0.11.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) DESCRIPTION=Python bindings to the OpenStack Object Storage API EAPI=7 HOMEPAGE=https://launchpad.net/python-swiftclient @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/python-swiftclient/python-swiftclient-3.10.1.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3696408ac77dffa79e9f67720c8d3c61 +_md5_=c4c81eb2443afb90a154d678b60e7a34 diff --git a/metadata/md5-cache/dev-python/python-systemd-234 b/metadata/md5-cache/dev-python/python-systemd-234 index f700b310142f..2bee506ee540 100644 --- a/metadata/md5-cache/dev-python/python-systemd-234 +++ b/metadata/md5-cache/dev-python/python-systemd-234 @@ -5,7 +5,7 @@ DESCRIPTION=Python module for native access to the systemd facilities EAPI=7 HOMEPAGE=https://github.com/systemd/python-systemd IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~alpha amd64 arm ~hppa ppc ppc64 sparc x86 +KEYWORDS=~alpha amd64 arm ~arm64 ~hppa ppc ppc64 sparc x86 LICENSE=LGPL-2.1 RDEPEND=sys-apps/systemd:0= !sys-apps/systemd[python(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/systemd/python-systemd/archive/v234.tar.gz -> python-systemd-234.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=fcc9c88098177b6f178105ba3aed0286 +_md5_=7194ae9a8b6918aeb79ea951c3abc0dd diff --git a/metadata/md5-cache/dev-python/python-utils-2.3.0 b/metadata/md5-cache/dev-python/python-utils-2.3.0 index f268dfa65517..ece079facd38 100644 --- a/metadata/md5-cache/dev-python/python-utils-2.3.0 +++ b/metadata/md5-cache/dev-python/python-utils-2.3.0 @@ -1,14 +1,15 @@ -BDEPEND=dev-python/setuptools[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/six[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/pytest-flakes[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] +BDEPEND=test? ( dev-python/six[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=Collection of small Python functions & classes EAPI=7 HOMEPAGE=https://pypi.org/project/python-utils/ -IUSE=python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 +IUSE=test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~amd64 LICENSE=BSD -RDEPEND=dev-python/setuptools[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] dev-python/six[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-)] -REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 ) +RDEPEND=dev-python/six[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/p/python-utils/python-utils-2.3.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3902d9dd481d7dc2b35b401b22f41f20 +_md5_=68571bb8190f70ec8e7cb65d1bc639f6 diff --git a/metadata/md5-cache/dev-python/python-xlib-0.29 b/metadata/md5-cache/dev-python/python-xlib-0.29 new file mode 100644 index 000000000000..65895be81998 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-xlib-0.29 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/setuptools_scm[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] doc? ( sys-apps/texinfo ) test? ( dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=A fully functional X client library for Python, written in Python +EAPI=7 +HOMEPAGE=https://github.com/python-xlib/python-xlib +IUSE=doc test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 test +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 +LICENSE=LGPL-2+ +RDEPEND=dev-python/six[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/python-xlib/python-xlib/releases/download/0.29/python-xlib-0.29.tar.bz2 +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_md5_=6518731a79e154a73b2f599012118d49 diff --git a/metadata/md5-cache/dev-python/re-assert-1.1.0 b/metadata/md5-cache/dev-python/re-assert-1.1.0 index 159885694d79..09700a3ce885 100644 --- a/metadata/md5-cache/dev-python/re-assert-1.1.0 +++ b/metadata/md5-cache/dev-python/re-assert-1.1.0 @@ -4,7 +4,7 @@ DESCRIPTION=Show where your regex match assertion failed EAPI=7 HOMEPAGE=https://github.com/asottile/re-assert IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT RDEPEND=dev-python/regex[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/asottile/re-assert/archive/v1.1.0.tar.gz -> re-assert-1.1.0.gh.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ce2db51535e30c330ff6fdcde6a1f9c4 +_md5_=21e8d02cfb0f526f9a9dc2e4cdfb56eb diff --git a/metadata/md5-cache/dev-python/sentry-sdk-0.18.0 b/metadata/md5-cache/dev-python/sentry-sdk-0.18.0 index da3cb289a4d5..5d315b134821 100644 --- a/metadata/md5-cache/dev-python/sentry-sdk-0.18.0 +++ b/metadata/md5-cache/dev-python/sentry-sdk-0.18.0 @@ -4,7 +4,7 @@ DESCRIPTION=Python client for Sentry EAPI=7 HOMEPAGE=https://getsentry.com https://pypi.org/project/sentry-sdk/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 arm arm64 ~ppc ~ppc64 x86 +KEYWORDS=amd64 arm arm64 ~ppc ~ppc64 x86 LICENSE=PSF-2 RDEPEND=dev-python/urllib3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/certifi[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/getsentry/sentry-python/archive/0.18.0.tar.gz -> sentry-sdk-0.18.0.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=4e6dc9714f60300b1e959f08e24d19e8 +_md5_=063bfccf67a0923fe356d70eac993c77 diff --git a/metadata/md5-cache/dev-python/sentry-sdk-0.19.4 b/metadata/md5-cache/dev-python/sentry-sdk-0.19.4 index 2ab9b8355eee..688529b762b1 100644 --- a/metadata/md5-cache/dev-python/sentry-sdk-0.19.4 +++ b/metadata/md5-cache/dev-python/sentry-sdk-0.19.4 @@ -4,7 +4,7 @@ DESCRIPTION=Python client for Sentry EAPI=7 HOMEPAGE=https://getsentry.com https://pypi.org/project/sentry-sdk/ IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 LICENSE=PSF-2 RDEPEND=dev-python/urllib3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/certifi[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/getsentry/sentry-python/archive/0.19.4.tar.gz -> sentry-sdk-0.19.4.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=7567337965235c94f5facfc4052eba3c +_md5_=e8da7eb952caf84e1195cfffca16f58e diff --git a/metadata/md5-cache/dev-python/sqlalchemy-1.3.20 b/metadata/md5-cache/dev-python/sqlalchemy-1.3.20 index 89858bb01a29..26f93a691868 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-1.3.20 +++ b/metadata/md5-cache/dev-python/sqlalchemy-1.3.20 @@ -4,7 +4,7 @@ DESCRIPTION=Python SQL toolkit and Object Relational Mapper EAPI=7 HOMEPAGE=https://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/ IUSE=examples +sqlite test test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris LICENSE=MIT RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[sqlite?] ) python_targets_python3_6? ( dev-lang/python:3.6[sqlite?] ) python_targets_python3_7? ( dev-lang/python:3.7[sqlite?] ) python_targets_python3_8? ( dev-lang/python:3.8[sqlite?] ) python_targets_python3_9? ( dev-lang/python:3.9[sqlite?] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=test? ( sqlite ) || ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/S/SQLAlchemy/SQLAlchemy-1.3.20.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=551929868637d3d68eb3ab01fd6bcd3b +_md5_=c54bb29b373f665ad96b4e0936b2dcaa diff --git a/metadata/md5-cache/dev-python/tqdm-4.53.0 b/metadata/md5-cache/dev-python/tqdm-4.53.0 new file mode 100644 index 000000000000..53852c3f478b --- /dev/null +++ b/metadata/md5-cache/dev-python/tqdm-4.53.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/toml[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( >=dev-python/pytest-4.5.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=Add a progress meter to your loops in a second +EAPI=7 +HOMEPAGE=https://github.com/tqdm/tqdm +IUSE=examples test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=MIT +RDEPEND=python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/t/tqdm/tqdm-4.53.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=9d22e94a4abbe8e27f0f23a7381b2f2b diff --git a/metadata/md5-cache/dev-python/urllib3-1.26.2 b/metadata/md5-cache/dev-python/urllib3-1.26.2 index 9b56875fcb37..5a05ef4526f2 100644 --- a/metadata/md5-cache/dev-python/urllib3-1.26.2 +++ b/metadata/md5-cache/dev-python/urllib3-1.26.2 @@ -1,9 +1,9 @@ -BDEPEND=test? ( python_targets_python3_6? ( >=dev-python/PySocks-1.5.8[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/cryptography-1.3.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/idna-2.0.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] brotli? ( dev-python/brotlipy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) dev-python/brotlipy[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/mock[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest-freezegun[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/trustme-0.5.3[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=www-servers/tornado-4.2.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_7? ( >=dev-python/PySocks-1.5.8[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/cryptography-1.3.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/idna-2.0.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] brotli? ( dev-python/brotlipy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) dev-python/brotlipy[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/mock[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest-freezegun[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/trustme-0.5.3[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=www-servers/tornado-4.2.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( >=dev-python/PySocks-1.5.8[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/cryptography-1.3.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/idna-2.0.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] brotli? ( dev-python/brotlipy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) dev-python/brotlipy[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/mock[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest-freezegun[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/trustme-0.5.3[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=www-servers/tornado-4.2.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( >=dev-python/PySocks-1.5.8[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/cryptography-1.3.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/idna-2.0.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] brotli? ( dev-python/brotlipy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) dev-python/brotlipy[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/mock[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest-freezegun[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/trustme-0.5.3[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=www-servers/tornado-4.2.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) ) doc? ( || ( ( dev-lang/python:3.9[ssl(+)] dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/alabaster[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/mock[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8[ssl(+)] dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/alabaster[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/mock[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7[ssl(+)] dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/alabaster[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/mock[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6[ssl(+)] dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/alabaster[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/mock[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( >=dev-python/pypy3-7.3.0:0[ssl(+)] dev-python/sphinx[python_targets_pypy3(-),python_single_target_pypy3(+)] dev-python/alabaster[python_targets_pypy3(-),python_single_target_pypy3(+)] dev-python/mock[python_targets_pypy3(-),python_single_target_pypy3(+)] ) ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[ssl(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ssl(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[ssl(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[ssl(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[ssl(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +BDEPEND=test? ( python_targets_python3_6? ( >=dev-python/PySocks-1.5.8[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/cryptography-1.3.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/idna-2.0.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] brotli? ( dev-python/brotlipy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) dev-python/brotlipy[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/mock[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest-freezegun[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/trustme-0.5.3[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=www-servers/tornado-4.2.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_7? ( >=dev-python/PySocks-1.5.8[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/cryptography-1.3.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/idna-2.0.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] brotli? ( dev-python/brotlipy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) dev-python/brotlipy[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/mock[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest-freezegun[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/trustme-0.5.3[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=www-servers/tornado-4.2.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( >=dev-python/PySocks-1.5.8[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/cryptography-1.3.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/idna-2.0.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] brotli? ( dev-python/brotlipy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) dev-python/brotlipy[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/mock[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest-freezegun[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/trustme-0.5.3[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=www-servers/tornado-4.2.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( >=dev-python/PySocks-1.5.8[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/cryptography-1.3.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/idna-2.0.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] brotli? ( dev-python/brotlipy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) dev-python/brotlipy[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/mock[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/pytest-freezegun[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/trustme-0.5.3[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=www-servers/tornado-4.2.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[ssl(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ssl(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[ssl(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[ssl(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[ssl(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install prepare test DESCRIPTION=HTTP library with thread-safe connection pooling, file post, and more EAPI=7 HOMEPAGE=https://github.com/urllib3/urllib3 -IUSE=brotli test doc python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +IUSE=brotli test python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 LICENSE=MIT RDEPEND=>=dev-python/PySocks-1.5.8[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] =dev-python/cryptography-1.3.4[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/idna-2.0.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] brotli? ( dev-python/brotlipy[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[ssl(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ssl(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[ssl(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[ssl(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[ssl(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://pypi/u/urllib3/urllib3-1.26.2.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=d6f056dcb4d100952f88de6bdd2f8cf1 +_md5_=a585e70d09da9a0521e76973fb8ac31b diff --git a/metadata/md5-cache/dev-python/virtualenv-20.2.0 b/metadata/md5-cache/dev-python/virtualenv-20.2.0 new file mode 100644 index 000000000000..cf071dc44a15 --- /dev/null +++ b/metadata/md5-cache/dev-python/virtualenv-20.2.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-python/setuptools_scm[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( >=dev-python/appdirs-1.4.3[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/distlib-0.3.1[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/filelock-3[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-41[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/six-1.9.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/importlib_metadata-0.12[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_6? ( >=dev-python/importlib_metadata-0.12[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/importlib_metadata-0.12[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_pypy3? ( >=dev-python/importlib_resources-1.0[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_6? ( >=dev-python/importlib_resources-1.0[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_6? ( dev-python/coverage[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/flaky[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pip-20.0.2[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-5[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-freezegun-0.4.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-mock-2.0.0[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-timeout-1.3.4[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/wheel[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/packaging-20.0[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-python/coverage[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/flaky[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pip-20.0.2[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-5[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-freezegun-0.4.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-mock-2.0.0[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-timeout-1.3.4[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/wheel[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/packaging-20.0[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_8? ( dev-python/coverage[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/flaky[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pip-20.0.2[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-5[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-freezegun-0.4.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-mock-2.0.0[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-timeout-1.3.4[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/wheel[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/packaging-20.0[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) python_targets_python3_9? ( dev-python/coverage[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/flaky[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pip-20.0.2[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-5[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-freezegun-0.4.1[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-mock-2.0.0[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/pytest-timeout-1.3.4[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] dev-python/wheel[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] >=dev-python/packaging-20.0[python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-),python_targets_python3_8(-)?,-python_single_target_python3_8(-),python_targets_python3_9(-)?,-python_single_target_python3_9(-)] ) ) doc? ( || ( ( dev-lang/python:3.9 dev-python/sphinx[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/sphinx_rtd_theme[python_targets_python3_9(-),python_single_target_python3_9(+)] dev-python/towncrier[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-python/sphinx[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/sphinx_rtd_theme[python_targets_python3_8(-),python_single_target_python3_8(+)] dev-python/towncrier[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-python/sphinx[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/sphinx_rtd_theme[python_targets_python3_7(-),python_single_target_python3_7(+)] dev-python/towncrier[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-python/sphinx[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/sphinx_rtd_theme[python_targets_python3_6(-),python_single_target_python3_6(+)] dev-python/towncrier[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ( >=dev-python/pypy3-7.3.0:0 dev-python/sphinx[python_targets_pypy3(-),python_single_target_pypy3(+)] dev-python/sphinx_rtd_theme[python_targets_pypy3(-),python_single_target_pypy3(+)] dev-python/towncrier[python_targets_pypy3(-),python_single_target_pypy3(+)] ) ) ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Virtual Python Environment builder +EAPI=7 +HOMEPAGE=https://virtualenv.pypa.io/en/stable/ https://pypi.org/project/virtualenv/ https://github.com/pypa/virtualenv/ +IUSE=test doc python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/appdirs-1.4.3[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/distlib-0.3.1[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/filelock-3[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-41[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/six-1.9.0[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_pypy3? ( >=dev-python/importlib_metadata-0.12[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_6? ( >=dev-python/importlib_metadata-0.12[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_python3_7? ( >=dev-python/importlib_metadata-0.12[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-),python_targets_python3_7(-)?,-python_single_target_python3_7(-)] ) python_targets_pypy3? ( >=dev-python/importlib_resources-1.0[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_6? ( >=dev-python/importlib_resources-1.0[python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://pypi/v/virtualenv/virtualenv-20.2.0.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=3c5993343d7520b6d005583a347892c1 diff --git a/metadata/md5-cache/dev-python/watchdog-0.10.4 b/metadata/md5-cache/dev-python/watchdog-0.10.4 new file mode 100644 index 000000000000..8f59e7b0b5b1 --- /dev/null +++ b/metadata/md5-cache/dev-python/watchdog-0.10.4 @@ -0,0 +1,16 @@ +BDEPEND=test? ( dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/argh[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pathtools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/pytest-4.5.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] test? ( >=dev-python/pytest-timeout-0.3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) +DESCRIPTION=Python API and shell utilities to monitor file system events +EAPI=7 +HOMEPAGE=https://github.com/gorakhargosh/watchdog +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~x86 +LICENSE=Apache-2.0 +RDEPEND=dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/argh[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pathtools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/gorakhargosh/watchdog/archive/v0.10.4.tar.gz -> watchdog-0.10.4.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=6765e47f4143d346d6813cb7182a374a diff --git a/metadata/md5-cache/dev-qt/Manifest.gz b/metadata/md5-cache/dev-qt/Manifest.gz index e59d74a6c151..e870df6a45bf 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/qtwebkit-5.212.0_pre20200309-r1 b/metadata/md5-cache/dev-qt/qtwebkit-5.212.0_pre20200309-r1 index 209313e012c2..130c7e29744a 100644 --- a/metadata/md5-cache/dev-qt/qtwebkit-5.212.0_pre20200309-r1 +++ b/metadata/md5-cache/dev-qt/qtwebkit-5.212.0_pre20200309-r1 @@ -1,4 +1,4 @@ -BDEPEND=|| ( dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems dev-lang/perl dev-util/gperf >=sys-devel/bison-2.4.3 sys-devel/flex virtual/pkgconfig dev-util/ninja dev-util/cmake +BDEPEND=|| ( dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems dev-lang/perl dev-util/gperf >=sys-devel/bison-2.4.3 sys-devel/flex virtual/pkgconfig dev-util/ninja dev-util/cmake DEFINED_PHASES=compile configure install prepare pretend setup test DEPEND=dev-db/sqlite:3 dev-libs/icu:= dev-libs/libxml2 dev-libs/libxslt >=dev-qt/qtcore-5.12.3:5 >=dev-qt/qtgui-5.12.3:5 >=dev-qt/qtnetwork-5.12.3:5 >=dev-qt/qtwidgets-5.12.3:5= media-libs/libpng:0= media-libs/woff2 virtual/jpeg:0 geolocation? ( >=dev-qt/qtpositioning-5.12.3:5 ) gstreamer? ( dev-libs/glib:2 media-libs/gstreamer:1.0 media-libs/gst-plugins-bad:1.0 media-libs/gst-plugins-base:1.0 ) hyphen? ( dev-libs/hyphen ) multimedia? ( >=dev-qt/qtmultimedia-5.12.3:5[widgets] ) opengl? ( >=dev-qt/qtgui-5.12.3:5[gles2-only=] >=dev-qt/qtopengl-5.12.3:5[gles2-only=] ) orientation? ( >=dev-qt/qtsensors-5.12.3:5 ) printsupport? ( >=dev-qt/qtprintsupport-5.12.3:5 ) qml? ( >=dev-qt/qtdeclarative-5.12.3:5 >=dev-qt/qtwebchannel-5.12.3:5[qml] ) webp? ( media-libs/libwebp:= ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXrender ) DESCRIPTION=WebKit rendering library for the Qt5 framework (deprecated) @@ -11,5 +11,5 @@ RDEPEND=dev-db/sqlite:3 dev-libs/icu:= dev-libs/libxml2 dev-libs/libxslt >=dev-q REQUIRED_USE=nsplugin? ( X ) qml? ( opengl ) ?? ( gstreamer multimedia ) SLOT=5/5.212 SRC_URI=https://github.com/annulen/webkit/releases/download/qtwebkit-5.212.0-alpha4/qtwebkit-5.212.0-alpha4.tar.xz -_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=0b61a6b33cd45c40c79125c4e0ee0280 diff --git a/metadata/md5-cache/dev-ruby/GeoRuby-2.5.2 b/metadata/md5-cache/dev-ruby/GeoRuby-2.5.2 index 2b56df21e2dd..baf7af915609 100644 --- a/metadata/md5-cache/dev-ruby/GeoRuby-2.5.2 +++ b/metadata/md5-cache/dev-ruby/GeoRuby-2.5.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/georuby-2.5.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=95e6090e53db64d7582624aa1c091a4e diff --git a/metadata/md5-cache/dev-ruby/GeoRuby-2.5.2-r1 b/metadata/md5-cache/dev-ruby/GeoRuby-2.5.2-r1 index 334e0cecb453..a49933e23977 100644 --- a/metadata/md5-cache/dev-ruby/GeoRuby-2.5.2-r1 +++ b/metadata/md5-cache/dev-ruby/GeoRuby-2.5.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/georuby-2.5.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4f1a1a53298942463aad3e92e2b729f3 diff --git a/metadata/md5-cache/dev-ruby/Manifest.gz b/metadata/md5-cache/dev-ruby/Manifest.gz index e0446addf0d2..23b8f6c5722c 100644 Binary files a/metadata/md5-cache/dev-ruby/Manifest.gz and b/metadata/md5-cache/dev-ruby/Manifest.gz differ diff --git a/metadata/md5-cache/dev-ruby/abstract-1.0.0-r3 b/metadata/md5-cache/dev-ruby/abstract-1.0.0-r3 index bf556c98c638..7e4e4fbba72c 100644 --- a/metadata/md5-cache/dev-ruby/abstract-1.0.0-r3 +++ b/metadata/md5-cache/dev-ruby/abstract-1.0.0-r3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/abstract-1.0.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=4161f78d8a0f7280ade536b828a0358b diff --git a/metadata/md5-cache/dev-ruby/acme-client-2.0.6 b/metadata/md5-cache/dev-ruby/acme-client-2.0.6 index 6c30588ff15d..5a8cf4089445 100644 --- a/metadata/md5-cache/dev-ruby/acme-client-2.0.6 +++ b/metadata/md5-cache/dev-ruby/acme-client-2.0.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/unixcharles/acme-client/archive/v2.0.6.tar.gz -> acme-client-2.0.6.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3e0786f4df62bdaacf3788c96c0ae77a diff --git a/metadata/md5-cache/dev-ruby/acme-client-2.0.7 b/metadata/md5-cache/dev-ruby/acme-client-2.0.7 index c2d1d8f35be0..279ac35a34e5 100644 --- a/metadata/md5-cache/dev-ruby/acme-client-2.0.7 +++ b/metadata/md5-cache/dev-ruby/acme-client-2.0.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/unixcharles/acme-client/archive/v2.0.7.tar.gz -> acme-client-2.0.7.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=94a55db5c95ef6e572b83c97d1268e29 diff --git a/metadata/md5-cache/dev-ruby/actioncable-5.2.4.3 b/metadata/md5-cache/dev-ruby/actioncable-5.2.4.3 index 73e5142a4285..0574e336529f 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/actioncable-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1ae1507ee48c0bbf508ae42da2214f4d diff --git a/metadata/md5-cache/dev-ruby/actioncable-5.2.4.4 b/metadata/md5-cache/dev-ruby/actioncable-5.2.4.4 index 52e87ff9b0f9..a085589b0dfb 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/actioncable-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1ae1507ee48c0bbf508ae42da2214f4d diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.0.3.2 b/metadata/md5-cache/dev-ruby/actioncable-6.0.3.2 index 043cbdc2494a..16b4a959e984 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1420ad774e4d0b68fbfa5ded5b8cb145 diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.0.3.3 b/metadata/md5-cache/dev-ruby/actioncable-6.0.3.3 index 697db11ea369..1dea6f6df2eb 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1420ad774e4d0b68fbfa5ded5b8cb145 diff --git a/metadata/md5-cache/dev-ruby/actioncable-6.0.3.4 b/metadata/md5-cache/dev-ruby/actioncable-6.0.3.4 index abcd91148378..e882ac5cbb38 100644 --- a/metadata/md5-cache/dev-ruby/actioncable-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/actioncable-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1420ad774e4d0b68fbfa5ded5b8cb145 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.2 b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.2 index 54b0cb2f411e..eecb68969880 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c1ea03fc3711e3dc41a30b34b6561de8 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.3 b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.3 index d91538ba7706..670f29852c1d 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c1ea03fc3711e3dc41a30b34b6561de8 diff --git a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.4 b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.4 index 7fd902980876..28ee690c4fe9 100644 --- a/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/actionmailbox-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c1ea03fc3711e3dc41a30b34b6561de8 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-5.2.4.3 b/metadata/md5-cache/dev-ruby/actionmailer-5.2.4.3 index abb480492879..4681552b3552 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/actionmailer-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=be7a5415fa6570c6cf519e24661e8a10 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-5.2.4.4 b/metadata/md5-cache/dev-ruby/actionmailer-5.2.4.4 index 297483c00175..e051d323f045 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/actionmailer-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=be7a5415fa6570c6cf519e24661e8a10 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.2 b/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.2 index 902b0f7636af..ab7025118e03 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5d4bb66a7776d770e3b76b1cb3051274 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.3 b/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.3 index 0df8e21f6f59..22ac8bf2319c 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5d4bb66a7776d770e3b76b1cb3051274 diff --git a/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.4 b/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.4 index 66ebf2de4ed0..fb41dabd0f74 100644 --- a/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/actionmailer-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5d4bb66a7776d770e3b76b1cb3051274 diff --git a/metadata/md5-cache/dev-ruby/actionpack-5.2.4.3-r1 b/metadata/md5-cache/dev-ruby/actionpack-5.2.4.3-r1 index f8b5db1f7fcf..020a16cefade 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-5.2.4.3-r1 +++ b/metadata/md5-cache/dev-ruby/actionpack-5.2.4.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=88f7ffe7839ccd6e085a3b26e34bdb33 diff --git a/metadata/md5-cache/dev-ruby/actionpack-5.2.4.4 b/metadata/md5-cache/dev-ruby/actionpack-5.2.4.4 index e27b8997bb3f..69e067c4af0a 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/actionpack-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=81cdb66a1cdc91c541a93229b98aeb43 diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.0.3.2-r1 b/metadata/md5-cache/dev-ruby/actionpack-6.0.3.2-r1 index 51f3436fe0a1..583580b0cf5f 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.0.3.2-r1 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.0.3.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6bf9621504f7db1b3d181c9f0e5865a1 diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.0.3.3 b/metadata/md5-cache/dev-ruby/actionpack-6.0.3.3 index 8fba88bd5aed..38e4a0e88ef7 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6bf9621504f7db1b3d181c9f0e5865a1 diff --git a/metadata/md5-cache/dev-ruby/actionpack-6.0.3.4 b/metadata/md5-cache/dev-ruby/actionpack-6.0.3.4 index 0a57e385e9ba..b4954cd97469 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/actionpack-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6bf9621504f7db1b3d181c9f0e5865a1 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 64c076ab04a4..932e107e4c3c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=02c3127f5e9c1d9b62e017ca872df786 diff --git a/metadata/md5-cache/dev-ruby/actionpack-xml_parser-2.0.1 b/metadata/md5-cache/dev-ruby/actionpack-xml_parser-2.0.1 index 4cc219a6790c..b7597e046f24 100644 --- a/metadata/md5-cache/dev-ruby/actionpack-xml_parser-2.0.1 +++ b/metadata/md5-cache/dev-ruby/actionpack-xml_parser-2.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d3cb66be6b7cb05ac6d084b36f01d28e diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.0.3.2 b/metadata/md5-cache/dev-ruby/actiontext-6.0.3.2 index 035eae93e616..0e4c658529b1 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f5aabd0754903bb908c54a26d5e7fb24 diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.0.3.3 b/metadata/md5-cache/dev-ruby/actiontext-6.0.3.3 index 92434e4e027b..9256e4e415ab 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cdabeafe75e9feb132061a63c009c6ed diff --git a/metadata/md5-cache/dev-ruby/actiontext-6.0.3.4 b/metadata/md5-cache/dev-ruby/actiontext-6.0.3.4 index a081cb8e20cd..e88a951f2df7 100644 --- a/metadata/md5-cache/dev-ruby/actiontext-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/actiontext-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cdabeafe75e9feb132061a63c009c6ed diff --git a/metadata/md5-cache/dev-ruby/actionview-5.2.4.3 b/metadata/md5-cache/dev-ruby/actionview-5.2.4.3 index a673b93f169f..8299c0e7cc28 100644 --- a/metadata/md5-cache/dev-ruby/actionview-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/actionview-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0d355821c345b4426481f13a385cf2a9 diff --git a/metadata/md5-cache/dev-ruby/actionview-5.2.4.3-r1 b/metadata/md5-cache/dev-ruby/actionview-5.2.4.3-r1 index 4f8f91b0719f..ae5162ac863b 100644 --- a/metadata/md5-cache/dev-ruby/actionview-5.2.4.3-r1 +++ b/metadata/md5-cache/dev-ruby/actionview-5.2.4.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3123547ba2916a1acd92adc7b949bcd1 diff --git a/metadata/md5-cache/dev-ruby/actionview-5.2.4.4 b/metadata/md5-cache/dev-ruby/actionview-5.2.4.4 index 0f4e1dd5c8aa..38cf4977d885 100644 --- a/metadata/md5-cache/dev-ruby/actionview-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/actionview-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3123547ba2916a1acd92adc7b949bcd1 diff --git a/metadata/md5-cache/dev-ruby/actionview-6.0.3.2 b/metadata/md5-cache/dev-ruby/actionview-6.0.3.2 index 4c3a15b773bb..bfcc19d80a59 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/actionview-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7e8a0e73f529a15990168c65d367dd9f diff --git a/metadata/md5-cache/dev-ruby/actionview-6.0.3.2-r1 b/metadata/md5-cache/dev-ruby/actionview-6.0.3.2-r1 index b2ebd81bce18..18ab87e0f61a 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.0.3.2-r1 +++ b/metadata/md5-cache/dev-ruby/actionview-6.0.3.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=00fb56c4525f0677f06506361f2071aa diff --git a/metadata/md5-cache/dev-ruby/actionview-6.0.3.3 b/metadata/md5-cache/dev-ruby/actionview-6.0.3.3 index 22b0d1034ce7..418fdfbdae3d 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/actionview-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=00fb56c4525f0677f06506361f2071aa diff --git a/metadata/md5-cache/dev-ruby/actionview-6.0.3.4 b/metadata/md5-cache/dev-ruby/actionview-6.0.3.4 index 7c805ebc4d02..278c1df34454 100644 --- a/metadata/md5-cache/dev-ruby/actionview-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/actionview-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=00fb56c4525f0677f06506361f2071aa diff --git a/metadata/md5-cache/dev-ruby/activejob-5.2.4.3 b/metadata/md5-cache/dev-ruby/activejob-5.2.4.3 index 373a1edefff7..f1fd8cd77603 100644 --- a/metadata/md5-cache/dev-ruby/activejob-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/activejob-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c2505ac31a65a1d8ae08c75dd26ca41b diff --git a/metadata/md5-cache/dev-ruby/activejob-5.2.4.4 b/metadata/md5-cache/dev-ruby/activejob-5.2.4.4 index 33c08fe4f068..b4b40e42c37c 100644 --- a/metadata/md5-cache/dev-ruby/activejob-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/activejob-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c2505ac31a65a1d8ae08c75dd26ca41b diff --git a/metadata/md5-cache/dev-ruby/activejob-6.0.3.2 b/metadata/md5-cache/dev-ruby/activejob-6.0.3.2 index a3b1cf57832d..7fa3528b2458 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/activejob-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fa7d9df6f9699f07afc6e0fdfc18f068 diff --git a/metadata/md5-cache/dev-ruby/activejob-6.0.3.3 b/metadata/md5-cache/dev-ruby/activejob-6.0.3.3 index d2d1bc55d771..198af95432f6 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/activejob-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fa7d9df6f9699f07afc6e0fdfc18f068 diff --git a/metadata/md5-cache/dev-ruby/activejob-6.0.3.4 b/metadata/md5-cache/dev-ruby/activejob-6.0.3.4 index 8b2ebd2809e7..c1efe9e19225 100644 --- a/metadata/md5-cache/dev-ruby/activejob-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/activejob-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a8e05d8689fd5e301592c9485fb7d528 diff --git a/metadata/md5-cache/dev-ruby/activeldap-5.2.4 b/metadata/md5-cache/dev-ruby/activeldap-5.2.4 index 856091188072..5808898d6e2e 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_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/activeldap-5.2.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=966764b50fa5a29ff4a5040d337f8efa diff --git a/metadata/md5-cache/dev-ruby/activeldap-6.0.2 b/metadata/md5-cache/dev-ruby/activeldap-6.0.2 index e13f739b2680..7350b7d74321 100644 --- a/metadata/md5-cache/dev-ruby/activeldap-6.0.2 +++ b/metadata/md5-cache/dev-ruby/activeldap-6.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/activeldap-6.0.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c9fae4b73f8709322c908f4123e86098 diff --git a/metadata/md5-cache/dev-ruby/activeldap-6.0.3 b/metadata/md5-cache/dev-ruby/activeldap-6.0.3 index 7ca500e82ec9..45b6db170688 100644 --- a/metadata/md5-cache/dev-ruby/activeldap-6.0.3 +++ b/metadata/md5-cache/dev-ruby/activeldap-6.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/activeldap-6.0.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7283440d84d2da702ea70c7bed35312d diff --git a/metadata/md5-cache/dev-ruby/activemodel-5.2.4.3 b/metadata/md5-cache/dev-ruby/activemodel-5.2.4.3 index c98de152eac8..704caf102042 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/activemodel-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a2b349a02af3541458aad98b4f70c40a diff --git a/metadata/md5-cache/dev-ruby/activemodel-5.2.4.4 b/metadata/md5-cache/dev-ruby/activemodel-5.2.4.4 index ac5076eb1032..d11daf1d374f 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/activemodel-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a4ee6cf536d6c6f049da51e7a956854c diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.0.3.2 b/metadata/md5-cache/dev-ruby/activemodel-6.0.3.2 index b0868337855a..edadfb758a66 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5336489af9b4aec6d849192c15f544cc diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.0.3.3 b/metadata/md5-cache/dev-ruby/activemodel-6.0.3.3 index 5d6b8b6a29cc..77220b030df2 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5336489af9b4aec6d849192c15f544cc diff --git a/metadata/md5-cache/dev-ruby/activemodel-6.0.3.4 b/metadata/md5-cache/dev-ruby/activemodel-6.0.3.4 index b7669e412bb0..698e8c9ed1f4 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/activemodel-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5336489af9b4aec6d849192c15f544cc diff --git a/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2 b/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2 index 72e6a5172737..5782ead51926 100644 --- a/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2 +++ b/metadata/md5-cache/dev-ruby/activemodel-serializers-xml-1.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=10bfe3d1c1fe545102661617a3fa443c diff --git a/metadata/md5-cache/dev-ruby/activerecord-5.2.4.3 b/metadata/md5-cache/dev-ruby/activerecord-5.2.4.3 index 650d8cbaf6e2..d49467507339 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/activerecord-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bf2d2341a85b15aafe1f3a073b561dc4 diff --git a/metadata/md5-cache/dev-ruby/activerecord-5.2.4.4 b/metadata/md5-cache/dev-ruby/activerecord-5.2.4.4 index 56fbf082216c..79646af1f7d3 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/activerecord-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bf2d2341a85b15aafe1f3a073b561dc4 diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.0.3.2 b/metadata/md5-cache/dev-ruby/activerecord-6.0.3.2 index 70ea58deaa2b..de6d4efd92e7 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9b69174102ba785f257db5e60ced09f4 diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.0.3.3 b/metadata/md5-cache/dev-ruby/activerecord-6.0.3.3 index 808db76082cb..dccec3f8c9d3 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5c4e020947bbed1e716ac6fa6254572e diff --git a/metadata/md5-cache/dev-ruby/activerecord-6.0.3.4 b/metadata/md5-cache/dev-ruby/activerecord-6.0.3.4 index 3483f5f56953..f3933a6f812a 100644 --- a/metadata/md5-cache/dev-ruby/activerecord-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/activerecord-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5c4e020947bbed1e716ac6fa6254572e diff --git a/metadata/md5-cache/dev-ruby/activestorage-5.2.4.3 b/metadata/md5-cache/dev-ruby/activestorage-5.2.4.3 index 71b5176f7bda..1aff4231e7b8 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/activestorage-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2e19ffddf89480ec992408c227f41e2c diff --git a/metadata/md5-cache/dev-ruby/activestorage-5.2.4.4 b/metadata/md5-cache/dev-ruby/activestorage-5.2.4.4 index 134d4ba3176a..9f65abfd4ae1 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/activestorage-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2e19ffddf89480ec992408c227f41e2c diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.0.3.2 b/metadata/md5-cache/dev-ruby/activestorage-6.0.3.2 index 4b20a9400b2c..bf1ae37c0445 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6bbda2198867bbb3c9c88a49fc0a8761 diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.0.3.3 b/metadata/md5-cache/dev-ruby/activestorage-6.0.3.3 index 814266b31276..44ee502c3334 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6bbda2198867bbb3c9c88a49fc0a8761 diff --git a/metadata/md5-cache/dev-ruby/activestorage-6.0.3.4 b/metadata/md5-cache/dev-ruby/activestorage-6.0.3.4 index a09f31ca6212..2af74fca230f 100644 --- a/metadata/md5-cache/dev-ruby/activestorage-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/activestorage-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6bbda2198867bbb3c9c88a49fc0a8761 diff --git a/metadata/md5-cache/dev-ruby/activesupport-5.2.4.3 b/metadata/md5-cache/dev-ruby/activesupport-5.2.4.3 index e97606142bf7..e00ee4254385 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/activesupport-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=acdd49b267e600f06f53aa2af8bf5ae9 diff --git a/metadata/md5-cache/dev-ruby/activesupport-5.2.4.4 b/metadata/md5-cache/dev-ruby/activesupport-5.2.4.4 index 347d350729cf..a937b27961b3 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/activesupport-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=717543ef26c006a3032700422a6ffeae diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.0.3.2 b/metadata/md5-cache/dev-ruby/activesupport-6.0.3.2 index d48d32b9d85a..c4f05fa69ee0 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=72d86959c7f179421e8642087c413192 diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.0.3.3 b/metadata/md5-cache/dev-ruby/activesupport-6.0.3.3 index a8bd34f01408..559063a6ff49 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=72d86959c7f179421e8642087c413192 diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.0.3.4 b/metadata/md5-cache/dev-ruby/activesupport-6.0.3.4 index 997c6556c301..b5edbce58229 100644 --- a/metadata/md5-cache/dev-ruby/activesupport-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/activesupport-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=72d86959c7f179421e8642087c413192 diff --git a/metadata/md5-cache/dev-ruby/activesupport-6.0.3.4-r1 b/metadata/md5-cache/dev-ruby/activesupport-6.0.3.4-r1 new file mode 100644 index 000000000000..320aed1f28dd --- /dev/null +++ b/metadata/md5-cache/dev-ruby/activesupport-6.0.3.4-r1 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby25? ( >=dev-ruby/concurrent-ruby-1.0.2:1[ruby_targets_ruby25(-)] dev-ruby/i18n:1[ruby_targets_ruby25(-)] >=dev-ruby/tzinfo-1.1:1[ruby_targets_ruby25(-)] >=dev-ruby/minitest-5.1:5[ruby_targets_ruby25(-)] >=dev-ruby/zeitwerk-2.2:2[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/concurrent-ruby-1.0.2:1[ruby_targets_ruby26(-)] dev-ruby/i18n:1[ruby_targets_ruby26(-)] >=dev-ruby/tzinfo-1.1:1[ruby_targets_ruby26(-)] >=dev-ruby/minitest-5.1:5[ruby_targets_ruby26(-)] >=dev-ruby/zeitwerk-2.2:2[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/concurrent-ruby-1.0.2:1[ruby_targets_ruby27(-)] dev-ruby/i18n:1[ruby_targets_ruby27(-)] >=dev-ruby/tzinfo-1.1:1[ruby_targets_ruby27(-)] >=dev-ruby/minitest-5.1:5[ruby_targets_ruby27(-)] >=dev-ruby/zeitwerk-2.2:2[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( >=dev-ruby/dalli-2.2.1[ruby_targets_ruby25(-)] >=dev-ruby/nokogiri-1.4.5[ruby_targets_ruby25(-)] >=dev-ruby/builder-3.1.0[ruby_targets_ruby25(-)] >=dev-ruby/listen-3.0.5:3[ruby_targets_ruby25(-)] dev-ruby/rack[ruby_targets_ruby25(-)] dev-ruby/mocha[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( >=dev-ruby/dalli-2.2.1[ruby_targets_ruby26(-)] >=dev-ruby/nokogiri-1.4.5[ruby_targets_ruby26(-)] >=dev-ruby/builder-3.1.0[ruby_targets_ruby26(-)] >=dev-ruby/listen-3.0.5:3[ruby_targets_ruby26(-)] dev-ruby/rack[ruby_targets_ruby26(-)] dev-ruby/mocha[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( >=dev-ruby/dalli-2.2.1[ruby_targets_ruby27(-)] >=dev-ruby/nokogiri-1.4.5[ruby_targets_ruby27(-)] >=dev-ruby/builder-3.1.0[ruby_targets_ruby27(-)] >=dev-ruby/listen-3.0.5:3[ruby_targets_ruby27(-)] dev-ruby/rack[ruby_targets_ruby27(-)] dev-ruby/mocha[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DESCRIPTION=Utility Classes and Extension to the Standard Library +EAPI=7 +HOMEPAGE=https://github.com/rails/rails +IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~sparc ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/concurrent-ruby-1.0.2:1[ruby_targets_ruby25(-)] dev-ruby/i18n:1[ruby_targets_ruby25(-)] >=dev-ruby/tzinfo-1.1:1[ruby_targets_ruby25(-)] >=dev-ruby/minitest-5.1:5[ruby_targets_ruby25(-)] >=dev-ruby/zeitwerk-2.2:2[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/concurrent-ruby-1.0.2:1[ruby_targets_ruby26(-)] dev-ruby/i18n:1[ruby_targets_ruby26(-)] >=dev-ruby/tzinfo-1.1:1[ruby_targets_ruby26(-)] >=dev-ruby/minitest-5.1:5[ruby_targets_ruby26(-)] >=dev-ruby/zeitwerk-2.2:2[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/concurrent-ruby-1.0.2:1[ruby_targets_ruby27(-)] dev-ruby/i18n:1[ruby_targets_ruby27(-)] >=dev-ruby/tzinfo-1.1:1[ruby_targets_ruby27(-)] >=dev-ruby/minitest-5.1:5[ruby_targets_ruby27(-)] >=dev-ruby/zeitwerk-2.2:2[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=6.0 +SRC_URI=https://github.com/rails/rails/archive/v6.0.3.4.tar.gz -> rails-6.0.3.4.tgz +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=78dc229615daaed45817aaa8159b8e7b diff --git a/metadata/md5-cache/dev-ruby/acts_as_list-1.0.1 b/metadata/md5-cache/dev-ruby/acts_as_list-1.0.1 index 296031b37dd6..17a26d707aaa 100644 --- a/metadata/md5-cache/dev-ruby/acts_as_list-1.0.1 +++ b/metadata/md5-cache/dev-ruby/acts_as_list-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/acts_as_list-1.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d375e8f3e79ba284e2d255786b4f7911 diff --git a/metadata/md5-cache/dev-ruby/addressable-2.6.0 b/metadata/md5-cache/dev-ruby/addressable-2.6.0 index 62fac0943190..028ec1b02e25 100644 --- a/metadata/md5-cache/dev-ruby/addressable-2.6.0 +++ b/metadata/md5-cache/dev-ruby/addressable-2.6.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/addressable-2.6.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=73a869afc50a615eaca5569350836528 diff --git a/metadata/md5-cache/dev-ruby/addressable-2.7.0 b/metadata/md5-cache/dev-ruby/addressable-2.7.0 index fc1cd4b767c2..51ec059a3118 100644 --- a/metadata/md5-cache/dev-ruby/addressable-2.7.0 +++ b/metadata/md5-cache/dev-ruby/addressable-2.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/addressable-2.7.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=871bfb4e14c8306fa94c4036a4d664b8 diff --git a/metadata/md5-cache/dev-ruby/ae-1.8.2 b/metadata/md5-cache/dev-ruby/ae-1.8.2 index e3487439a973..ce2ab0c04849 100644 --- a/metadata/md5-cache/dev-ruby/ae-1.8.2 +++ b/metadata/md5-cache/dev-ruby/ae-1.8.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/ae-1.8.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=763d6d63431bb332bf77b6fb26753e4d diff --git a/metadata/md5-cache/dev-ruby/afm-0.2.2 b/metadata/md5-cache/dev-ruby/afm-0.2.2 index 2be4a73ece2a..65c03e7fec7d 100644 --- a/metadata/md5-cache/dev-ruby/afm-0.2.2 +++ b/metadata/md5-cache/dev-ruby/afm-0.2.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/afm-0.2.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7cc8bd023e5350dc78aec7424ce25783 diff --git a/metadata/md5-cache/dev-ruby/airbrussh-1.3.4 b/metadata/md5-cache/dev-ruby/airbrussh-1.3.4 index 89a483a2be81..de2fd1136db2 100644 --- a/metadata/md5-cache/dev-ruby/airbrussh-1.3.4 +++ b/metadata/md5-cache/dev-ruby/airbrussh-1.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/mattbrictson/airbrussh/archive/v1.3.4.tar.gz -> airbrussh-1.3.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=20c072df5123ab6c63f29704ba0bc694 diff --git a/metadata/md5-cache/dev-ruby/airbrussh-1.4.0 b/metadata/md5-cache/dev-ruby/airbrussh-1.4.0 index 1852543268b0..d6468f351c3c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4f1122e2655f638f72db2481f19b5479 diff --git a/metadata/md5-cache/dev-ruby/allison-2.0.3-r3 b/metadata/md5-cache/dev-ruby/allison-2.0.3-r3 index d309106c6f11..b9bf89635d69 100644 --- a/metadata/md5-cache/dev-ruby/allison-2.0.3-r3 +++ b/metadata/md5-cache/dev-ruby/allison-2.0.3-r3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/allison-2.0.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=666baf05593fda173de93b54fbbe7bf3 diff --git a/metadata/md5-cache/dev-ruby/amatch-0.4.0 b/metadata/md5-cache/dev-ruby/amatch-0.4.0 index d07f4c96a849..b2cfcfc268f6 100644 --- a/metadata/md5-cache/dev-ruby/amatch-0.4.0 +++ b/metadata/md5-cache/dev-ruby/amatch-0.4.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/amatch-0.4.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0145deb42810fc2f9d5a9ec6cb8032db diff --git a/metadata/md5-cache/dev-ruby/ammeter-1.1.4-r1 b/metadata/md5-cache/dev-ruby/ammeter-1.1.4-r1 index e4b4fe63027d..72ada4176e5e 100644 --- a/metadata/md5-cache/dev-ruby/ammeter-1.1.4-r1 +++ b/metadata/md5-cache/dev-ruby/ammeter-1.1.4-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ammeter-1.1.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f017a9f1edda6f0f6edd2f1bce028f13 diff --git a/metadata/md5-cache/dev-ruby/amq-client-1.0.4 b/metadata/md5-cache/dev-ruby/amq-client-1.0.4 index 7f7572960ebe..b75ad4500fe4 100644 --- a/metadata/md5-cache/dev-ruby/amq-client-1.0.4 +++ b/metadata/md5-cache/dev-ruby/amq-client-1.0.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/amq-client-1.0.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=b7af70b2353af798785bd50f257f8d1b diff --git a/metadata/md5-cache/dev-ruby/amq-protocol-2.3.1 b/metadata/md5-cache/dev-ruby/amq-protocol-2.3.1 index 716f1dfbaa0d..6e5f1c963cb7 100644 --- a/metadata/md5-cache/dev-ruby/amq-protocol-2.3.1 +++ b/metadata/md5-cache/dev-ruby/amq-protocol-2.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/amq-protocol-2.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b3eda5bb11fd60a2de0a485fa204565b 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 06d309997010..064df5ccffb8 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/amq-protocol-2.3.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4fef9270889f70629bef8b20e501374a diff --git a/metadata/md5-cache/dev-ruby/amqp-1.8.0 b/metadata/md5-cache/dev-ruby/amqp-1.8.0 index 651df99a50c3..74d8475808d3 100644 --- a/metadata/md5-cache/dev-ruby/amqp-1.8.0 +++ b/metadata/md5-cache/dev-ruby/amqp-1.8.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.4 SRC_URI=https://rubygems.org/gems/amqp-1.8.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=b837b75bd5559fa0ce13e5008d8d9ceb diff --git a/metadata/md5-cache/dev-ruby/annoy-0.5.6-r1 b/metadata/md5-cache/dev-ruby/annoy-0.5.6-r1 index a8faea75065e..42ea5226b27c 100644 --- a/metadata/md5-cache/dev-ruby/annoy-0.5.6-r1 +++ b/metadata/md5-cache/dev-ruby/annoy-0.5.6-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/annoy-0.5.6.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6664d58eab5497539be2c3087be2332d diff --git a/metadata/md5-cache/dev-ruby/ansi-1.5.0 b/metadata/md5-cache/dev-ruby/ansi-1.5.0 index 152f5a9649b3..5bc25fae5937 100644 --- a/metadata/md5-cache/dev-ruby/ansi-1.5.0 +++ b/metadata/md5-cache/dev-ruby/ansi-1.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/ansi-1.5.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e9cc94850f1859f8cc66c409284e97fb diff --git a/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 b/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 index 28f9c72b18c7..e8bc6c21ed19 100644 --- a/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 +++ b/metadata/md5-cache/dev-ruby/archive-tar-minitar-0.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/halostatue/minitar/archive/v0.8.tar.gz -> archive-tar-minitar-0.8.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6c8d162d91f4ede244be754e1353d7fe diff --git a/metadata/md5-cache/dev-ruby/arel-9.0.0 b/metadata/md5-cache/dev-ruby/arel-9.0.0 index c2ca73a134c8..b258ae4e749b 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=a965767c9b946ea36126213fe6a94878 diff --git a/metadata/md5-cache/dev-ruby/arel-helpers-2.11.0 b/metadata/md5-cache/dev-ruby/arel-helpers-2.11.0 index a8814570f4db..c4180508685e 100644 --- a/metadata/md5-cache/dev-ruby/arel-helpers-2.11.0 +++ b/metadata/md5-cache/dev-ruby/arel-helpers-2.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/arel-helpers-2.11.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=92d46b35201a98fd195fc37d17201eb5 diff --git a/metadata/md5-cache/dev-ruby/ascii85-1.0.3 b/metadata/md5-cache/dev-ruby/ascii85-1.0.3 index 185d32246ab9..18ff8b73da86 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 ef35ff634b02..b379cf49c74b 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/Ascii85-1.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4e8cd3e2ff340e577fc33749b0c07fa5 diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.10 b/metadata/md5-cache/dev-ruby/asciidoctor-2.0.10 index 57816aaaffa9..335fce52fe15 100644 --- a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.10 +++ b/metadata/md5-cache/dev-ruby/asciidoctor-2.0.10 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/asciidoctor/asciidoctor/archive/v2.0.10.tar.gz -> asciidoctor-2.0.10.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c347c622db7901f711445d5d9e91cb81 diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.11 b/metadata/md5-cache/dev-ruby/asciidoctor-2.0.11 index a0951c96a740..adc32e88ed2a 100644 --- a/metadata/md5-cache/dev-ruby/asciidoctor-2.0.11 +++ b/metadata/md5-cache/dev-ruby/asciidoctor-2.0.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/asciidoctor/asciidoctor/archive/v2.0.11.tar.gz -> asciidoctor-2.0.11.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=29e822f4782a8b33b890dc71c19cd566 diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.19 b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.19 index 219b98452d14..1201c277e4d0 100644 --- a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.19 +++ b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-1.5.19 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/asciidoctor/asciidoctor-diagram/archive/1.5.19.tar.gz -> asciidoctor-diagram-1.5.19.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=29cc1eb2b43ba1848d8c9535edc69ac0 diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.2 b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.2 index 919589ea7280..ac2ad3cc1864 100644 --- a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.2 +++ b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/asciidoctor/asciidoctor-diagram/archive/v2.0.2.tar.gz -> asciidoctor-diagram-2.0.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6f8d90c2a3f84ac2e530369424997a0a diff --git a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.3 b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.3 index 3af9ef82f229..a3a4d1416ce0 100644 --- a/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.3 +++ b/metadata/md5-cache/dev-ruby/asciidoctor-diagram-2.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/asciidoctor/asciidoctor-diagram/archive/v2.0.3.tar.gz -> asciidoctor-diagram-2.0.3.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d60a904683bba373541a214e7d106964 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 8a9ee64f89fb..071f9f8d4782 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d60a904683bba373541a214e7d106964 diff --git a/metadata/md5-cache/dev-ruby/asciimath-1.0.4 b/metadata/md5-cache/dev-ruby/asciimath-1.0.4 index 8b8677d00d46..46cd5befcb4d 100644 --- a/metadata/md5-cache/dev-ruby/asciimath-1.0.4 +++ b/metadata/md5-cache/dev-ruby/asciimath-1.0.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/asciimath-1.0.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=fc18488e087edc307fc2ebfd353354e9 diff --git a/metadata/md5-cache/dev-ruby/asciimath-1.0.9 b/metadata/md5-cache/dev-ruby/asciimath-1.0.9 index 9e18eda9035c..e8306c414bbb 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e5711c748d6f56a59fec515c924a070d diff --git a/metadata/md5-cache/dev-ruby/asciimath-2.0.0 b/metadata/md5-cache/dev-ruby/asciimath-2.0.0 index 13ca20b2503c..8483bb9de80c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 8d2791362a8b..4a491cb753eb 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1f8560af9427109153d9127a341533bb diff --git a/metadata/md5-cache/dev-ruby/ast-2.4.0 b/metadata/md5-cache/dev-ruby/ast-2.4.0 index e41a86fc7e55..c8f33a851cec 100644 --- a/metadata/md5-cache/dev-ruby/ast-2.4.0 +++ b/metadata/md5-cache/dev-ruby/ast-2.4.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ast-2.4.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=51e1b491567169d021f5886e0965ac4f diff --git a/metadata/md5-cache/dev-ruby/ast-2.4.1 b/metadata/md5-cache/dev-ruby/ast-2.4.1 index 773ae71f7b63..05bf2cde7f2c 100644 --- a/metadata/md5-cache/dev-ruby/ast-2.4.1 +++ b/metadata/md5-cache/dev-ruby/ast-2.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whitequark/ast/archive/v2.4.1.tar.gz -> ast-2.4.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=39522b4d91884adaeb186ff7f9a62fad diff --git a/metadata/md5-cache/dev-ruby/astrolabe-1.3.1 b/metadata/md5-cache/dev-ruby/astrolabe-1.3.1 index 881889cea79b..00b3d001921f 100644 --- a/metadata/md5-cache/dev-ruby/astrolabe-1.3.1 +++ b/metadata/md5-cache/dev-ruby/astrolabe-1.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/astrolabe-1.3.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=261f695413f5b07e13f712222741cfd0 diff --git a/metadata/md5-cache/dev-ruby/astrolabe-1.3.1-r1 b/metadata/md5-cache/dev-ruby/astrolabe-1.3.1-r1 index 7f3907cb05a9..5635c4dec190 100644 --- a/metadata/md5-cache/dev-ruby/astrolabe-1.3.1-r1 +++ b/metadata/md5-cache/dev-ruby/astrolabe-1.3.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/astrolabe-1.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=837f3605bc1cd15a044130a3d3629374 diff --git a/metadata/md5-cache/dev-ruby/async_sinatra-1.3.0 b/metadata/md5-cache/dev-ruby/async_sinatra-1.3.0 index 4a06565c396c..cd152bba2a82 100644 --- a/metadata/md5-cache/dev-ruby/async_sinatra-1.3.0 +++ b/metadata/md5-cache/dev-ruby/async_sinatra-1.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b94efc35ff74e45d52120021f82973a2 diff --git a/metadata/md5-cache/dev-ruby/atomic-1.1.101 b/metadata/md5-cache/dev-ruby/atomic-1.1.101 index 13d14d98355f..6ed416518dc1 100644 --- a/metadata/md5-cache/dev-ruby/atomic-1.1.101 +++ b/metadata/md5-cache/dev-ruby/atomic-1.1.101 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/atomic-1.1.101.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=04f682b0843d56771b7dc0470679511c diff --git a/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.0.1.0 b/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.0.1.0 index 71dc483c017e..f531e53af292 100644 --- a/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.0.1.0 +++ b/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.0.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=10 SRC_URI=https://github.com/ai/autoprefixer-rails/archive/10.0.1.0.tar.gz -> autoprefixer-rails-10.0.1.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f06887b2983396eb097e20c068fbae64 diff --git a/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.0.1.1 b/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.0.1.1 index ddcbb59e6a55..8b63b65c046f 100644 --- a/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.0.1.1 +++ b/metadata/md5-cache/dev-ruby/autoprefixer-rails-10.0.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=10 SRC_URI=https://github.com/ai/autoprefixer-rails/archive/10.0.1.1.tar.gz -> autoprefixer-rails-10.0.1.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f06887b2983396eb097e20c068fbae64 diff --git a/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.5 b/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.5 index c9c800dc476f..f000b61825fc 100644 --- a/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.5 +++ b/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=9 SRC_URI=https://rubygems.org/gems/autoprefixer-rails-9.8.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=54b810e92cd99ac4ed3a8f516297a5b9 diff --git a/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.6.3 b/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.6.3 index f59fe5c725cc..7870cc80c257 100644 --- a/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.6.3 +++ b/metadata/md5-cache/dev-ruby/autoprefixer-rails-9.8.6.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=9 SRC_URI=https://rubygems.org/gems/autoprefixer-rails-9.8.6.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=12c3e247e33c6eb20ae94a2afe66826f 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 aa34e899adba..676cb34ffe19 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 424dc0d86ada..d35e6fc30b89 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9c184443b5bdad44f97ca3369abc273b 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 f0adc677b372..f0f53a349942 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 80adb9680feb..6719aed32def 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 9e7f66217250..8e813c74d64c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=449d47795834ca53ed7f616e69c53d58 diff --git a/metadata/md5-cache/dev-ruby/aws-s3-0.6.3 b/metadata/md5-cache/dev-ruby/aws-s3-0.6.3 index 256f679b9614..eb8203101113 100644 --- a/metadata/md5-cache/dev-ruby/aws-s3-0.6.3 +++ b/metadata/md5-cache/dev-ruby/aws-s3-0.6.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/aws-s3-0.6.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=3a940c09eb4d72f1051b086371d572e6 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 ba8e0d3b00d6..72cfc6fc1506 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 266c9885eebb..12110917ff76 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 3beddb3f5a07..d7e708b4cfc9 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 1020c6c1d5e2..4338bbe61da4 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ed4697db5d6fb27328bec27fb7101729 diff --git a/metadata/md5-cache/dev-ruby/aws-sigv4-1.1.2 b/metadata/md5-cache/dev-ruby/aws-sigv4-1.1.2 index 37eecf225327..3e9c1afc1962 100644 --- a/metadata/md5-cache/dev-ruby/aws-sigv4-1.1.2 +++ b/metadata/md5-cache/dev-ruby/aws-sigv4-1.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-sigv4-1.1.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d8f609141ca4658e6b0661508e47b1dc diff --git a/metadata/md5-cache/dev-ruby/aws-sigv4-1.1.4 b/metadata/md5-cache/dev-ruby/aws-sigv4-1.1.4 index 4a5467169913..872aeffbb28b 100644 --- a/metadata/md5-cache/dev-ruby/aws-sigv4-1.1.4 +++ b/metadata/md5-cache/dev-ruby/aws-sigv4-1.1.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/aws-sigv4-1.1.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a6a618ecd3c9d42202a80df4b8235a57 diff --git a/metadata/md5-cache/dev-ruby/axiom-types-0.1.1 b/metadata/md5-cache/dev-ruby/axiom-types-0.1.1 index a96f95d569cc..ff61dbbe488b 100644 --- a/metadata/md5-cache/dev-ruby/axiom-types-0.1.1 +++ b/metadata/md5-cache/dev-ruby/axiom-types-0.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/axiom-types-0.1.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=b99f672ba45b99ac4cd488303388e134 diff --git a/metadata/md5-cache/dev-ruby/backports-3.15.0 b/metadata/md5-cache/dev-ruby/backports-3.15.0 index 0d71d571becc..6fad3f995345 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.15.0 +++ b/metadata/md5-cache/dev-ruby/backports-3.15.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/backports-3.15.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0dbcbdc6b5db2dd829b96aec8891f779 diff --git a/metadata/md5-cache/dev-ruby/backports-3.17.2 b/metadata/md5-cache/dev-ruby/backports-3.17.2 index 1b0d0dfacaab..593e3fb222d3 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.17.2 +++ b/metadata/md5-cache/dev-ruby/backports-3.17.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/marcandre/backports/archive/v3.17.2.tar.gz -> backports-3.17.2{P}.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=69b89489a9a484f352a346ae1bcba8df diff --git a/metadata/md5-cache/dev-ruby/backports-3.18.2 b/metadata/md5-cache/dev-ruby/backports-3.18.2 index 95420618eec1..2968aa560da9 100644 --- a/metadata/md5-cache/dev-ruby/backports-3.18.2 +++ b/metadata/md5-cache/dev-ruby/backports-3.18.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/marcandre/backports/archive/v3.18.2.tar.gz -> backports-3.18.2{P}.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e9417b965023c3f4e84f3fb8b364c319 diff --git a/metadata/md5-cache/dev-ruby/bacon-1.2.0-r2 b/metadata/md5-cache/dev-ruby/bacon-1.2.0-r2 index 3e80d387d3c6..f7145855c4b9 100644 --- a/metadata/md5-cache/dev-ruby/bacon-1.2.0-r2 +++ b/metadata/md5-cache/dev-ruby/bacon-1.2.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bacon-1.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=9dee88d179b187903d0788c1edace66e diff --git a/metadata/md5-cache/dev-ruby/barby-0.6.8 b/metadata/md5-cache/dev-ruby/barby-0.6.8 index b2aeecbb9764..8b68416abb44 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0ca5aa1890a31535de486d464744cb6e diff --git a/metadata/md5-cache/dev-ruby/base32-0.3.2 b/metadata/md5-cache/dev-ruby/base32-0.3.2 index ad4b590cbeb1..665a53ecb0ce 100644 --- a/metadata/md5-cache/dev-ruby/base32-0.3.2 +++ b/metadata/md5-cache/dev-ruby/base32-0.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/base32-0.3.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=08881bc87f897f6fceef1212c25afe96 diff --git a/metadata/md5-cache/dev-ruby/base32-0.3.4 b/metadata/md5-cache/dev-ruby/base32-0.3.4 index 5d9d9ebe3535..be07d465c8d7 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c2ad98d96169e9dd8fe48a448e1a8086 diff --git a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.13 b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.13 index 709a1f4b8ddd..c89aaccf73ea 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.13 +++ b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.13 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bcrypt-3.1.13.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f1ccd9280619cb49473f8daadb574bd7 diff --git a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.15 b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.15 index 17c4080fd17e..e3eadbfad12b 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.15 +++ b/metadata/md5-cache/dev-ruby/bcrypt-ruby-3.1.15 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bcrypt-3.1.15.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5a3c4664aba1f47b8fc3709028cdeaf5 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 5232f43f7977..b00df4482306 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5a3c4664aba1f47b8fc3709028cdeaf5 diff --git a/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.0.0 b/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.0.0 index fe7a0243c94a..daf8fb7f6545 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.0.0 +++ b/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/bcrypt_pbkdf-1.0.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=3212ab10a3ee9f4883dc11947b071088 diff --git a/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.0.1 b/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.0.1 index a3752fb71390..11e917eee7cc 100644 --- a/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.0.1 +++ b/metadata/md5-cache/dev-ruby/bcrypt_pbkdf-1.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/bcrypt_pbkdf-1.0.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=daeb10d10e528c0be37d8415a484f60f 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 f3975a55a726..6fff205f91b8 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=0b8a87fc7deedaadeed23215137bdf52 diff --git a/metadata/md5-cache/dev-ruby/bindata-2.4.6 b/metadata/md5-cache/dev-ruby/bindata-2.4.6 index 884262bc7108..d4d788ad5273 100644 --- a/metadata/md5-cache/dev-ruby/bindata-2.4.6 +++ b/metadata/md5-cache/dev-ruby/bindata-2.4.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bindata-2.4.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5d50a1c699414af836de76843450bef5 diff --git a/metadata/md5-cache/dev-ruby/bindata-2.4.7 b/metadata/md5-cache/dev-ruby/bindata-2.4.7 index 5eff8e62ca75..3086b8af5056 100644 --- a/metadata/md5-cache/dev-ruby/bindata-2.4.7 +++ b/metadata/md5-cache/dev-ruby/bindata-2.4.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bindata-2.4.7.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5d50a1c699414af836de76843450bef5 diff --git a/metadata/md5-cache/dev-ruby/bindata-2.4.8 b/metadata/md5-cache/dev-ruby/bindata-2.4.8 index 4e38d331fb3e..75bee499bbc6 100644 --- a/metadata/md5-cache/dev-ruby/bindata-2.4.8 +++ b/metadata/md5-cache/dev-ruby/bindata-2.4.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/bindata-2.4.8.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d9278cf851a5159c27cd7b196f3afb86 diff --git a/metadata/md5-cache/dev-ruby/bindex-0.8.1 b/metadata/md5-cache/dev-ruby/bindex-0.8.1 index 1c57f81dd801..8c04b7b2b5f5 100644 --- a/metadata/md5-cache/dev-ruby/bindex-0.8.1 +++ b/metadata/md5-cache/dev-ruby/bindex-0.8.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bindex-0.8.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=07870d11e8c437f467ee00646de90bbe 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 4a7c55b277f5..89f05f6ec568 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6a021ba52947a797906d593feee4b375 diff --git a/metadata/md5-cache/dev-ruby/bit-struct-0.16 b/metadata/md5-cache/dev-ruby/bit-struct-0.16 index 0bc96698858d..dfdbc9555b8c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f2f38651d88302f3c7429b91143c905a diff --git a/metadata/md5-cache/dev-ruby/blankslate-3.1.3 b/metadata/md5-cache/dev-ruby/blankslate-3.1.3 index 376c8b2bd3e3..3a0a066975c6 100644 --- a/metadata/md5-cache/dev-ruby/blankslate-3.1.3 +++ b/metadata/md5-cache/dev-ruby/blankslate-3.1.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/blankslate-3.1.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5fb332c1600da7e1b6adfb3bdf82a825 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 82a147e8f619..cca25c5f17fa 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 8b53e167dc9b..c51023cee30a 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=59c595f2f353eb045efdb540dd6c9a3d diff --git a/metadata/md5-cache/dev-ruby/bourne-1.6.0 b/metadata/md5-cache/dev-ruby/bourne-1.6.0 index fa09824b46e8..9c8addac1500 100644 --- a/metadata/md5-cache/dev-ruby/bourne-1.6.0 +++ b/metadata/md5-cache/dev-ruby/bourne-1.6.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bourne-1.6.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=65aace39a2c3ee5bfdf09e13734a5ab9 diff --git a/metadata/md5-cache/dev-ruby/brass-1.2.1 b/metadata/md5-cache/dev-ruby/brass-1.2.1 index eb3ea6a06f51..d3f79c511b94 100644 --- a/metadata/md5-cache/dev-ruby/brass-1.2.1 +++ b/metadata/md5-cache/dev-ruby/brass-1.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/brass-1.2.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=00b40061b8c9ea12f307267def46136a diff --git a/metadata/md5-cache/dev-ruby/brotli-0.2.3 b/metadata/md5-cache/dev-ruby/brotli-0.2.3 index 1764efb6995a..9c7427ba7b8e 100644 --- a/metadata/md5-cache/dev-ruby/brotli-0.2.3 +++ b/metadata/md5-cache/dev-ruby/brotli-0.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/miyucy/brotli/archive/v0.2.3.tar.gz -> brotli-0.2.3.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7688b09b7ffef28c3f2f1eb750bb6a52 diff --git a/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r2 b/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r2 index 22053d607436..f2be4d125898 100644 --- a/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r2 +++ b/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bsearch-1.5.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=3759675da1825422b7e08f49e580f784 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 3e6863e66a31..66316a231166 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bsearch-1.5.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e1832bf6e1fc721190c6e1d1705801f2 diff --git a/metadata/md5-cache/dev-ruby/bson-4.10.0 b/metadata/md5-cache/dev-ruby/bson-4.10.0 index 0fc798642161..4a5906839ce0 100644 --- a/metadata/md5-cache/dev-ruby/bson-4.10.0 +++ b/metadata/md5-cache/dev-ruby/bson-4.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/mongodb/bson-ruby/archive/v4.10.0.tar.gz -> bson-4.10.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=79705486afe465ee1180863aaca50841 diff --git a/metadata/md5-cache/dev-ruby/bson-4.7.1 b/metadata/md5-cache/dev-ruby/bson-4.7.1 index bf84bba6a53f..5dc256e01873 100644 --- a/metadata/md5-cache/dev-ruby/bson-4.7.1 +++ b/metadata/md5-cache/dev-ruby/bson-4.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/mongodb/bson-ruby/archive/v4.7.1.tar.gz -> bson-4.7.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c05902eb12757dc14424783ffdf5c1ff diff --git a/metadata/md5-cache/dev-ruby/bson-4.8.2 b/metadata/md5-cache/dev-ruby/bson-4.8.2 index 2e04305f995d..21bf81708e0b 100644 --- a/metadata/md5-cache/dev-ruby/bson-4.8.2 +++ b/metadata/md5-cache/dev-ruby/bson-4.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/mongodb/bson-ruby/archive/v4.8.2.tar.gz -> bson-4.8.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c05902eb12757dc14424783ffdf5c1ff diff --git a/metadata/md5-cache/dev-ruby/bson-4.9.2 b/metadata/md5-cache/dev-ruby/bson-4.9.2 index c6b733f372f9..450f0aa86338 100644 --- a/metadata/md5-cache/dev-ruby/bson-4.9.2 +++ b/metadata/md5-cache/dev-ruby/bson-4.9.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/mongodb/bson-ruby/archive/v4.9.2.tar.gz -> bson-4.9.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c05902eb12757dc14424783ffdf5c1ff diff --git a/metadata/md5-cache/dev-ruby/bson-4.9.4 b/metadata/md5-cache/dev-ruby/bson-4.9.4 index 4a9ec9ce9d31..4f261f176cdf 100644 --- a/metadata/md5-cache/dev-ruby/bson-4.9.4 +++ b/metadata/md5-cache/dev-ruby/bson-4.9.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/mongodb/bson-ruby/archive/v4.9.4.tar.gz -> bson-4.9.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=79705486afe465ee1180863aaca50841 diff --git a/metadata/md5-cache/dev-ruby/buftok-0.2.0-r1 b/metadata/md5-cache/dev-ruby/buftok-0.2.0-r1 index 5cde683eed79..af4289d29339 100644 --- a/metadata/md5-cache/dev-ruby/buftok-0.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/buftok-0.2.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/buftok-0.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7496ecc40a3cfabc1f8f11890721cbcd diff --git a/metadata/md5-cache/dev-ruby/builder-3.2.3 b/metadata/md5-cache/dev-ruby/builder-3.2.3 index 2547aa97740c..c303b0bcd3c2 100644 --- a/metadata/md5-cache/dev-ruby/builder-3.2.3 +++ b/metadata/md5-cache/dev-ruby/builder-3.2.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3.2 SRC_URI=https://rubygems.org/gems/builder-3.2.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=19d727a7dbd15aa7774e34a130cc449f diff --git a/metadata/md5-cache/dev-ruby/builder-3.2.4 b/metadata/md5-cache/dev-ruby/builder-3.2.4 index 2f7f7bb4653e..d9b7d65572fe 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=91a34dc9d23da271fb286f0a311e636c diff --git a/metadata/md5-cache/dev-ruby/bundler-1.17.3 b/metadata/md5-cache/dev-ruby/bundler-1.17.3 index 0e8a8c0cec51..00ecc8f7e16a 100644 --- a/metadata/md5-cache/dev-ruby/bundler-1.17.3 +++ b/metadata/md5-cache/dev-ruby/bundler-1.17.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bundler-1.17.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=45686ad723d3a4994aed69e780884982 diff --git a/metadata/md5-cache/dev-ruby/bundler-1.17.3-r1 b/metadata/md5-cache/dev-ruby/bundler-1.17.3-r1 index 8d927ffc8cf8..54739c68991c 100644 --- a/metadata/md5-cache/dev-ruby/bundler-1.17.3-r1 +++ b/metadata/md5-cache/dev-ruby/bundler-1.17.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bundler-1.17.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4425bbd03e1fb96821857b5b2f4983d6 diff --git a/metadata/md5-cache/dev-ruby/bundler-2.1.4 b/metadata/md5-cache/dev-ruby/bundler-2.1.4 index 63ad5a38b225..cbb06a0639b5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f294c1491cf69de190d94ec1f0d88299 diff --git a/metadata/md5-cache/dev-ruby/bundler-audit-0.7.0.1 b/metadata/md5-cache/dev-ruby/bundler-audit-0.7.0.1 index 6dfb71cf80a7..8c47ab989431 100644 --- a/metadata/md5-cache/dev-ruby/bundler-audit-0.7.0.1 +++ b/metadata/md5-cache/dev-ruby/bundler-audit-0.7.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/bundler-audit-0.7.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ee757b225944293e5adb49aa9a00c178 diff --git a/metadata/md5-cache/dev-ruby/bunny-2.16.1 b/metadata/md5-cache/dev-ruby/bunny-2.16.1 index 2229f88fb3bf..f43fb19d6228 100644 --- a/metadata/md5-cache/dev-ruby/bunny-2.16.1 +++ b/metadata/md5-cache/dev-ruby/bunny-2.16.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/bunny-2.16.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=592a6e5085246a75237cc06fbae15048 diff --git a/metadata/md5-cache/dev-ruby/bunny-2.17.0 b/metadata/md5-cache/dev-ruby/bunny-2.17.0 index 773fd03608c8..ac2facdfd69b 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=592a6e5085246a75237cc06fbae15048 diff --git a/metadata/md5-cache/dev-ruby/c21e-1.2.1 b/metadata/md5-cache/dev-ruby/c21e-1.2.1 index ecd8e806fcae..bd45988f5484 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9717be0a0a6702534e6caa56c45b5061 diff --git a/metadata/md5-cache/dev-ruby/capistrano-2.15.5-r2 b/metadata/md5-cache/dev-ruby/capistrano-2.15.5-r2 index b4e6acb90f06..75c83f6ee9ef 100644 --- a/metadata/md5-cache/dev-ruby/capistrano-2.15.5-r2 +++ b/metadata/md5-cache/dev-ruby/capistrano-2.15.5-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/capistrano-2.15.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e1949af1e4bfc689635315fae8a295e4 diff --git a/metadata/md5-cache/dev-ruby/capistrano-3.12.1 b/metadata/md5-cache/dev-ruby/capistrano-3.12.1 index 62467c5b9989..bd5a5fd56d81 100644 --- a/metadata/md5-cache/dev-ruby/capistrano-3.12.1 +++ b/metadata/md5-cache/dev-ruby/capistrano-3.12.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capistrano-3.12.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=96410e49954bed13e8581f0fa482f4bf diff --git a/metadata/md5-cache/dev-ruby/capistrano-3.13.0 b/metadata/md5-cache/dev-ruby/capistrano-3.13.0 index 8f77db025b75..b6ebd3c88afe 100644 --- a/metadata/md5-cache/dev-ruby/capistrano-3.13.0 +++ b/metadata/md5-cache/dev-ruby/capistrano-3.13.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capistrano-3.13.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=96410e49954bed13e8581f0fa482f4bf diff --git a/metadata/md5-cache/dev-ruby/capistrano-3.14.0 b/metadata/md5-cache/dev-ruby/capistrano-3.14.0 index 823758d4b6a3..ab21b722b3fa 100644 --- a/metadata/md5-cache/dev-ruby/capistrano-3.14.0 +++ b/metadata/md5-cache/dev-ruby/capistrano-3.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capistrano-3.14.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=829ee608fba6a90d6ae76d8711362311 diff --git a/metadata/md5-cache/dev-ruby/capistrano-3.14.1 b/metadata/md5-cache/dev-ruby/capistrano-3.14.1 index 52454b97e162..f9e2bacf65d8 100644 --- a/metadata/md5-cache/dev-ruby/capistrano-3.14.1 +++ b/metadata/md5-cache/dev-ruby/capistrano-3.14.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capistrano-3.14.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=85e18d4a93fd235b917192b80bbaf7ed diff --git a/metadata/md5-cache/dev-ruby/capybara-3.31.0 b/metadata/md5-cache/dev-ruby/capybara-3.31.0 index 81abf2188441..e19626d29f4b 100644 --- a/metadata/md5-cache/dev-ruby/capybara-3.31.0 +++ b/metadata/md5-cache/dev-ruby/capybara-3.31.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capybara-3.31.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=10c63ce1839bc039a5464da2823808e6 diff --git a/metadata/md5-cache/dev-ruby/capybara-3.32.2 b/metadata/md5-cache/dev-ruby/capybara-3.32.2 index 15b0ec750230..69b8ff7a0ab1 100644 --- a/metadata/md5-cache/dev-ruby/capybara-3.32.2 +++ b/metadata/md5-cache/dev-ruby/capybara-3.32.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capybara-3.32.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=10c63ce1839bc039a5464da2823808e6 diff --git a/metadata/md5-cache/dev-ruby/capybara-3.33.0 b/metadata/md5-cache/dev-ruby/capybara-3.33.0 index 5179ffb94a2c..6730bcb37bfe 100644 --- a/metadata/md5-cache/dev-ruby/capybara-3.33.0 +++ b/metadata/md5-cache/dev-ruby/capybara-3.33.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/capybara-3.33.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=613694b7b7cd4ebe766562b73f2728d9 diff --git a/metadata/md5-cache/dev-ruby/certificate_authority-0.1.6-r2 b/metadata/md5-cache/dev-ruby/certificate_authority-0.1.6-r2 index 1ec017d43a1d..0bef32f3a2d0 100644 --- a/metadata/md5-cache/dev-ruby/certificate_authority-0.1.6-r2 +++ b/metadata/md5-cache/dev-ruby/certificate_authority-0.1.6-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/certificate_authority-0.1.6.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7404fde498c58295dbf6a4281f477419 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 665e41b4bc33..426cdec757fb 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cdb261b0aaf8bd38706262b6e8d10ce0 diff --git a/metadata/md5-cache/dev-ruby/charlock_holmes-0.7.7 b/metadata/md5-cache/dev-ruby/charlock_holmes-0.7.7 index cae4c458067c..200f87120b5b 100644 --- a/metadata/md5-cache/dev-ruby/charlock_holmes-0.7.7 +++ b/metadata/md5-cache/dev-ruby/charlock_holmes-0.7.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=877e26f8c23a863261b475ced20cddb6 diff --git a/metadata/md5-cache/dev-ruby/childlabor-0.0.3-r1 b/metadata/md5-cache/dev-ruby/childlabor-0.0.3-r1 index 2fdbc717d621..6a69059ee847 100644 --- a/metadata/md5-cache/dev-ruby/childlabor-0.0.3-r1 +++ b/metadata/md5-cache/dev-ruby/childlabor-0.0.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=bf55ad83d074f24f1d820cf914047ed0 diff --git a/metadata/md5-cache/dev-ruby/childprocess-3.0.0 b/metadata/md5-cache/dev-ruby/childprocess-3.0.0 index 28ef491b4f4d..29dae41ab85e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d1464306d3acba90a23b84ae209ea066 diff --git a/metadata/md5-cache/dev-ruby/childprocess-4.0.0 b/metadata/md5-cache/dev-ruby/childprocess-4.0.0 index 7351c72b5c6c..2ebb80a2f59e 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/childprocess-4.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=74bbda098474715923a79f442c610c8e diff --git a/metadata/md5-cache/dev-ruby/chronic-0.10.2 b/metadata/md5-cache/dev-ruby/chronic-0.10.2 index 2eb5370030f0..d59fdd0f347c 100644 --- a/metadata/md5-cache/dev-ruby/chronic-0.10.2 +++ b/metadata/md5-cache/dev-ruby/chronic-0.10.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/chronic-0.10.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2292760890cecdbf5806e1e2ff061510 diff --git a/metadata/md5-cache/dev-ruby/chunky_png-1.3.11 b/metadata/md5-cache/dev-ruby/chunky_png-1.3.11 index 754489673321..40e6954e04e4 100644 --- a/metadata/md5-cache/dev-ruby/chunky_png-1.3.11 +++ b/metadata/md5-cache/dev-ruby/chunky_png-1.3.11 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/chunky_png-1.3.11.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=640b027303fe9699355701c0ccca724d diff --git a/metadata/md5-cache/dev-ruby/chunky_png-1.3.12 b/metadata/md5-cache/dev-ruby/chunky_png-1.3.12 index 942c5589a762..d09f5ff67c74 100644 --- a/metadata/md5-cache/dev-ruby/chunky_png-1.3.12 +++ b/metadata/md5-cache/dev-ruby/chunky_png-1.3.12 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/chunky_png-1.3.12.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=95febf380b3039bcfdc60bb639689acc diff --git a/metadata/md5-cache/dev-ruby/chunky_png-1.3.13 b/metadata/md5-cache/dev-ruby/chunky_png-1.3.13 index bc4eba85232e..bc8c070c898d 100644 --- a/metadata/md5-cache/dev-ruby/chunky_png-1.3.13 +++ b/metadata/md5-cache/dev-ruby/chunky_png-1.3.13 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/chunky_png-1.3.13.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=95febf380b3039bcfdc60bb639689acc 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 13eb9f902bb0..2f013fb14ea8 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=95febf380b3039bcfdc60bb639689acc diff --git a/metadata/md5-cache/dev-ruby/cinch-2.3.4 b/metadata/md5-cache/dev-ruby/cinch-2.3.4 index e1c245f4427e..db0fe80fc763 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cinch-2.3.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 861f755eeddf..55390cc88d8b 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 798db14eda65..3801d10d9a7c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0fee330e349709e77ec8f16c9d84ff05 diff --git a/metadata/md5-cache/dev-ruby/cliver-0.3.2 b/metadata/md5-cache/dev-ruby/cliver-0.3.2 index 8eb43df76417..c5613f074d75 100644 --- a/metadata/md5-cache/dev-ruby/cliver-0.3.2 +++ b/metadata/md5-cache/dev-ruby/cliver-0.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cliver-0.3.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a75893d1e360fd7dc5ec1dc2a9eb3573 diff --git a/metadata/md5-cache/dev-ruby/cmdparse-3.0.6 b/metadata/md5-cache/dev-ruby/cmdparse-3.0.6 index 46b708203d4e..de08d84cc146 100644 --- a/metadata/md5-cache/dev-ruby/cmdparse-3.0.6 +++ b/metadata/md5-cache/dev-ruby/cmdparse-3.0.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/cmdparse-3.0.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=da6d138d47a4e9a659f6806434c56c04 diff --git a/metadata/md5-cache/dev-ruby/coderay-1.1.2 b/metadata/md5-cache/dev-ruby/coderay-1.1.2 index a9bb16628db8..71d7ff8cc442 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4b61633a5b024e284892dbc94f39a096 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 3a41ab1845e2..f5be9936c547 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fb1f3e7c6f6438fc0628a0935a3b9a5f diff --git a/metadata/md5-cache/dev-ruby/coercible-1.0.0 b/metadata/md5-cache/dev-ruby/coercible-1.0.0 index 4c7246969ecd..73962021b10b 100644 --- a/metadata/md5-cache/dev-ruby/coercible-1.0.0 +++ b/metadata/md5-cache/dev-ruby/coercible-1.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=c53e72b88232e68ae93594658c1d7adb diff --git a/metadata/md5-cache/dev-ruby/coffee-rails-5.0.0 b/metadata/md5-cache/dev-ruby/coffee-rails-5.0.0 index c0ee9ba8515d..64be47556c70 100644 --- a/metadata/md5-cache/dev-ruby/coffee-rails-5.0.0 +++ b/metadata/md5-cache/dev-ruby/coffee-rails-5.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=3e412f6989725da8d00cce7e046109ae 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 4007d2c53a78..ff1f45553227 100644 --- a/metadata/md5-cache/dev-ruby/coffee-script-2.4.1 +++ b/metadata/md5-cache/dev-ruby/coffee-script-2.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/coffee-script-2.4.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=4cec7fa3009c74f170fec25ed4573e0d diff --git a/metadata/md5-cache/dev-ruby/coffee-script-source-1.12.2 b/metadata/md5-cache/dev-ruby/coffee-script-source-1.12.2 index aa309072f334..54a792d60138 100644 --- a/metadata/md5-cache/dev-ruby/coffee-script-source-1.12.2 +++ b/metadata/md5-cache/dev-ruby/coffee-script-source-1.12.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/coffee-script-source-1.12.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=55823d339c66d9f0a442773b8cae2d48 diff --git a/metadata/md5-cache/dev-ruby/color-1.8 b/metadata/md5-cache/dev-ruby/color-1.8 index 3d2ebf6318d9..fb11c403b6a7 100644 --- a/metadata/md5-cache/dev-ruby/color-1.8 +++ b/metadata/md5-cache/dev-ruby/color-1.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=74f3fe0f7bb124d882cafa34b383c0eb diff --git a/metadata/md5-cache/dev-ruby/colorator-1.1.0 b/metadata/md5-cache/dev-ruby/colorator-1.1.0 index b05df339aeaf..e767b8291d17 100644 --- a/metadata/md5-cache/dev-ruby/colorator-1.1.0 +++ b/metadata/md5-cache/dev-ruby/colorator-1.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1744fbb0765ead41a8919bd515d14aa3 diff --git a/metadata/md5-cache/dev-ruby/colored-1.2 b/metadata/md5-cache/dev-ruby/colored-1.2 index 92839ff9757c..b6bd0e2f639d 100644 --- a/metadata/md5-cache/dev-ruby/colored-1.2 +++ b/metadata/md5-cache/dev-ruby/colored-1.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/colored-1.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=58c15157bff5a76965a8d95cf6e0f17f diff --git a/metadata/md5-cache/dev-ruby/colored2-3.1.2 b/metadata/md5-cache/dev-ruby/colored2-3.1.2 index 277788a659d3..9b1f8d949cdd 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ee7ccd2b7b3c1f4935ca038c38732f1f diff --git a/metadata/md5-cache/dev-ruby/colorize-0.8.1 b/metadata/md5-cache/dev-ruby/colorize-0.8.1 index 4ea53fd7a09d..51487c3ffd8b 100644 --- a/metadata/md5-cache/dev-ruby/colorize-0.8.1 +++ b/metadata/md5-cache/dev-ruby/colorize-0.8.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/colorize-0.8.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=071f35da5f631ebebf0d937f582c3b62 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 e4567b69dd6e..eadce5f85785 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/colorize-0.8.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b5371484f66456f964a03eb7060a3d59 diff --git a/metadata/md5-cache/dev-ruby/columnize-0.9.0 b/metadata/md5-cache/dev-ruby/columnize-0.9.0 index 1480f98b3c86..db4ba75d1a8c 100644 --- a/metadata/md5-cache/dev-ruby/columnize-0.9.0 +++ b/metadata/md5-cache/dev-ruby/columnize-0.9.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/columnize-0.9.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f6ceaa949ffbd652a47ae551ba4387c1 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 444d5560831f..b917f06e60f9 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/columnize-0.9.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dd4b8fe6e533eeca7d9e6025575fe292 diff --git a/metadata/md5-cache/dev-ruby/combustion-1.3.0 b/metadata/md5-cache/dev-ruby/combustion-1.3.0 index e9fafb41e7be..9d26702b5946 100644 --- a/metadata/md5-cache/dev-ruby/combustion-1.3.0 +++ b/metadata/md5-cache/dev-ruby/combustion-1.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/combustion-1.3.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=db86248cf0ed4a6d90c83745d4637515 diff --git a/metadata/md5-cache/dev-ruby/combustion-1.3.1 b/metadata/md5-cache/dev-ruby/combustion-1.3.1 index 671b08783249..a63c2718d469 100644 --- a/metadata/md5-cache/dev-ruby/combustion-1.3.1 +++ b/metadata/md5-cache/dev-ruby/combustion-1.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/combustion-1.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=db86248cf0ed4a6d90c83745d4637515 diff --git a/metadata/md5-cache/dev-ruby/commander-4.5.2 b/metadata/md5-cache/dev-ruby/commander-4.5.2 index f7c8ba125024..32bea9247be9 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=61e3875443a7d1268a2020cb5c171f7f diff --git a/metadata/md5-cache/dev-ruby/compass-1.0.3-r1 b/metadata/md5-cache/dev-ruby/compass-1.0.3-r1 index 7b98b5680cb9..96c2eaeb8f3c 100644 --- a/metadata/md5-cache/dev-ruby/compass-1.0.3-r1 +++ b/metadata/md5-cache/dev-ruby/compass-1.0.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/compass-1.0.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=04101b1da47f3916c993c680ab9f8136 diff --git a/metadata/md5-cache/dev-ruby/compass-core-1.0.3-r1 b/metadata/md5-cache/dev-ruby/compass-core-1.0.3-r1 index 1c8f33c9b9e2..87d0cf9a9757 100644 --- a/metadata/md5-cache/dev-ruby/compass-core-1.0.3-r1 +++ b/metadata/md5-cache/dev-ruby/compass-core-1.0.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://rubygems.org/gems/compass-core-1.0.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=08ed453987a510ace56279c3293fce37 diff --git a/metadata/md5-cache/dev-ruby/compass-import-once-1.0.5 b/metadata/md5-cache/dev-ruby/compass-import-once-1.0.5 index bf145dd67398..4e99acfeeb1e 100644 --- a/metadata/md5-cache/dev-ruby/compass-import-once-1.0.5 +++ b/metadata/md5-cache/dev-ruby/compass-import-once-1.0.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://rubygems.org/gems/compass-import-once-1.0.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=91451128971e8727ff3fb60b16603c3d diff --git a/metadata/md5-cache/dev-ruby/concurrent-ruby-1.0.5 b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.0.5 index 9b4ccf06820f..ac1b47621ab2 100644 --- a/metadata/md5-cache/dev-ruby/concurrent-ruby-1.0.5 +++ b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.0.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ruby-concurrency/concurrent-ruby/archive/v1.0.5.tar.gz -> concurrent-ruby-1.0.5.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=b5b90c6461cc8a43c215ddeb94c8d1af diff --git a/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.7 b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.7 index b9ab39339105..0506fbdba8b0 100644 --- a/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.7 +++ b/metadata/md5-cache/dev-ruby/concurrent-ruby-1.1.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ruby-concurrency/concurrent-ruby/archive/v1.1.7.tar.gz -> concurrent-ruby-1.1.7.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1f115725a6849e3ddf94ac249c103b76 diff --git a/metadata/md5-cache/dev-ruby/connection_pool-2.2.2 b/metadata/md5-cache/dev-ruby/connection_pool-2.2.2 index 3f38d9d7fffc..34de7a8199a7 100644 --- a/metadata/md5-cache/dev-ruby/connection_pool-2.2.2 +++ b/metadata/md5-cache/dev-ruby/connection_pool-2.2.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/connection_pool-2.2.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a38ff7e69879bd82e2ae488e457416c8 diff --git a/metadata/md5-cache/dev-ruby/connection_pool-2.2.3 b/metadata/md5-cache/dev-ruby/connection_pool-2.2.3 index 0866dc5cd6dd..199285c011bd 100644 --- a/metadata/md5-cache/dev-ruby/connection_pool-2.2.3 +++ b/metadata/md5-cache/dev-ruby/connection_pool-2.2.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/connection_pool-2.2.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=65319e622d60774faab00a2a5856a8ef diff --git a/metadata/md5-cache/dev-ruby/contracts-0.16.0 b/metadata/md5-cache/dev-ruby/contracts-0.16.0 index fa2a44cb8962..2125879b46b0 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cef2e60aee1a747a6d74cf22ebbe964b diff --git a/metadata/md5-cache/dev-ruby/coolio-1.6.0 b/metadata/md5-cache/dev-ruby/coolio-1.6.0 index ead03f8c5551..68e19dbd61c2 100644 --- a/metadata/md5-cache/dev-ruby/coolio-1.6.0 +++ b/metadata/md5-cache/dev-ruby/coolio-1.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cool.io-1.6.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e716147bcafbaff72c9c3969067153e3 diff --git a/metadata/md5-cache/dev-ruby/coolio-1.7.0 b/metadata/md5-cache/dev-ruby/coolio-1.7.0 index 5a5fabdb4c9e..1db12e91f0ec 100644 --- a/metadata/md5-cache/dev-ruby/coolio-1.7.0 +++ b/metadata/md5-cache/dev-ruby/coolio-1.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cool.io-1.7.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=40dc4a547375da0e08a88766b9a1fc0f diff --git a/metadata/md5-cache/dev-ruby/countdownlatch-1.0.0-r1 b/metadata/md5-cache/dev-ruby/countdownlatch-1.0.0-r1 index cf7001a46037..f237afb351ea 100644 --- a/metadata/md5-cache/dev-ruby/countdownlatch-1.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/countdownlatch-1.0.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/countdownlatch-1.0.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2a97b1cc7e61c82964ab49888d5396ac diff --git a/metadata/md5-cache/dev-ruby/crack-0.4.3-r2 b/metadata/md5-cache/dev-ruby/crack-0.4.3-r2 index fd6b0c17e246..719fd806af80 100644 --- a/metadata/md5-cache/dev-ruby/crack-0.4.3-r2 +++ b/metadata/md5-cache/dev-ruby/crack-0.4.3-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/crack-0.4.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=55cd3d222e3ae136848b9c2b11389883 diff --git a/metadata/md5-cache/dev-ruby/crack-0.4.4 b/metadata/md5-cache/dev-ruby/crack-0.4.4 index d9c738eca479..382625e7d9ec 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c73e8af1bf07b38f981dd1d9c70889bf diff --git a/metadata/md5-cache/dev-ruby/crass-1.0.6 b/metadata/md5-cache/dev-ruby/crass-1.0.6 index d57e5464844c..8f33add08712 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=24fa241739251fddb192ec286062966c diff --git a/metadata/md5-cache/dev-ruby/creole-0.5.0 b/metadata/md5-cache/dev-ruby/creole-0.5.0 index 7d7c9d1d5d89..5dad8e12ea81 100644 --- a/metadata/md5-cache/dev-ruby/creole-0.5.0 +++ b/metadata/md5-cache/dev-ruby/creole-0.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=bb56825115b4e3df9fb587c2ba164a06 diff --git a/metadata/md5-cache/dev-ruby/cri-2.15.10 b/metadata/md5-cache/dev-ruby/cri-2.15.10 index f4aa2063cede..0a407543feaa 100644 --- a/metadata/md5-cache/dev-ruby/cri-2.15.10 +++ b/metadata/md5-cache/dev-ruby/cri-2.15.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cri-2.15.10.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=59a8acc51518c5b466c25cd9f334a888 diff --git a/metadata/md5-cache/dev-ruby/css_parser-1.7.1 b/metadata/md5-cache/dev-ruby/css_parser-1.7.1 index fe234ed7f2f6..b0d8e0c9e211 100644 --- a/metadata/md5-cache/dev-ruby/css_parser-1.7.1 +++ b/metadata/md5-cache/dev-ruby/css_parser-1.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/premailer/css_parser/archive/v1.7.1.tar.gz -> css_parser-1.7.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=157314cc40e7a95ed2b723b1398a4f65 diff --git a/metadata/md5-cache/dev-ruby/curb-0.9.10 b/metadata/md5-cache/dev-ruby/curb-0.9.10 index 29ac1b0c2f1c..877b52df22bc 100644 --- a/metadata/md5-cache/dev-ruby/curb-0.9.10 +++ b/metadata/md5-cache/dev-ruby/curb-0.9.10 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/curb-0.9.10.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a6769835981f62adc90eb35ce2339b30 diff --git a/metadata/md5-cache/dev-ruby/curb-0.9.11 b/metadata/md5-cache/dev-ruby/curb-0.9.11 index 8f68185b8cb3..a38c271a5388 100644 --- a/metadata/md5-cache/dev-ruby/curb-0.9.11 +++ b/metadata/md5-cache/dev-ruby/curb-0.9.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/curb-0.9.11.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=57d825881155b89e2e0f63516408788d diff --git a/metadata/md5-cache/dev-ruby/curses-1.3.2 b/metadata/md5-cache/dev-ruby/curses-1.3.2 index e9292ea529bc..6ae26a8154b5 100644 --- a/metadata/md5-cache/dev-ruby/curses-1.3.2 +++ b/metadata/md5-cache/dev-ruby/curses-1.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/curses-1.3.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=533a158144b50293ec706542d30d0e10 diff --git a/metadata/md5-cache/dev-ruby/d3_rails-4.1.1 b/metadata/md5-cache/dev-ruby/d3_rails-4.1.1 index 92318e7abbd5..346ebfd55793 100644 --- a/metadata/md5-cache/dev-ruby/d3_rails-4.1.1 +++ b/metadata/md5-cache/dev-ruby/d3_rails-4.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/d3_rails-4.1.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=df5b90611e68f0c5e93e466329f9881f diff --git a/metadata/md5-cache/dev-ruby/daemon_controller-1.2.0-r1 b/metadata/md5-cache/dev-ruby/daemon_controller-1.2.0-r1 index a513b1f0a63e..2f08014245fa 100644 --- a/metadata/md5-cache/dev-ruby/daemon_controller-1.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/daemon_controller-1.2.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=4ca1a7fd3a12aec5d628b2db6ab75d2d diff --git a/metadata/md5-cache/dev-ruby/daemons-1.3.1 b/metadata/md5-cache/dev-ruby/daemons-1.3.1 index 87c6fce0ce56..c9c5a65f8601 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0a4e7b54ba02d508f7b5723e50a7bcb1 diff --git a/metadata/md5-cache/dev-ruby/dalli-2.7.10 b/metadata/md5-cache/dev-ruby/dalli-2.7.10 index b04c46dea220..84d59160f5ab 100644 --- a/metadata/md5-cache/dev-ruby/dalli-2.7.10 +++ b/metadata/md5-cache/dev-ruby/dalli-2.7.10 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/petergoldstein/dalli/archive/v2.7.10.tar.gz -> dalli-2.7.10.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b318a410c88749102d593c93ab85d6a2 diff --git a/metadata/md5-cache/dev-ruby/dalli-2.7.10-r1 b/metadata/md5-cache/dev-ruby/dalli-2.7.10-r1 index b9cf2050c693..af4db0fb0ed6 100644 --- a/metadata/md5-cache/dev-ruby/dalli-2.7.10-r1 +++ b/metadata/md5-cache/dev-ruby/dalli-2.7.10-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/petergoldstein/dalli/archive/v2.7.10.tar.gz -> dalli-2.7.10.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=170a95dd25895d44029c3caa6733274a diff --git a/metadata/md5-cache/dev-ruby/dalli-2.7.11 b/metadata/md5-cache/dev-ruby/dalli-2.7.11 index ad91c3fcce26..4da2bb20a084 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a60bdb957f9e90c06cc161ed29237036 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 36c7e3a67266..8c5559f2c98f 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/database_cleaner-1.7.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6f061a89b1de3c48d93083df64e06662 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 149375d90142..7d015ac4e948 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9104add66ce12e0bddc1c0ed492fecb8 diff --git a/metadata/md5-cache/dev-ruby/dbf-4.1.2 b/metadata/md5-cache/dev-ruby/dbf-4.1.2 index 09771e6d7b4e..04d3c0c6bcef 100644 --- a/metadata/md5-cache/dev-ruby/dbf-4.1.2 +++ b/metadata/md5-cache/dev-ruby/dbf-4.1.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dbf-4.1.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=26681099194ff860dd159f5520b75324 diff --git a/metadata/md5-cache/dev-ruby/dbf-4.1.3 b/metadata/md5-cache/dev-ruby/dbf-4.1.3 index e911999b7026..16de2f393d15 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dbf-4.1.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0d14013d768e270711374b4a84b3f297 diff --git a/metadata/md5-cache/dev-ruby/ddmemoize-1.0.0 b/metadata/md5-cache/dev-ruby/ddmemoize-1.0.0 index 6f6cb43bf12f..c6368cb823ac 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a833a03c39e1040a2e3015fe07cc84c7 diff --git a/metadata/md5-cache/dev-ruby/ddmetrics-1.0.1 b/metadata/md5-cache/dev-ruby/ddmetrics-1.0.1 index cd558ce9fb9c..a2dd7df3feb6 100644 --- a/metadata/md5-cache/dev-ruby/ddmetrics-1.0.1 +++ b/metadata/md5-cache/dev-ruby/ddmetrics-1.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/ddmetrics-1.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a239324c443e1f014bf6fcae4dd3a0cf diff --git a/metadata/md5-cache/dev-ruby/ddplugin-1.0.2 b/metadata/md5-cache/dev-ruby/ddplugin-1.0.2 index 8ae986ee5b3c..0e8635edcf61 100644 --- a/metadata/md5-cache/dev-ruby/ddplugin-1.0.2 +++ b/metadata/md5-cache/dev-ruby/ddplugin-1.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/ddplugin-1.0.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a0e5826c351971dbb76e239510a0cb80 diff --git a/metadata/md5-cache/dev-ruby/debug_inspector-0.0.3 b/metadata/md5-cache/dev-ruby/debug_inspector-0.0.3 index 7661c851342f..cf8596895dfa 100644 --- a/metadata/md5-cache/dev-ruby/debug_inspector-0.0.3 +++ b/metadata/md5-cache/dev-ruby/debug_inspector-0.0.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/debug_inspector-0.0.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8f4997e4c840f347d12b8bc39ef550a9 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 00280afa7bdc..ac67193eb5c4 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/deep_merge-1.2.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=77b1a192c885c4add7b75648e1d8b809 diff --git a/metadata/md5-cache/dev-ruby/delayer-1.1.2 b/metadata/md5-cache/dev-ruby/delayer-1.1.2 index d46491031c4c..d4e763b9524c 100644 --- a/metadata/md5-cache/dev-ruby/delayer-1.1.2 +++ b/metadata/md5-cache/dev-ruby/delayer-1.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/delayer-1.1.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4e2c3a677013fea82a64a35e7155a744 diff --git a/metadata/md5-cache/dev-ruby/delayer-deferred-2.1.3 b/metadata/md5-cache/dev-ruby/delayer-deferred-2.1.3 index 31dcd7fd9a75..bc89713c18fa 100644 --- a/metadata/md5-cache/dev-ruby/delayer-deferred-2.1.3 +++ b/metadata/md5-cache/dev-ruby/delayer-deferred-2.1.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/delayer-deferred-2.1.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9f378d015a4b8d2f28d2520e187afe80 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 acad5be11f50..e80594b6b698 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/delayer-deferred-2.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8869b2fe9401d1e7672dfe4db00bc1fc diff --git a/metadata/md5-cache/dev-ruby/dependor-1.0.1 b/metadata/md5-cache/dev-ruby/dependor-1.0.1 index 9651c39d8dd5..0707c24703dd 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c71826dca46919183ddecda494de50ea diff --git a/metadata/md5-cache/dev-ruby/deprecated-3.0.1-r2 b/metadata/md5-cache/dev-ruby/deprecated-3.0.1-r2 index 2f5a48d53431..ff62c439d153 100644 --- a/metadata/md5-cache/dev-ruby/deprecated-3.0.1-r2 +++ b/metadata/md5-cache/dev-ruby/deprecated-3.0.1-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/deprecated-3.0.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=9f7a90f1525686c1677020baf8e37a60 diff --git a/metadata/md5-cache/dev-ruby/descendants_tracker-0.0.4 b/metadata/md5-cache/dev-ruby/descendants_tracker-0.0.4 index e2fcf89b0fa5..ff37d51e251e 100644 --- a/metadata/md5-cache/dev-ruby/descendants_tracker-0.0.4 +++ b/metadata/md5-cache/dev-ruby/descendants_tracker-0.0.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/descendants_tracker-0.0.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=298be84a6e43af95685dfe7930b2ac8b diff --git a/metadata/md5-cache/dev-ruby/did_you_mean-1.2.1 b/metadata/md5-cache/dev-ruby/did_you_mean-1.2.1 index 6df5efa68109..ffcdeb49b7df 100644 --- a/metadata/md5-cache/dev-ruby/did_you_mean-1.2.1 +++ b/metadata/md5-cache/dev-ruby/did_you_mean-1.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2.5 SRC_URI=https://rubygems.org/gems/did_you_mean-1.2.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f032dfc1657d112bb8896ed3f1a51195 diff --git a/metadata/md5-cache/dev-ruby/did_you_mean-1.3.1 b/metadata/md5-cache/dev-ruby/did_you_mean-1.3.1 index 68ae28dcc71e..1ab92a01a307 100644 --- a/metadata/md5-cache/dev-ruby/did_you_mean-1.3.1 +++ b/metadata/md5-cache/dev-ruby/did_you_mean-1.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2.6 SRC_URI=https://rubygems.org/gems/did_you_mean-1.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=11fb5d789d5382dca0144549bd84e3f8 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 096f10a74201..2a2f08b17e47 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=aa64b82448e357fdb7614d43c998035c diff --git a/metadata/md5-cache/dev-ruby/diff-lcs-1.3 b/metadata/md5-cache/dev-ruby/diff-lcs-1.3 index 9e3929d36804..ff7e7235fb2a 100644 --- a/metadata/md5-cache/dev-ruby/diff-lcs-1.3 +++ b/metadata/md5-cache/dev-ruby/diff-lcs-1.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/diff-lcs-1.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=bb575266644ca70291104f7e50b70da3 diff --git a/metadata/md5-cache/dev-ruby/diff-lcs-1.4 b/metadata/md5-cache/dev-ruby/diff-lcs-1.4 index 9d42a3c754d3..4052e935ae6d 100644 --- a/metadata/md5-cache/dev-ruby/diff-lcs-1.4 +++ b/metadata/md5-cache/dev-ruby/diff-lcs-1.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/diff-lcs-1.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=233f3cf60a349be7cee0b65033e05f03 diff --git a/metadata/md5-cache/dev-ruby/diff-lcs-1.4.1 b/metadata/md5-cache/dev-ruby/diff-lcs-1.4.1 index 4e6cfa7ef29c..38e51514f317 100644 --- a/metadata/md5-cache/dev-ruby/diff-lcs-1.4.1 +++ b/metadata/md5-cache/dev-ruby/diff-lcs-1.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/diff-lcs-1.4.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=233f3cf60a349be7cee0b65033e05f03 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 eee882b57323..9447d8ff9ead 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/diff-lcs-1.4.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ab65cae3bdae0156a3798476599a77a0 diff --git a/metadata/md5-cache/dev-ruby/diva-1.0.2 b/metadata/md5-cache/dev-ruby/diva-1.0.2 index 3c4d7ad29c23..5fdbe286c4d3 100644 --- a/metadata/md5-cache/dev-ruby/diva-1.0.2 +++ b/metadata/md5-cache/dev-ruby/diva-1.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/diva-1.0.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ef401df41c6aa3769a82ab392a13f779 diff --git a/metadata/md5-cache/dev-ruby/diva-1.0.2-r1 b/metadata/md5-cache/dev-ruby/diva-1.0.2-r1 index 47e29025377c..07d892f4c702 100644 --- a/metadata/md5-cache/dev-ruby/diva-1.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/diva-1.0.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c87e52e66a682b176d27a589773295e0 diff --git a/metadata/md5-cache/dev-ruby/dnsruby-1.61.2 b/metadata/md5-cache/dev-ruby/dnsruby-1.61.2 index 646bf8b45bec..9251e6beb321 100644 --- a/metadata/md5-cache/dev-ruby/dnsruby-1.61.2 +++ b/metadata/md5-cache/dev-ruby/dnsruby-1.61.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dnsruby-1.61.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e2d63a68f7d060f2c312a77596d50f1d diff --git a/metadata/md5-cache/dev-ruby/dnsruby-1.61.3 b/metadata/md5-cache/dev-ruby/dnsruby-1.61.3 index 023b7ec23b34..75e25402b379 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dnsruby-1.61.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=11f04cf514c8ed91c69e7fb2e7fe57eb diff --git a/metadata/md5-cache/dev-ruby/docile-1.3.2 b/metadata/md5-cache/dev-ruby/docile-1.3.2 index 1440aae62158..a4a7c4130a26 100644 --- a/metadata/md5-cache/dev-ruby/docile-1.3.2 +++ b/metadata/md5-cache/dev-ruby/docile-1.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ms-ati/docile/archive/v1.3.2.tar.gz -> docile-1.3.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6ed128c9075dc91f93e35c93ce43eeea diff --git a/metadata/md5-cache/dev-ruby/domain_name-0.5.20180417 b/metadata/md5-cache/dev-ruby/domain_name-0.5.20180417 index b75bfdf3fe0c..ccff4c2c4889 100644 --- a/metadata/md5-cache/dev-ruby/domain_name-0.5.20180417 +++ b/metadata/md5-cache/dev-ruby/domain_name-0.5.20180417 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/domain_name-0.5.20180417.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5b692911214ee7ee004355a399436032 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 2ebe5a5b1448..cc1046bd6d4b 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/domain_name-0.5.20190701.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2fa953c1c77e908fde5e8d57fa972b63 diff --git a/metadata/md5-cache/dev-ruby/dotenv-2.7.6 b/metadata/md5-cache/dev-ruby/dotenv-2.7.6 index ca695a923006..5df87c5ede9c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=67eca428ce70cb35dec163270ecbf2e2 diff --git a/metadata/md5-cache/dev-ruby/duktape-rb-2.3.0.0-r2 b/metadata/md5-cache/dev-ruby/duktape-rb-2.3.0.0-r2 index f7a215cdf5f8..81e78d2ad5c5 100644 --- a/metadata/md5-cache/dev-ruby/duktape-rb-2.3.0.0-r2 +++ b/metadata/md5-cache/dev-ruby/duktape-rb-2.3.0.0-r2 @@ -1,16 +1,16 @@ BDEPEND=ruby_targets_ruby25? ( dev-ruby/pkg-config[ruby_targets_ruby25(-)] dev-ruby/rake-compiler[ruby_targets_ruby25(-)] dev-ruby/sdoc[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/pkg-config[ruby_targets_ruby26(-)] dev-ruby/rake-compiler[ruby_targets_ruby26(-)] dev-ruby/sdoc[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/pkg-config[ruby_targets_ruby27(-)] dev-ruby/rake-compiler[ruby_targets_ruby27(-)] dev-ruby/sdoc[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-lang/duktape ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DEPEND=dev-lang/duktape:= ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) DESCRIPTION=Ruby bindings to the Duktape JavaScript interpeter EAPI=7 HOMEPAGE=https://github.com/judofyr/duktape.rb IUSE=ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test KEYWORDS=~amd64 ppc LICENSE=MIT -RDEPEND=dev-lang/duktape ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +RDEPEND=dev-lang/duktape:= ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=75200a4d4a7f38520932ed5b862397f7 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=7473914c8bd63bbb6d278ddf47fd56b0 diff --git a/metadata/md5-cache/dev-ruby/dust-0.1.7-r2 b/metadata/md5-cache/dev-ruby/dust-0.1.7-r2 index 40df396e53e3..9d4138926400 100644 --- a/metadata/md5-cache/dev-ruby/dust-0.1.7-r2 +++ b/metadata/md5-cache/dev-ruby/dust-0.1.7-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/dust-0.1.7.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=4960ff6f82df798c89ed43ffd4cb7ab8 diff --git a/metadata/md5-cache/dev-ruby/ecma-re-validator-0.2.0 b/metadata/md5-cache/dev-ruby/ecma-re-validator-0.2.0 index 9a7098d71454..155258edc631 100644 --- a/metadata/md5-cache/dev-ruby/ecma-re-validator-0.2.0 +++ b/metadata/md5-cache/dev-ruby/ecma-re-validator-0.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ecma-re-validator-0.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=776a7e2ce11ebc083102237eeeadcdcf diff --git a/metadata/md5-cache/dev-ruby/ecma-re-validator-0.2.1 b/metadata/md5-cache/dev-ruby/ecma-re-validator-0.2.1 index 519719c03ba3..202aec500dd9 100644 --- a/metadata/md5-cache/dev-ruby/ecma-re-validator-0.2.1 +++ b/metadata/md5-cache/dev-ruby/ecma-re-validator-0.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ecma-re-validator-0.2.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6a63e5b6ed84999d7d79c34adda70f64 diff --git a/metadata/md5-cache/dev-ruby/ed25519-1.2.4 b/metadata/md5-cache/dev-ruby/ed25519-1.2.4 index 504d5c0b4a02..d816689b7496 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8f1ccf290bfdd64e3cada52efe7efc28 diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-6.8.0 b/metadata/md5-cache/dev-ruby/elasticsearch-6.8.0 index c1aca87e765b..479354774563 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-6.8.0 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-6.8.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test SLOT=6 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.0.tar.gz -> elasticsearch-ruby-6.8.0.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=affd8182ee7aefa4684c12298664a4a8 diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-6.8.1 b/metadata/md5-cache/dev-ruby/elasticsearch-6.8.1 index e5a5405fbf64..5ee5ea8a3d48 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=21a4977bce141e2abbdee5c84cdd913e diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-6.8.2 b/metadata/md5-cache/dev-ruby/elasticsearch-6.8.2 index 19bbe70e338b..1de12058399d 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-6.8.2 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-6.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test SLOT=6 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.2.tar.gz -> elasticsearch-ruby-6.8.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=21a4977bce141e2abbdee5c84cdd913e diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.0 b/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.0 index aa9bdb5f8aa8..68a435ef127f 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.0 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.0.tar.gz -> elasticsearch-ruby-6.8.0.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4abc425e6b6e34b474d6046a1f3c5e0a 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 8ee35a17d90d..f4c708b5e58d 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9ff30e40de921ec348dac75eb7bd970e diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.2 b/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.2 index 0966bf360ca4..10d2bc12b537 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.2 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-api-6.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.2.tar.gz -> elasticsearch-ruby-6.8.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=38c33ebec7eb0cbad17f73b0388d7af2 diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.0 b/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.0 index 536f7411d0e3..d1ab7c98fdec 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.0 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.0.tar.gz -> elasticsearch-ruby-6.8.0.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=631ee35c9fbb1c0850194259797df689 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 6a43675db6ec..0b09df3d982f 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e386fb4bcebbcadd884bf1a1753871b3 diff --git a/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.2 b/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.2 index 750993aa982b..ec033c8fb999 100644 --- a/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.2 +++ b/metadata/md5-cache/dev-ruby/elasticsearch-transport-6.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://github.com/elastic/elasticsearch-ruby/archive/v6.8.2.tar.gz -> elasticsearch-ruby-6.8.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=576c9d49e2eb5310115e39bd94da7798 diff --git a/metadata/md5-cache/dev-ruby/em-websocket-0.5.1 b/metadata/md5-cache/dev-ruby/em-websocket-0.5.1 index 53abca2797a9..d366284f2f99 100644 --- a/metadata/md5-cache/dev-ruby/em-websocket-0.5.1 +++ b/metadata/md5-cache/dev-ruby/em-websocket-0.5.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/igrigorik/em-websocket/archive/v0.5.1.tar.gz -> em-websocket-0.5.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3052eda4262e80a9dd0c70bc76480ffb 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 299db81be9cf..40fe58678d00 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f5ea8b1059e8a2dbca66b441aca8ae52 diff --git a/metadata/md5-cache/dev-ruby/equalizer-0.0.11 b/metadata/md5-cache/dev-ruby/equalizer-0.0.11 index 9af5d3805780..159e28c427ce 100644 --- a/metadata/md5-cache/dev-ruby/equalizer-0.0.11 +++ b/metadata/md5-cache/dev-ruby/equalizer-0.0.11 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/equalizer-0.0.11.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=dd3481b76e228655a835c9fca38bb4ec diff --git a/metadata/md5-cache/dev-ruby/equatable-0.6.1 b/metadata/md5-cache/dev-ruby/equatable-0.6.1 index d57ae12c1aa8..bf958e1551d5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2cb0e50fb6c328f032dde864fc236b11 diff --git a/metadata/md5-cache/dev-ruby/erubi-1.10.0 b/metadata/md5-cache/dev-ruby/erubi-1.10.0 index d67b87b52174..a249e57b1c18 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e4e3d8382277243c78b6b36034673704 diff --git a/metadata/md5-cache/dev-ruby/erubi-1.9.0 b/metadata/md5-cache/dev-ruby/erubi-1.9.0 index ec38f8a23d66..ccb3ddd742fe 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=75743b64965b7260268242389d214801 diff --git a/metadata/md5-cache/dev-ruby/erubis-2.7.0-r2 b/metadata/md5-cache/dev-ruby/erubis-2.7.0-r2 index e38d9bc958ae..589db01a3acc 100644 --- a/metadata/md5-cache/dev-ruby/erubis-2.7.0-r2 +++ b/metadata/md5-cache/dev-ruby/erubis-2.7.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/erubis-2.7.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=af9869295136a15abf1444757fef1980 diff --git a/metadata/md5-cache/dev-ruby/ethon-0.12.0 b/metadata/md5-cache/dev-ruby/ethon-0.12.0 index 303244cac374..58a45c199e67 100644 --- a/metadata/md5-cache/dev-ruby/ethon-0.12.0 +++ b/metadata/md5-cache/dev-ruby/ethon-0.12.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ethon-0.12.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7956e2d1a91abe47390ab88c4c283717 diff --git a/metadata/md5-cache/dev-ruby/evented-spec-0.9.0 b/metadata/md5-cache/dev-ruby/evented-spec-0.9.0 index 0beb755edf1d..e5f15614e35c 100644 --- a/metadata/md5-cache/dev-ruby/evented-spec-0.9.0 +++ b/metadata/md5-cache/dev-ruby/evented-spec-0.9.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/evented-spec-0.9.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d874715cf8436b1e24b741e0c099edda diff --git a/metadata/md5-cache/dev-ruby/eventmachine-1.2.7 b/metadata/md5-cache/dev-ruby/eventmachine-1.2.7 index e61ce77b1017..268513772045 100644 --- a/metadata/md5-cache/dev-ruby/eventmachine-1.2.7 +++ b/metadata/md5-cache/dev-ruby/eventmachine-1.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b44aba5ceb9d27d5cf0ced5247beb79e diff --git a/metadata/md5-cache/dev-ruby/execjs-2.7.0 b/metadata/md5-cache/dev-ruby/execjs-2.7.0 index db20bebf5738..d7271865e9d5 100644 --- a/metadata/md5-cache/dev-ruby/execjs-2.7.0 +++ b/metadata/md5-cache/dev-ruby/execjs-2.7.0 @@ -4,12 +4,12 @@ DESCRIPTION=ExecJS lets you run JavaScript code from Ruby EAPI=5 HOMEPAGE=https://github.com/rails/execjs IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test -KEYWORDS=amd64 arm arm64 ppc ppc64 x86 ~amd64-linux ~x64-macos +KEYWORDS=amd64 arm arm64 ppc64 x86 ~amd64-linux ~x64-macos LICENSE=MIT RDEPEND=|| ( net-libs/nodejs ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rails/execjs/archive/v2.7.0.tar.gz -> execjs-2.7.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=215d820e08892accf10a2c795c49efa1 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=29f86f4ff0c7412754970728cd70c4c1 diff --git a/metadata/md5-cache/dev-ruby/execjs-2.7.0-r1 b/metadata/md5-cache/dev-ruby/execjs-2.7.0-r1 new file mode 100644 index 000000000000..7e6c9ca49e7d --- /dev/null +++ b/metadata/md5-cache/dev-ruby/execjs-2.7.0-r1 @@ -0,0 +1,16 @@ +BDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DESCRIPTION=ExecJS lets you run JavaScript code from Ruby +EAPI=7 +HOMEPAGE=https://github.com/rails/execjs +IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test +KEYWORDS=~amd64 ~arm ~arm64 ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos +LICENSE=MIT +RDEPEND=|| ( dev-ruby/duktape-rb net-libs/nodejs ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/rails/execjs/archive/v2.7.0.tar.gz -> execjs-2.7.0.tar.gz +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=830b4081d7c1c7849e9699691b5df5d3 diff --git a/metadata/md5-cache/dev-ruby/exifr-1.3.8 b/metadata/md5-cache/dev-ruby/exifr-1.3.8 index 6d9b2df18a01..7ac6869993cd 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 58c745ab84d4..6d79e79dd932 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=df089115027dabce4e259e850c9281ad diff --git a/metadata/md5-cache/dev-ruby/facter-3.14.12 b/metadata/md5-cache/dev-ruby/facter-3.14.12 deleted file mode 100644 index dcc001038f3c..000000000000 --- a/metadata/md5-cache/dev-ruby/facter-3.14.12 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25(-)] dev-ruby/rspec:2[ruby_targets_ruby25(-)] dev-ruby/mocha:0.14[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] dev-ruby/rspec:2[ruby_targets_ruby26(-)] dev-ruby/mocha:0.14[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] dev-ruby/rspec:2[ruby_targets_ruby27(-)] dev-ruby/mocha:0.14[ruby_targets_ruby27(-)] ) ) dev-util/ninja >=dev-util/cmake-3.9.6 ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=dev-cpp/cpp-hocon-0.2.1:= >=dev-libs/leatherman-1.0.0:= dev-libs/openssl:0= sys-apps/util-linux app-emulation/virt-what net-misc/curl dev-libs/boost:=[nls] >=dev-cpp/yaml-cpp-0.5.1 !=dev-cpp/cpp-hocon-0.2.1:= >=dev-libs/leatherman-1.0.0:= dev-libs/openssl:0= sys-apps/util-linux app-emulation/virt-what net-misc/curl dev-libs/boost:=[nls] >=dev-cpp/yaml-cpp-0.5.1 ! facter-3.14.12.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=48f2a70e65bf5a9c6d0d97030238459f diff --git a/metadata/md5-cache/dev-ruby/facter-3.14.13 b/metadata/md5-cache/dev-ruby/facter-3.14.13 index bd2ec1a7438d..957b33e7aefe 100644 --- a/metadata/md5-cache/dev-ruby/facter-3.14.13 +++ b/metadata/md5-cache/dev-ruby/facter-3.14.13 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/puppetlabs/facter/archive/3.14.13.tar.gz -> facter-3.14.13.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=48f2a70e65bf5a9c6d0d97030238459f diff --git a/metadata/md5-cache/dev-ruby/facter-3.14.14 b/metadata/md5-cache/dev-ruby/facter-3.14.14 index e00bdfda2c8a..a22f743fd3d7 100644 --- a/metadata/md5-cache/dev-ruby/facter-3.14.14 +++ b/metadata/md5-cache/dev-ruby/facter-3.14.14 @@ -5,12 +5,12 @@ DESCRIPTION=A cross-platform ruby library for retrieving facts from operating sy EAPI=7 HOMEPAGE=http://www.puppetlabs.com/puppet/related-projects/facter/ IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 LICENSE=Apache-2.0 RDEPEND=>=dev-cpp/cpp-hocon-0.2.1:= >=dev-libs/leatherman-1.0.0:= dev-libs/openssl:0= sys-apps/util-linux app-emulation/virt-what net-misc/curl dev-libs/boost:=[nls] >=dev-cpp/yaml-cpp-0.5.1 ! facter-3.14.14.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=bface0e1c1f3704f8f498de9d30a22b1 +_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=48f2a70e65bf5a9c6d0d97030238459f diff --git a/metadata/md5-cache/dev-ruby/facter-9999 b/metadata/md5-cache/dev-ruby/facter-9999 index e472531bfb58..091ed7cbf50e 100644 --- a/metadata/md5-cache/dev-ruby/facter-9999 +++ b/metadata/md5-cache/dev-ruby/facter-9999 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/leatherman-1.0.0:= dev-libs/openssl:0= sys-apps/util-linux ap REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=2b2197a8dceae65294961bbaa13b2491 diff --git a/metadata/md5-cache/dev-ruby/factory_girl-4.8.1 b/metadata/md5-cache/dev-ruby/factory_girl-4.8.1 index 45fc7b865a37..59cfba38449d 100644 --- a/metadata/md5-cache/dev-ruby/factory_girl-4.8.1 +++ b/metadata/md5-cache/dev-ruby/factory_girl-4.8.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/thoughtbot/factory_girl/archive/v4.8.1.tar.gz -> factory_girl-4.8.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6d90fe964a79b2895501eb2c0bc50c6e diff --git a/metadata/md5-cache/dev-ruby/fakefs-0.19.2 b/metadata/md5-cache/dev-ruby/fakefs-0.19.2 index f5a48327e0cf..6bde58082b1d 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-0.19.2 +++ b/metadata/md5-cache/dev-ruby/fakefs-0.19.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v0.19.2.tar.gz -> fakefs-0.19.2.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a93b5f42091b81f91a39f82d62c24bc4 diff --git a/metadata/md5-cache/dev-ruby/fakefs-0.20.1 b/metadata/md5-cache/dev-ruby/fakefs-0.20.1 index e4015b1ac683..cc7cb4375e1a 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-0.20.1 +++ b/metadata/md5-cache/dev-ruby/fakefs-0.20.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v0.20.1.tar.gz -> fakefs-0.20.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6eb282290a1679c0ebbaf43f147caea0 diff --git a/metadata/md5-cache/dev-ruby/fakefs-1.2.1 b/metadata/md5-cache/dev-ruby/fakefs-1.2.1 index 5a3e2c739de7..170f19c9cb74 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-1.2.1 +++ b/metadata/md5-cache/dev-ruby/fakefs-1.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v1.2.1.tar.gz -> fakefs-1.2.1.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=9594784a4ab2fafaf39622299e878300 diff --git a/metadata/md5-cache/dev-ruby/fakefs-1.2.2 b/metadata/md5-cache/dev-ruby/fakefs-1.2.2 index f1cc550f3a4b..1baacab19ef0 100644 --- a/metadata/md5-cache/dev-ruby/fakefs-1.2.2 +++ b/metadata/md5-cache/dev-ruby/fakefs-1.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/defunkt/fakefs/archive/v1.2.2.tar.gz -> fakefs-1.2.2.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=626db10ec77569dc1827c81b10f4b269 diff --git a/metadata/md5-cache/dev-ruby/faker-2.11.0 b/metadata/md5-cache/dev-ruby/faker-2.11.0 index 598ea08a469c..88b92584d151 100644 --- a/metadata/md5-cache/dev-ruby/faker-2.11.0 +++ b/metadata/md5-cache/dev-ruby/faker-2.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/stympy/faker/archive/v2.11.0.tar.gz -> faker-2.11.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=05babc7a8362a10426e37cfa0f39a6cd diff --git a/metadata/md5-cache/dev-ruby/faker-2.12.0 b/metadata/md5-cache/dev-ruby/faker-2.12.0 index eff1a1e73526..b0b0261171ef 100644 --- a/metadata/md5-cache/dev-ruby/faker-2.12.0 +++ b/metadata/md5-cache/dev-ruby/faker-2.12.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/stympy/faker/archive/v2.12.0.tar.gz -> faker-2.12.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8bdfc02301f93bd3910e6189247e4f2d diff --git a/metadata/md5-cache/dev-ruby/faker-2.13.0 b/metadata/md5-cache/dev-ruby/faker-2.13.0 index a4ed5a9264c8..5174d197c962 100644 --- a/metadata/md5-cache/dev-ruby/faker-2.13.0 +++ b/metadata/md5-cache/dev-ruby/faker-2.13.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/stympy/faker/archive/v2.13.0.tar.gz -> faker-2.13.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=563237782cb36522cc8d9ab4fd5e8de8 diff --git a/metadata/md5-cache/dev-ruby/faker-2.14.0 b/metadata/md5-cache/dev-ruby/faker-2.14.0 index 56f183126872..9531a3a26ac7 100644 --- a/metadata/md5-cache/dev-ruby/faker-2.14.0 +++ b/metadata/md5-cache/dev-ruby/faker-2.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/stympy/faker/archive/v2.14.0.tar.gz -> faker-2.14.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=563237782cb36522cc8d9ab4fd5e8de8 diff --git a/metadata/md5-cache/dev-ruby/fakeweb-1.3.0.20170806 b/metadata/md5-cache/dev-ruby/fakeweb-1.3.0.20170806 index 3848fc464590..53e4d5fd7657 100644 --- a/metadata/md5-cache/dev-ruby/fakeweb-1.3.0.20170806 +++ b/metadata/md5-cache/dev-ruby/fakeweb-1.3.0.20170806 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/chrisk/fakeweb/archive/2b08c1ff2714ec13a12f3497d67fcefce95c2cbe.tar.gz -> fakeweb-1.3.0.20170806.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a5e48b6255cf1829413f4ea0390f6680 diff --git a/metadata/md5-cache/dev-ruby/faraday-0.17.3 b/metadata/md5-cache/dev-ruby/faraday-0.17.3 index f1b6a8d17c2c..77f7aa07ec2e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3761d51ab1e70a1413da2be8fd3493ef diff --git a/metadata/md5-cache/dev-ruby/faraday-1.0.1 b/metadata/md5-cache/dev-ruby/faraday-1.0.1 index a6a62a5d91d9..2c96abb983b6 100644 --- a/metadata/md5-cache/dev-ruby/faraday-1.0.1 +++ b/metadata/md5-cache/dev-ruby/faraday-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/lostisland/faraday/archive/v1.0.1.tar.gz -> faraday-1.0.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2c150debb73276676e6d31dfb952188e diff --git a/metadata/md5-cache/dev-ruby/faraday-1.1.0 b/metadata/md5-cache/dev-ruby/faraday-1.1.0 index 0463befe935d..8b0698a0cfa4 100644 --- a/metadata/md5-cache/dev-ruby/faraday-1.1.0 +++ b/metadata/md5-cache/dev-ruby/faraday-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/lostisland/faraday/archive/v1.1.0.tar.gz -> faraday-1.1.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5ad4150a1223f5ab992ddc4aa83304b4 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 3330a0fe9b50..a78ee958040c 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_ruby25 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_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=48f7e472a233ceeca45af5fac0a3b6fc 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 470ba5b18dd2..bbfabee9af5b 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_ruby25 ruby_targets_ruby26 ) 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_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=75caa77ec5497d09bde970d772a2e914 diff --git a/metadata/md5-cache/dev-ruby/faraday_middleware-multi_json-0.0.6-r1 b/metadata/md5-cache/dev-ruby/faraday_middleware-multi_json-0.0.6-r1 index b581ecebc624..58c8b90856df 100644 --- a/metadata/md5-cache/dev-ruby/faraday_middleware-multi_json-0.0.6-r1 +++ b/metadata/md5-cache/dev-ruby/faraday_middleware-multi_json-0.0.6-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=41aa4de922c18be65270dd723721f501 diff --git a/metadata/md5-cache/dev-ruby/fast-stemmer-1.0.2-r2 b/metadata/md5-cache/dev-ruby/fast-stemmer-1.0.2-r2 index eeea4c4d67a2..ead2fb89eeca 100644 --- a/metadata/md5-cache/dev-ruby/fast-stemmer-1.0.2-r2 +++ b/metadata/md5-cache/dev-ruby/fast-stemmer-1.0.2-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fast-stemmer-1.0.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ac9d43e9ffd90f0dc65141bee4d89aac diff --git a/metadata/md5-cache/dev-ruby/fast_gettext-1.1.2 b/metadata/md5-cache/dev-ruby/fast_gettext-1.1.2 new file mode 100644 index 000000000000..55669f8b190a --- /dev/null +++ b/metadata/md5-cache/dev-ruby/fast_gettext-1.1.2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( test? ( dev-ruby/bundler[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/bundler[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/bundler[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DESCRIPTION=GetText but 3.5x faster, 560x less memory, clean namespace and threadsave! +EAPI=6 +HOMEPAGE=https://github.com/grosser/fast_gettext +IUSE=ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test test +KEYWORDS=amd64 ~arm ~hppa ~ppc ~ppc64 x86 +LICENSE=public-domain +RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=0 +SRC_URI=https://github.com/grosser/fast_gettext/archive/v1.1.2.tar.gz -> fast_gettext-1.1.2.tar.gz +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=1bd3d71a1fba50363da9f97dd8d77bea 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 1cc60f60e462..2e706d2edea7 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c49faed56676c532bff0933cf6bbb689 diff --git a/metadata/md5-cache/dev-ruby/fast_gettext-2.0.2 b/metadata/md5-cache/dev-ruby/fast_gettext-2.0.2 index c599a2d8e166..24adf5d9c021 100644 --- a/metadata/md5-cache/dev-ruby/fast_gettext-2.0.2 +++ b/metadata/md5-cache/dev-ruby/fast_gettext-2.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/grosser/fast_gettext/archive/v2.0.2.tar.gz -> fast_gettext-2.0.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=67a0b44b5cf2b014016c2b25af2d6316 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 69f0098d2f65..aff3888aab4e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=67a0b44b5cf2b014016c2b25af2d6316 diff --git a/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r2 b/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r2 index 12fe925b4f04..e17ddcf47573 100644 --- a/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r2 +++ b/metadata/md5-cache/dev-ruby/fast_xs-0.8.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fast_xs-0.8.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=9796979f4f585e42a7ab57b3108f3aa3 diff --git a/metadata/md5-cache/dev-ruby/fattr-2.4.0 b/metadata/md5-cache/dev-ruby/fattr-2.4.0 index 77bcedcd59a4..16a999b36b9e 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fattr-2.4.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f377f598b40dbe738be4baf16093dc07 diff --git a/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r1 b/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r1 index 8d932961ffea..e356328f04d0 100644 --- a/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r1 +++ b/metadata/md5-cache/dev-ruby/fcgi-0.9.2.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fcgi-0.9.2.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=09e33069ff6199232ad17eb53e6d64af diff --git a/metadata/md5-cache/dev-ruby/ferret-0.11.8.7 b/metadata/md5-cache/dev-ruby/ferret-0.11.8.7 index 15bdbfbf5936..ec4d76ad574f 100644 --- a/metadata/md5-cache/dev-ruby/ferret-0.11.8.7 +++ b/metadata/md5-cache/dev-ruby/ferret-0.11.8.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ferret-0.11.8.7.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ecef68c092655e120b2b626fd7861cc4 diff --git a/metadata/md5-cache/dev-ruby/ffaker-2.15.0 b/metadata/md5-cache/dev-ruby/ffaker-2.15.0 index bd56738b5fd4..ef380db7227d 100644 --- a/metadata/md5-cache/dev-ruby/ffaker-2.15.0 +++ b/metadata/md5-cache/dev-ruby/ffaker-2.15.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ffaker-2.15.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0c0ed6d81907a5ebe527ca74366c8c28 diff --git a/metadata/md5-cache/dev-ruby/ffaker-2.16.0 b/metadata/md5-cache/dev-ruby/ffaker-2.16.0 index eb4e51780382..4668d865d19e 100644 --- a/metadata/md5-cache/dev-ruby/ffaker-2.16.0 +++ b/metadata/md5-cache/dev-ruby/ffaker-2.16.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ffaker-2.16.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=435213dbf69946621bef414744831344 diff --git a/metadata/md5-cache/dev-ruby/ffaker-2.17.0 b/metadata/md5-cache/dev-ruby/ffaker-2.17.0 index 10e403a5b22e..df5e08feb10b 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=435213dbf69946621bef414744831344 diff --git a/metadata/md5-cache/dev-ruby/ffi-1.11.3 b/metadata/md5-cache/dev-ruby/ffi-1.11.3 index 8b6304802451..cc6e89b15566 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.11.3 +++ b/metadata/md5-cache/dev-ruby/ffi-1.11.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.11.3.tar.gz -> ffi-git-1.11.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0d1e7016d0964683f374b21823380a1f diff --git a/metadata/md5-cache/dev-ruby/ffi-1.12.1 b/metadata/md5-cache/dev-ruby/ffi-1.12.1 index 9c58c7c5caeb..43f6ced21f66 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.12.1 +++ b/metadata/md5-cache/dev-ruby/ffi-1.12.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.12.1.tar.gz -> ffi-git-1.12.1.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dc6c3f73a412d4431f381ad7611e3d3f diff --git a/metadata/md5-cache/dev-ruby/ffi-1.12.2 b/metadata/md5-cache/dev-ruby/ffi-1.12.2 index a3ef8089a2d2..624ae05a4ce3 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.12.2 +++ b/metadata/md5-cache/dev-ruby/ffi-1.12.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.12.2.tar.gz -> ffi-git-1.12.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dc6c3f73a412d4431f381ad7611e3d3f diff --git a/metadata/md5-cache/dev-ruby/ffi-1.13.0 b/metadata/md5-cache/dev-ruby/ffi-1.13.0 index 18276cb44fc8..7c1c2feeed62 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.13.0 +++ b/metadata/md5-cache/dev-ruby/ffi-1.13.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.13.0.tar.gz -> ffi-git-1.13.0.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dc6c3f73a412d4431f381ad7611e3d3f diff --git a/metadata/md5-cache/dev-ruby/ffi-1.13.1 b/metadata/md5-cache/dev-ruby/ffi-1.13.1 index f265232305be..b8a9683f84b3 100644 --- a/metadata/md5-cache/dev-ruby/ffi-1.13.1 +++ b/metadata/md5-cache/dev-ruby/ffi-1.13.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ffi/ffi/archive/1.13.1.tar.gz -> ffi-git-1.13.1.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dc6c3f73a412d4431f381ad7611e3d3f diff --git a/metadata/md5-cache/dev-ruby/file-tail-1.2.0 b/metadata/md5-cache/dev-ruby/file-tail-1.2.0 index fa6fafa94813..ba5780e3ece7 100644 --- a/metadata/md5-cache/dev-ruby/file-tail-1.2.0 +++ b/metadata/md5-cache/dev-ruby/file-tail-1.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/file-tail-1.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a0bee090b02d3741ba7218e1bb510fe8 diff --git a/metadata/md5-cache/dev-ruby/filesize-0.2.0 b/metadata/md5-cache/dev-ruby/filesize-0.2.0 index 67df7824c33d..33e3f65a8683 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 52dae0da677f..ecbe09e7bc86 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b35ed2ff36963528d62dda31051f6450 diff --git a/metadata/md5-cache/dev-ruby/fivemat-1.3.7 b/metadata/md5-cache/dev-ruby/fivemat-1.3.7 index 7d9d574cb158..40bea32b708c 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/fivemat-1.3.7.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=509c0fcb29819cac1fb98d615ed1e729 diff --git a/metadata/md5-cache/dev-ruby/flexmock-2.3.6 b/metadata/md5-cache/dev-ruby/flexmock-2.3.6 index 08aca951f4a5..9938558dd5c2 100644 --- a/metadata/md5-cache/dev-ruby/flexmock-2.3.6 +++ b/metadata/md5-cache/dev-ruby/flexmock-2.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=31365febe84326559dcbb135b304393f diff --git a/metadata/md5-cache/dev-ruby/flickraw-0.9.10 b/metadata/md5-cache/dev-ruby/flickraw-0.9.10 index 5d07c5c19862..60248e80e15b 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/flickraw-0.9.10.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 f11aa45578f3..ed6ebc957c57 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/flog-4.6.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6eeb2943e49a103ee69244a42646d8e6 diff --git a/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.5 b/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.5 index 46ea56a1cd92..2debd801715c 100644 --- a/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.5 +++ b/metadata/md5-cache/dev-ruby/font-awesome-rails-4.7.0.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4a522019286af69eb5eb89dc7e6d936e diff --git a/metadata/md5-cache/dev-ruby/forgery-0.8.1 b/metadata/md5-cache/dev-ruby/forgery-0.8.1 index ae940c800b4c..c2d1e3c62f5e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=497e6b787229f8504015a71bd1446e9a diff --git a/metadata/md5-cache/dev-ruby/forwardable-extended-2.6.0-r1 b/metadata/md5-cache/dev-ruby/forwardable-extended-2.6.0-r1 index a2ee1c3cb782..5103417ef4e4 100644 --- a/metadata/md5-cache/dev-ruby/forwardable-extended-2.6.0-r1 +++ b/metadata/md5-cache/dev-ruby/forwardable-extended-2.6.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=96694fbfc6323b91e414a18e07056386 diff --git a/metadata/md5-cache/dev-ruby/fuubar-2.5.0 b/metadata/md5-cache/dev-ruby/fuubar-2.5.0 index 17a560098fee..8f0f01db6e94 100644 --- a/metadata/md5-cache/dev-ruby/fuubar-2.5.0 +++ b/metadata/md5-cache/dev-ruby/fuubar-2.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=551076dfd99ee2b8617d886e5c7aec05 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 aba1fb0c08ee..f7ccf8e2a60e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=187a9a54257d5255d5ff0394d5dd41e8 diff --git a/metadata/md5-cache/dev-ruby/gettext-setup-0.30 b/metadata/md5-cache/dev-ruby/gettext-setup-0.30 index 19e960a65a84..1ee87b88b0da 100644 --- a/metadata/md5-cache/dev-ruby/gettext-setup-0.30 +++ b/metadata/md5-cache/dev-ruby/gettext-setup-0.30 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/puppetlabs/gettext-setup-gem/archive/0.30.tar.gz -> gettext-setup-0.30.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d72a885d8ab41c0119057dde83990205 diff --git a/metadata/md5-cache/dev-ruby/gettext-setup-0.31 b/metadata/md5-cache/dev-ruby/gettext-setup-0.31 deleted file mode 100644 index 0f33e7611003..000000000000 --- a/metadata/md5-cache/dev-ruby/gettext-setup-0.31 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby25? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby25(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby25(-)] dev-ruby/locale[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby26(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby26(-)] dev-ruby/locale[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) -DESCRIPTION=A gem to ease i18n -EAPI=7 -HOMEPAGE=https://github.com/puppetlabs/gettext-setup-gem -IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 doc test test -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby25(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby25(-)] dev-ruby/locale[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby26(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby26(-)] dev-ruby/locale[ruby_targets_ruby26(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) -RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/puppetlabs/gettext-setup-gem/archive/0.31.tar.gz -> gettext-setup-0.31.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=ad7d9ee3e8bd6cba56bd24a5f591d294 diff --git a/metadata/md5-cache/dev-ruby/gettext-setup-0.34 b/metadata/md5-cache/dev-ruby/gettext-setup-0.34 deleted file mode 100644 index 968f922aacb2..000000000000 --- a/metadata/md5-cache/dev-ruby/gettext-setup-0.34 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby25? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby25(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby25(-)] dev-ruby/locale[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby26(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby26(-)] dev-ruby/locale[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby27(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby27(-)] dev-ruby/locale[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=A gem to ease i18n -EAPI=7 -HOMEPAGE=https://github.com/puppetlabs/gettext-setup-gem -IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby25(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby25(-)] dev-ruby/locale[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby26(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby26(-)] dev-ruby/locale[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby27(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby27(-)] dev-ruby/locale[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2ced05cecbdf84220836835b4ec6074a diff --git a/metadata/md5-cache/dev-ruby/gettext-setup-0.34-r1 b/metadata/md5-cache/dev-ruby/gettext-setup-0.34-r1 deleted file mode 100644 index 16aa31495da9..000000000000 --- a/metadata/md5-cache/dev-ruby/gettext-setup-0.34-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=test? ( ruby_targets_ruby25? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby25(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby25(-)] dev-ruby/locale[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby26(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby26(-)] dev-ruby/locale[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby27(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby27(-)] dev-ruby/locale[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( dev-vcs/git ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -DESCRIPTION=A gem to ease i18n -EAPI=7 -HOMEPAGE=https://github.com/puppetlabs/gettext-setup-gem -IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=dev-vcs/git ruby_targets_ruby25? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby25(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby25(-)] dev-ruby/locale[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby26(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby26(-)] dev-ruby/locale[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby27(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby27(-)] dev-ruby/locale[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) -REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) -RESTRICT=!test? ( test ) !test? ( test ) !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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=cfe6355aaa8b2e71a102bf442c7bd74d 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 adbe6d1ed5c6..83288219a969 100644 --- a/metadata/md5-cache/dev-ruby/gettext-setup-0.34-r2 +++ b/metadata/md5-cache/dev-ruby/gettext-setup-0.34-r2 @@ -5,12 +5,12 @@ DESCRIPTION=A gem to ease i18n EAPI=7 HOMEPAGE=https://github.com/puppetlabs/gettext-setup-gem IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 x86 LICENSE=Apache-2.0 RDEPEND=dev-vcs/git ruby_targets_ruby25? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby25(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby25(-)] dev-ruby/locale[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby26(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby26(-)] dev-ruby/locale[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/fast_gettext-1.1.0:0[ruby_targets_ruby27(-)] >=dev-ruby/ruby-gettext-3.0.2[ruby_targets_ruby27(-)] dev-ruby/locale[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=47b8a6a5fb8a042867317fa343b20442 +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=6e832878577aa7cfb6eddf34e1864cc7 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 a4b71437ee79..c35ae054a415 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4fc56c522ce03b61ed5785b9b164c71c diff --git a/metadata/md5-cache/dev-ruby/gh-0.18.0 b/metadata/md5-cache/dev-ruby/gh-0.18.0 index 2fdbd0c91cd9..cc6ac7fb07be 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 8b2328796eca..3b86466fe4db 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=407c7d9b59188e978bd6f5189e2a6c57 diff --git a/metadata/md5-cache/dev-ruby/gist-5.1.0 b/metadata/md5-cache/dev-ruby/gist-5.1.0 index 7d719570c158..634339e36f39 100644 --- a/metadata/md5-cache/dev-ruby/gist-5.1.0 +++ b/metadata/md5-cache/dev-ruby/gist-5.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gist-5.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=11d955aa54a5bd6be53a76ff55b027b6 diff --git a/metadata/md5-cache/dev-ruby/git-1.7.0 b/metadata/md5-cache/dev-ruby/git-1.7.0 index 783ce9e4d758..a5d2b8950dd2 100644 --- a/metadata/md5-cache/dev-ruby/git-1.7.0 +++ b/metadata/md5-cache/dev-ruby/git-1.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/schacon/ruby-git/archive/v1.7.0.tar.gz -> git-1.7.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b720f7a62d9a4ba71ce3bc06f9cd79fd diff --git a/metadata/md5-cache/dev-ruby/globalid-0.4.2 b/metadata/md5-cache/dev-ruby/globalid-0.4.2 index 8d98be65e303..fc98a33d237d 100644 --- a/metadata/md5-cache/dev-ruby/globalid-0.4.2 +++ b/metadata/md5-cache/dev-ruby/globalid-0.4.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4676798cd1a1563ba152a298416e6673 diff --git a/metadata/md5-cache/dev-ruby/globalid-0.4.2-r1 b/metadata/md5-cache/dev-ruby/globalid-0.4.2-r1 index 1425f4aff211..07de37c56ea1 100644 --- a/metadata/md5-cache/dev-ruby/globalid-0.4.2-r1 +++ b/metadata/md5-cache/dev-ruby/globalid-0.4.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=afe61e1439830f1c2183ea80681a6247 diff --git a/metadata/md5-cache/dev-ruby/gnuplot-2.6.2-r2 b/metadata/md5-cache/dev-ruby/gnuplot-2.6.2-r2 index 42f0b6acd0cb..181517dea2c1 100644 --- a/metadata/md5-cache/dev-ruby/gnuplot-2.6.2-r2 +++ b/metadata/md5-cache/dev-ruby/gnuplot-2.6.2-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gnuplot-2.6.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e9e94be223bd6870dd282feef48bd2eb diff --git a/metadata/md5-cache/dev-ruby/google-protobuf-3.10.1 b/metadata/md5-cache/dev-ruby/google-protobuf-3.10.1 index c0ebe70cd7b0..fb6db959f87a 100644 --- a/metadata/md5-cache/dev-ruby/google-protobuf-3.10.1 +++ b/metadata/md5-cache/dev-ruby/google-protobuf-3.10.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.10.1.tar.gz -> google-protobuf-3.10.1-ruby.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=19dae854dc03c62f77f8c824639abe3e diff --git a/metadata/md5-cache/dev-ruby/google-protobuf-3.11.4 b/metadata/md5-cache/dev-ruby/google-protobuf-3.11.4 index 1dbbc3136af6..9dce4e5d17da 100644 --- a/metadata/md5-cache/dev-ruby/google-protobuf-3.11.4 +++ b/metadata/md5-cache/dev-ruby/google-protobuf-3.11.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.11.4.tar.gz -> google-protobuf-3.11.4-ruby.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=38e21e37356cf0c58f98d0f44bf63da3 diff --git a/metadata/md5-cache/dev-ruby/google-protobuf-3.12.4 b/metadata/md5-cache/dev-ruby/google-protobuf-3.12.4 index a974fefa2025..6aaaca468143 100644 --- a/metadata/md5-cache/dev-ruby/google-protobuf-3.12.4 +++ b/metadata/md5-cache/dev-ruby/google-protobuf-3.12.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.12.4.tar.gz -> google-protobuf-3.12.4-ruby.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=82c8afa3df4e6cfebbba511fe8b90e60 diff --git a/metadata/md5-cache/dev-ruby/google-protobuf-3.8.0 b/metadata/md5-cache/dev-ruby/google-protobuf-3.8.0 index 7b9ace9d1822..b2d0620a1f07 100644 --- a/metadata/md5-cache/dev-ruby/google-protobuf-3.8.0 +++ b/metadata/md5-cache/dev-ruby/google-protobuf-3.8.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/protocolbuffers/protobuf/archive/v3.8.0.tar.gz -> google-protobuf-3.8.0-ruby.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=556bc9a52d9c0cdea4786996ca912918 diff --git a/metadata/md5-cache/dev-ruby/gpgme-2.0.20 b/metadata/md5-cache/dev-ruby/gpgme-2.0.20 index 906852284ee2..6cb0ca7be30d 100644 --- a/metadata/md5-cache/dev-ruby/gpgme-2.0.20 +++ b/metadata/md5-cache/dev-ruby/gpgme-2.0.20 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2898197f86d65ac0c78f203555257b54 diff --git a/metadata/md5-cache/dev-ruby/gruff-0.7.0-r2 b/metadata/md5-cache/dev-ruby/gruff-0.7.0-r2 index 38f0c11cb663..7b5502fe4131 100644 --- a/metadata/md5-cache/dev-ruby/gruff-0.7.0-r2 +++ b/metadata/md5-cache/dev-ruby/gruff-0.7.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gruff-0.7.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=49c72d7b2be82f3270169e1d0d933b5f diff --git a/metadata/md5-cache/dev-ruby/gruff-0.8.0 b/metadata/md5-cache/dev-ruby/gruff-0.8.0 index ac90bb69260b..374e41940f99 100644 --- a/metadata/md5-cache/dev-ruby/gruff-0.8.0 +++ b/metadata/md5-cache/dev-ruby/gruff-0.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/topfunky/gruff/archive/v0.8.0.tar.gz -> gruff-0.8.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ed1d6a5ecc0189004aac7a84ae8b0db6 diff --git a/metadata/md5-cache/dev-ruby/haml-5.1.2 b/metadata/md5-cache/dev-ruby/haml-5.1.2 index b86c6b510a34..5160bcaa2310 100644 --- a/metadata/md5-cache/dev-ruby/haml-5.1.2 +++ b/metadata/md5-cache/dev-ruby/haml-5.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/haml/haml/archive/v5.1.2.tar.gz -> haml-5.1.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f58fa182d8393a12213b075f64206bc1 diff --git a/metadata/md5-cache/dev-ruby/haml-rails-2.0.0 b/metadata/md5-cache/dev-ruby/haml-rails-2.0.0 index 53f2aeed3960..5f9004ad0848 100644 --- a/metadata/md5-cache/dev-ruby/haml-rails-2.0.0 +++ b/metadata/md5-cache/dev-ruby/haml-rails-2.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/haml-rails-2.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=df1125967542ee2fa4e28d28f970e3b6 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 55e071ae2a10..23a4e9147524 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/haml-rails-2.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fd8d80781226dad5e3f1d94cb14f38d3 diff --git a/metadata/md5-cache/dev-ruby/hamster-3.0.0-r1 b/metadata/md5-cache/dev-ruby/hamster-3.0.0-r1 index 89daa1ed158b..5facd44056df 100644 --- a/metadata/md5-cache/dev-ruby/hamster-3.0.0-r1 +++ b/metadata/md5-cache/dev-ruby/hamster-3.0.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hamster-3.0.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=680d3a0079f1b6a9a27c1ba23216cfbe diff --git a/metadata/md5-cache/dev-ruby/hashdiff-1.0.0 b/metadata/md5-cache/dev-ruby/hashdiff-1.0.0 index b26dbf88714d..373254fe3f4c 100644 --- a/metadata/md5-cache/dev-ruby/hashdiff-1.0.0 +++ b/metadata/md5-cache/dev-ruby/hashdiff-1.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hashdiff-1.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8f6d0c3969e74221db160e8b216ffe70 diff --git a/metadata/md5-cache/dev-ruby/hashdiff-1.0.1 b/metadata/md5-cache/dev-ruby/hashdiff-1.0.1 index fe7d4a681a80..ff16a815cddb 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hashdiff-1.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=20812cfd9e15e8ed3f52022fb5a0baa1 diff --git a/metadata/md5-cache/dev-ruby/hashery-2.1.2 b/metadata/md5-cache/dev-ruby/hashery-2.1.2 index 5b9ee82e154e..d387de807a9d 100644 --- a/metadata/md5-cache/dev-ruby/hashery-2.1.2 +++ b/metadata/md5-cache/dev-ruby/hashery-2.1.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hashery-2.1.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=8828ef6b0286114440539e613296a2d6 diff --git a/metadata/md5-cache/dev-ruby/hashicorp-checkpoint-0.1.5 b/metadata/md5-cache/dev-ruby/hashicorp-checkpoint-0.1.5 index 5ea2b028c79e..7e8e55be14b2 100644 --- a/metadata/md5-cache/dev-ruby/hashicorp-checkpoint-0.1.5 +++ b/metadata/md5-cache/dev-ruby/hashicorp-checkpoint-0.1.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hashicorp-checkpoint-0.1.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=29694af878df2d01e5b10d9f0e8161ff diff --git a/metadata/md5-cache/dev-ruby/hashie-2.1.2-r1 b/metadata/md5-cache/dev-ruby/hashie-2.1.2-r1 index 1c83bc7bb7fb..08a5904e4e00 100644 --- a/metadata/md5-cache/dev-ruby/hashie-2.1.2-r1 +++ b/metadata/md5-cache/dev-ruby/hashie-2.1.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hashie-2.1.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6a7017a5c6745cea56369c064242f470 diff --git a/metadata/md5-cache/dev-ruby/hashie-3.6.0 b/metadata/md5-cache/dev-ruby/hashie-3.6.0 index 74bd1c7eb8fc..4aba06525084 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/hashie-3.6.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0cd2e6a8613a4ba6085950526f866480 diff --git a/metadata/md5-cache/dev-ruby/hashie-4.0.0 b/metadata/md5-cache/dev-ruby/hashie-4.0.0 index 7f478e7ed94d..babf18783cf1 100644 --- a/metadata/md5-cache/dev-ruby/hashie-4.0.0 +++ b/metadata/md5-cache/dev-ruby/hashie-4.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/intridea/hashie/archive/v4.0.0.tar.gz -> hashie-4.0.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8b7e66794498ca58a6e6ea372959edb7 diff --git a/metadata/md5-cache/dev-ruby/hashie-4.1.0 b/metadata/md5-cache/dev-ruby/hashie-4.1.0 index 5ffe0dcf3883..4a7c9824152e 100644 --- a/metadata/md5-cache/dev-ruby/hashie-4.1.0 +++ b/metadata/md5-cache/dev-ruby/hashie-4.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=79f9e6dcd1383186385b6e304aa201c3 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 69bad7b619ae..51dd2510ac54 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=de43da69b5feff2209ae1330698b5396 diff --git a/metadata/md5-cache/dev-ruby/hashr-2.0.1 b/metadata/md5-cache/dev-ruby/hashr-2.0.1 index 0e613e518f56..46cf831fac73 100644 --- a/metadata/md5-cache/dev-ruby/hashr-2.0.1 +++ b/metadata/md5-cache/dev-ruby/hashr-2.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hashr-2.0.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=3b4ae1bbbdcf7e2e1466770a25dad903 diff --git a/metadata/md5-cache/dev-ruby/heredoc_unindent-1.2.0 b/metadata/md5-cache/dev-ruby/heredoc_unindent-1.2.0 index 71d2f1b6ed65..cdd89ad2fa47 100644 --- a/metadata/md5-cache/dev-ruby/heredoc_unindent-1.2.0 +++ b/metadata/md5-cache/dev-ruby/heredoc_unindent-1.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/heredoc_unindent-1.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a35db63889298b6ebdd9b08ce039d40d diff --git a/metadata/md5-cache/dev-ruby/hiera-3.6.0 b/metadata/md5-cache/dev-ruby/hiera-3.6.0 index 7ccdb4740711..abf773e7fdd2 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e6cdb5f3bd3c79d85432b68fb5ce05ab 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 4e3fad73a7b6..8849a7c66961 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e6cea6e67ae1b58e80a5e24f6b247ce9 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 94c1d83f65a7..7a0d51468fee 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hiera-eyaml-gpg-0.7.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4ffda94b79e99ac830531535c0e8913c diff --git a/metadata/md5-cache/dev-ruby/hiera-eyaml-plaintext-0.6-r1 b/metadata/md5-cache/dev-ruby/hiera-eyaml-plaintext-0.6-r1 index 7ab456f75ba5..10f20cb5d41e 100644 --- a/metadata/md5-cache/dev-ruby/hiera-eyaml-plaintext-0.6-r1 +++ b/metadata/md5-cache/dev-ruby/hiera-eyaml-plaintext-0.6-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hiera-eyaml-plaintext-0.6.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=22a97b41e83e6dcd6fdd0ac34ce5e53f diff --git a/metadata/md5-cache/dev-ruby/highline-2.0.3 b/metadata/md5-cache/dev-ruby/highline-2.0.3 index c13e82844aa8..2ed7c6fb175c 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bedf957af5c415302cfd4e74c1221ee9 diff --git a/metadata/md5-cache/dev-ruby/hipchat-1.6.0 b/metadata/md5-cache/dev-ruby/hipchat-1.6.0 index 4d1e92125cfe..dd06936d2d3e 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8d817a3ff13de3d1404e029b4d40f408 diff --git a/metadata/md5-cache/dev-ruby/hiredis-0.6.3 b/metadata/md5-cache/dev-ruby/hiredis-0.6.3 index b657b82e855e..7c58b1a4431b 100644 --- a/metadata/md5-cache/dev-ruby/hiredis-0.6.3 +++ b/metadata/md5-cache/dev-ruby/hiredis-0.6.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=31548b3f83512af604a9afbed60c0c3e 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 5b792950a2a7..a63c0ccb7f37 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/histogram-0.2.4.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1e3e7ee12bdaf0f0fbaca89ddcd40b0d diff --git a/metadata/md5-cache/dev-ruby/hitimes-2.0.0 b/metadata/md5-cache/dev-ruby/hitimes-2.0.0 index f7bd674fed20..38ceea3c6d3a 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1f45bccd318b65d64d73f8f7a2c9df65 diff --git a/metadata/md5-cache/dev-ruby/hocon-1.2.5 b/metadata/md5-cache/dev-ruby/hocon-1.2.5 index f13893759c5b..6d58b546729e 100644 --- a/metadata/md5-cache/dev-ruby/hocon-1.2.5 +++ b/metadata/md5-cache/dev-ruby/hocon-1.2.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hocon-1.2.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ada4fe2ef0a4c73fa37915cc22071712 diff --git a/metadata/md5-cache/dev-ruby/hocon-1.3.1 b/metadata/md5-cache/dev-ruby/hocon-1.3.1 index 862c368bfd18..7c4ce77da7c4 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=94d947e6b6ef818b8c756f6a3e94a37b diff --git a/metadata/md5-cache/dev-ruby/hoe-3.21.0 b/metadata/md5-cache/dev-ruby/hoe-3.21.0 index b481242b9a3d..f7c21ee48aac 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hoe-3.21.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f42f92a8e92031e91a0e0f8d7a88b552 diff --git a/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r5 b/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r5 index 872f4cefea61..5d6258e4a81d 100644 --- a/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r5 +++ b/metadata/md5-cache/dev-ruby/hpricot-0.8.6-r5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/hpricot-0.8.6.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=55a83975df3d4f2e8a422c45b2c3829c diff --git a/metadata/md5-cache/dev-ruby/html2haml-2.2.0 b/metadata/md5-cache/dev-ruby/html2haml-2.2.0 index 1fb7fb31fea7..38ce0bf15f96 100644 --- a/metadata/md5-cache/dev-ruby/html2haml-2.2.0 +++ b/metadata/md5-cache/dev-ruby/html2haml-2.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/html2haml-2.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f9889b27318a9b4bd69c7890baf819f8 diff --git a/metadata/md5-cache/dev-ruby/htmlentities-4.3.4 b/metadata/md5-cache/dev-ruby/htmlentities-4.3.4 index 53b1cebdb038..56c0a76530df 100644 --- a/metadata/md5-cache/dev-ruby/htmlentities-4.3.4 +++ b/metadata/md5-cache/dev-ruby/htmlentities-4.3.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/htmlentities-4.3.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=de32ed38acbbf7fab28188951455fc74 diff --git a/metadata/md5-cache/dev-ruby/http-3.3.0 b/metadata/md5-cache/dev-ruby/http-3.3.0 index a1d3f9db81f7..1f43f1a42e96 100644 --- a/metadata/md5-cache/dev-ruby/http-3.3.0 +++ b/metadata/md5-cache/dev-ruby/http-3.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/http-3.3.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bb728a3db46cf6fb8a0138b7378f2004 diff --git a/metadata/md5-cache/dev-ruby/http-4.1.1 b/metadata/md5-cache/dev-ruby/http-4.1.1 index a71964bf0536..9c31934da109 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ca1207ca6dea6cfd88ee2045e832ff81 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 6f731466531c..6426055cfe90 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 44e5b8c72cda..059ea0af11be 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=55b02e53c406e248497f6dea7b2275d4 diff --git a/metadata/md5-cache/dev-ruby/http-cookie-1.0.3 b/metadata/md5-cache/dev-ruby/http-cookie-1.0.3 index 0dfb03a342c6..ff11eff1b438 100644 --- a/metadata/md5-cache/dev-ruby/http-cookie-1.0.3 +++ b/metadata/md5-cache/dev-ruby/http-cookie-1.0.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/http-cookie-1.0.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ae0fef93e459a405ee89512ec3d5929c 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 8b73a80bdcf7..0cbb85709c77 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 a7745ba00f26..02cf2a635a03 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/http-form_data-2.3.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b8ea209064479366f740233c3e7b4dd1 diff --git a/metadata/md5-cache/dev-ruby/http_parser_rb-0.6.0-r1 b/metadata/md5-cache/dev-ruby/http_parser_rb-0.6.0-r1 index 46828ab0f85f..e19ca7c692de 100644 --- a/metadata/md5-cache/dev-ruby/http_parser_rb-0.6.0-r1 +++ b/metadata/md5-cache/dev-ruby/http_parser_rb-0.6.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5f9d6441c1d19b729fee69c0024f5ddb diff --git a/metadata/md5-cache/dev-ruby/httparty-0.17.3 b/metadata/md5-cache/dev-ruby/httparty-0.17.3 index 20fd03c3e110..7bf0a1c26847 100644 --- a/metadata/md5-cache/dev-ruby/httparty-0.17.3 +++ b/metadata/md5-cache/dev-ruby/httparty-0.17.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jnunemaker/httparty/archive/v0.17.3.tar.gz -> httparty-0.17.3.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ec1418db30506a8193a617e89b8c5d8e diff --git a/metadata/md5-cache/dev-ruby/httparty-0.18.1 b/metadata/md5-cache/dev-ruby/httparty-0.18.1 index 8d3756f048cf..0e09d6d08ff8 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bbf41167087bca8578db43ce6f97b6b4 diff --git a/metadata/md5-cache/dev-ruby/httpauth-0.2.1 b/metadata/md5-cache/dev-ruby/httpauth-0.2.1 index 86dbea76fdde..924ab2be4c30 100644 --- a/metadata/md5-cache/dev-ruby/httpauth-0.2.1 +++ b/metadata/md5-cache/dev-ruby/httpauth-0.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f19f865ea68f8ae5ab8e7ac5bfb8a517 diff --git a/metadata/md5-cache/dev-ruby/httpclient-2.8.3 b/metadata/md5-cache/dev-ruby/httpclient-2.8.3 index ab3dd75db29c..1caf24993847 100644 --- a/metadata/md5-cache/dev-ruby/httpclient-2.8.3 +++ b/metadata/md5-cache/dev-ruby/httpclient-2.8.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=b602a93835d469aa4c40fe3608998e71 diff --git a/metadata/md5-cache/dev-ruby/i18n-0.7.0-r3 b/metadata/md5-cache/dev-ruby/i18n-0.7.0-r3 index f4e7ec2de0f3..c37b28a300d0 100644 --- a/metadata/md5-cache/dev-ruby/i18n-0.7.0-r3 +++ b/metadata/md5-cache/dev-ruby/i18n-0.7.0-r3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) SLOT=0.7 SRC_URI=https://github.com/svenfuchs/i18n/archive/v0.7.0.tar.gz -> i18n-0.7.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=8ef614a15ca8a08773ff469b68b2b702 diff --git a/metadata/md5-cache/dev-ruby/i18n-1.7.1 b/metadata/md5-cache/dev-ruby/i18n-1.7.1 index b287d984ce30..9c9fc5765619 100644 --- a/metadata/md5-cache/dev-ruby/i18n-1.7.1 +++ b/metadata/md5-cache/dev-ruby/i18n-1.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/svenfuchs/i18n/archive/v1.7.1.tar.gz -> i18n-1.7.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e44675bd7f8923ef2ad03d4cbd25de88 diff --git a/metadata/md5-cache/dev-ruby/i18n-1.8.2 b/metadata/md5-cache/dev-ruby/i18n-1.8.2 index 600a096403bf..de7048724891 100644 --- a/metadata/md5-cache/dev-ruby/i18n-1.8.2 +++ b/metadata/md5-cache/dev-ruby/i18n-1.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/svenfuchs/i18n/archive/v1.8.2.tar.gz -> i18n-1.8.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=384cb2a26e67d56b548aa3152dc5ba59 diff --git a/metadata/md5-cache/dev-ruby/i18n-1.8.5 b/metadata/md5-cache/dev-ruby/i18n-1.8.5 index 70af93a23284..5f719a6e919d 100644 --- a/metadata/md5-cache/dev-ruby/i18n-1.8.5 +++ b/metadata/md5-cache/dev-ruby/i18n-1.8.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/svenfuchs/i18n/archive/v1.8.5.tar.gz -> i18n-1.8.5.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7708bf781e4d998765ab5f1dad79c9af diff --git a/metadata/md5-cache/dev-ruby/ice_nine-0.11.2 b/metadata/md5-cache/dev-ruby/ice_nine-0.11.2 index a9f7b299c532..fd110c666b5a 100644 --- a/metadata/md5-cache/dev-ruby/ice_nine-0.11.2 +++ b/metadata/md5-cache/dev-ruby/ice_nine-0.11.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/ice_nine-0.11.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=fd6a9d2e4ab936abf3a869af61fcc2e3 diff --git a/metadata/md5-cache/dev-ruby/idn-ruby-0.1.0 b/metadata/md5-cache/dev-ruby/idn-ruby-0.1.0 index 9318421d7b88..0fad742124fa 100644 --- a/metadata/md5-cache/dev-ruby/idn-ruby-0.1.0 +++ b/metadata/md5-cache/dev-ruby/idn-ruby-0.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/idn-ruby-0.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=53eadee1b0ad0b76c71ace4c5d6adff5 diff --git a/metadata/md5-cache/dev-ruby/image_processing-1.10.3 b/metadata/md5-cache/dev-ruby/image_processing-1.10.3 index 9dfcd78e6b80..55b23d540d6c 100644 --- a/metadata/md5-cache/dev-ruby/image_processing-1.10.3 +++ b/metadata/md5-cache/dev-ruby/image_processing-1.10.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/janko/image_processing/archive/v1.10.3.tar.gz -> image_processing-1.10.3.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9783813d8a3551a9051b4b2b9648dfc5 diff --git a/metadata/md5-cache/dev-ruby/image_processing-1.11.0 b/metadata/md5-cache/dev-ruby/image_processing-1.11.0 index e1d22b17046f..49e11b54d464 100644 --- a/metadata/md5-cache/dev-ruby/image_processing-1.11.0 +++ b/metadata/md5-cache/dev-ruby/image_processing-1.11.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/janko/image_processing/archive/v1.11.0.tar.gz -> image_processing-1.11.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9783813d8a3551a9051b4b2b9648dfc5 diff --git a/metadata/md5-cache/dev-ruby/image_processing-1.12.0 b/metadata/md5-cache/dev-ruby/image_processing-1.12.0 index a34f909bf781..2ce96b27a582 100644 --- a/metadata/md5-cache/dev-ruby/image_processing-1.12.0 +++ b/metadata/md5-cache/dev-ruby/image_processing-1.12.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/janko/image_processing/archive/v1.12.0.tar.gz -> image_processing-1.12.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fda2185a4358d559e83b968dbd4ce811 diff --git a/metadata/md5-cache/dev-ruby/image_processing-1.12.1 b/metadata/md5-cache/dev-ruby/image_processing-1.12.1 index 3db59ca3d5e8..20dc8e1099bd 100644 --- a/metadata/md5-cache/dev-ruby/image_processing-1.12.1 +++ b/metadata/md5-cache/dev-ruby/image_processing-1.12.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/janko/image_processing/archive/v1.12.1.tar.gz -> image_processing-1.12.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fda2185a4358d559e83b968dbd4ce811 diff --git a/metadata/md5-cache/dev-ruby/imagesize-0.1.1_p20100902-r1 b/metadata/md5-cache/dev-ruby/imagesize-0.1.1_p20100902-r1 index c9fba36a1075..9acf2c6f2324 100644 --- a/metadata/md5-cache/dev-ruby/imagesize-0.1.1_p20100902-r1 +++ b/metadata/md5-cache/dev-ruby/imagesize-0.1.1_p20100902-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=44336050ffef31296dff9eb6da57ce6d diff --git a/metadata/md5-cache/dev-ruby/inflecto-0.0.2 b/metadata/md5-cache/dev-ruby/inflecto-0.0.2 index ad6eaea553d6..78bd1ad45e32 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=17c6b5077748e025e8c7c8fe743c8c74 diff --git a/metadata/md5-cache/dev-ruby/instance_storage-1.0.0 b/metadata/md5-cache/dev-ruby/instance_storage-1.0.0 index e49d3a55923e..c912957a3bf8 100644 --- a/metadata/md5-cache/dev-ruby/instance_storage-1.0.0 +++ b/metadata/md5-cache/dev-ruby/instance_storage-1.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/instance_storage-1.0.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=c17dd03e58b75c7a5f91c7656c071c5a diff --git a/metadata/md5-cache/dev-ruby/instantiator-0.0.7 b/metadata/md5-cache/dev-ruby/instantiator-0.0.7 index f04fd93167b1..234d2e6b2373 100644 --- a/metadata/md5-cache/dev-ruby/instantiator-0.0.7 +++ b/metadata/md5-cache/dev-ruby/instantiator-0.0.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/instantiator-0.0.7.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a33aceee5352a6137229607f3a4ea6c1 diff --git a/metadata/md5-cache/dev-ruby/introspection-0.0.4 b/metadata/md5-cache/dev-ruby/introspection-0.0.4 index 91a1115b6b05..8652585ebc5c 100644 --- a/metadata/md5-cache/dev-ruby/introspection-0.0.4 +++ b/metadata/md5-cache/dev-ruby/introspection-0.0.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/introspection-0.0.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ab61f9daf7243f65d4dae3950bde7f5c diff --git a/metadata/md5-cache/dev-ruby/iobuffer-1.1.2-r3 b/metadata/md5-cache/dev-ruby/iobuffer-1.1.2-r3 index 9242c83c3613..a95baaff8d83 100644 --- a/metadata/md5-cache/dev-ruby/iobuffer-1.1.2-r3 +++ b/metadata/md5-cache/dev-ruby/iobuffer-1.1.2-r3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=15564b3727628d463fc454c787f59b11 diff --git a/metadata/md5-cache/dev-ruby/itextomml-1.6.0 b/metadata/md5-cache/dev-ruby/itextomml-1.6.0 index 4e0d3db4b021..f7f1e574f1ba 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/itextomml-1.6.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ecd729cd1a5ec4d8a7e6ccf8ecb7be3c diff --git a/metadata/md5-cache/dev-ruby/jbuilder-2.10.0 b/metadata/md5-cache/dev-ruby/jbuilder-2.10.0 index 65b5c89d82b7..2749fb8f35fc 100644 --- a/metadata/md5-cache/dev-ruby/jbuilder-2.10.0 +++ b/metadata/md5-cache/dev-ruby/jbuilder-2.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/jbuilder-2.10.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7928513e569de515c728a326155e39f4 diff --git a/metadata/md5-cache/dev-ruby/jbuilder-2.10.1 b/metadata/md5-cache/dev-ruby/jbuilder-2.10.1 index 20e877ba8e69..81a7c159573b 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=da6795dfcf466dd24692528babe91ceb diff --git a/metadata/md5-cache/dev-ruby/jmespath-1.4.0 b/metadata/md5-cache/dev-ruby/jmespath-1.4.0 index 32280701e386..772eacf4b3e4 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fae365f01212cb59201ace230dcfc3e1 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 e0122c558331..33c98cca2aa8 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/jquery-rails-4.4.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=85ae89eed8d63ef562588dbc2352c6b0 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 5cd8864203b1..e20c07691cd5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 5fe463afa7b1..f45c1e830329 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d26a2bef7fc0c8b4c636a98c7e53f883 diff --git a/metadata/md5-cache/dev-ruby/json-2.3.0 b/metadata/md5-cache/dev-ruby/json-2.3.0 index 1dffe54b28ab..1fd0209ce007 100644 --- a/metadata/md5-cache/dev-ruby/json-2.3.0 +++ b/metadata/md5-cache/dev-ruby/json-2.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/json-2.3.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=55389de7b620badc19ef1fdbd2407231 diff --git a/metadata/md5-cache/dev-ruby/json-2.3.1 b/metadata/md5-cache/dev-ruby/json-2.3.1 index 497911e19371..55d863215fd9 100644 --- a/metadata/md5-cache/dev-ruby/json-2.3.1 +++ b/metadata/md5-cache/dev-ruby/json-2.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/json-2.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=254792621dc391b646fbc5bbf6095083 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 e03590f11cc3..2155e6a27fdc 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 79baf5bddb0c..569ff0f06e4b 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=05abd6605b04a339981fa2590e21c1a7 diff --git a/metadata/md5-cache/dev-ruby/jwt-2.2.2 b/metadata/md5-cache/dev-ruby/jwt-2.2.2 index 064bd05746e7..235795b84fce 100644 --- a/metadata/md5-cache/dev-ruby/jwt-2.2.2 +++ b/metadata/md5-cache/dev-ruby/jwt-2.2.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jwt/ruby-jwt/archive/v2.2.2.tar.gz -> jwt-2.2.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a033c3af61613da6cb02318f8212a00a diff --git a/metadata/md5-cache/dev-ruby/kirbybase-2.6.1-r2 b/metadata/md5-cache/dev-ruby/kirbybase-2.6.1-r2 index 07d425424d28..9d70d8179967 100644 --- a/metadata/md5-cache/dev-ruby/kirbybase-2.6.1-r2 +++ b/metadata/md5-cache/dev-ruby/kirbybase-2.6.1-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/KirbyBase-2.6.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7d191b7fc485ad2e056fcae7cfe1ddbf diff --git a/metadata/md5-cache/dev-ruby/kissfft-0.0.2 b/metadata/md5-cache/dev-ruby/kissfft-0.0.2 index fd983e254257..c1c8bf4dd4c1 100644 --- a/metadata/md5-cache/dev-ruby/kissfft-0.0.2 +++ b/metadata/md5-cache/dev-ruby/kissfft-0.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/kissfft-0.0.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=923fff2b63a1557639874f3f685afd42 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 c221beaa2552..6a24f4bac305 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/kpeg-1.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1e3eab570b4c76106ea8f7d18655779b diff --git a/metadata/md5-cache/dev-ruby/kramdown-2.3.0 b/metadata/md5-cache/dev-ruby/kramdown-2.3.0 index 9aa7f9d77168..45739d27ab1a 100644 --- a/metadata/md5-cache/dev-ruby/kramdown-2.3.0 +++ b/metadata/md5-cache/dev-ruby/kramdown-2.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/kramdown-2.3.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d5d978b11c76639fd582257082630ec3 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 06eda97054b1..d262b109b6f3 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/kramdown-parser-gfm-1.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=207677e50874b43eb9292cb0858a73a3 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 18b8a2c5bf3d..fc15c84f5193 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/kramdown-syntax-coderay-1.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=43444f9e51271c0db78bfa24579c7fbc diff --git a/metadata/md5-cache/dev-ruby/launchy-2.4.3-r2 b/metadata/md5-cache/dev-ruby/launchy-2.4.3-r2 index ac2e82c4e3e9..2d59763c0659 100644 --- a/metadata/md5-cache/dev-ruby/launchy-2.4.3-r2 +++ b/metadata/md5-cache/dev-ruby/launchy-2.4.3-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/launchy-2.4.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=68a2a8dc9597d0d7c9ca44a3988fec6d diff --git a/metadata/md5-cache/dev-ruby/launchy-2.5.0 b/metadata/md5-cache/dev-ruby/launchy-2.5.0 index 8a61a8f16149..5e6ae2bb316e 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/launchy-2.5.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a824cb9c6f0134cc55ad75678d66e833 diff --git a/metadata/md5-cache/dev-ruby/lemon-0.9.1 b/metadata/md5-cache/dev-ruby/lemon-0.9.1 index 5fa5c98aa9b8..c3b8c38709d3 100644 --- a/metadata/md5-cache/dev-ruby/lemon-0.9.1 +++ b/metadata/md5-cache/dev-ruby/lemon-0.9.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/lemon-0.9.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=8ae50a81195d9c018f5700b3e716b521 diff --git a/metadata/md5-cache/dev-ruby/letter_opener-1.7.0 b/metadata/md5-cache/dev-ruby/letter_opener-1.7.0 index c368324393c1..16fed3d48512 100644 --- a/metadata/md5-cache/dev-ruby/letter_opener-1.7.0 +++ b/metadata/md5-cache/dev-ruby/letter_opener-1.7.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ryanb/letter_opener/archive/v1.7.0.tar.gz -> letter_opener-1.7.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f4f084504de2b25f54eafaa219f71e63 diff --git a/metadata/md5-cache/dev-ruby/levenshtein-0.2.2-r2 b/metadata/md5-cache/dev-ruby/levenshtein-0.2.2-r2 index a51a77b62524..d9fe84964a0e 100644 --- a/metadata/md5-cache/dev-ruby/levenshtein-0.2.2-r2 +++ b/metadata/md5-cache/dev-ruby/levenshtein-0.2.2-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/levenshtein-0.2.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=9978f7550c222c2c6257c15bd7631671 diff --git a/metadata/md5-cache/dev-ruby/libusb-0.6.4 b/metadata/md5-cache/dev-ruby/libusb-0.6.4 index 48dde422d2a2..6023a75b1589 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 053c98c2c634..83fc6748c4ac 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e01726feae7fe36c60cadd5bc2947df1 diff --git a/metadata/md5-cache/dev-ruby/liquid-c-4.0.0 b/metadata/md5-cache/dev-ruby/liquid-c-4.0.0 index 37086792ace3..26ff55b1c618 100644 --- a/metadata/md5-cache/dev-ruby/liquid-c-4.0.0 +++ b/metadata/md5-cache/dev-ruby/liquid-c-4.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/liquid-c-4.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c49410cf496bbeab32161bf51b0c3071 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 746aa8e6e47e..e677676e6e96 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_ruby25 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 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f4fdd719348670776c1009cedc9791a6 diff --git a/metadata/md5-cache/dev-ruby/listen-3.2.1 b/metadata/md5-cache/dev-ruby/listen-3.2.1 index 982bc4c5d2a7..94ec43309704 100644 --- a/metadata/md5-cache/dev-ruby/listen-3.2.1 +++ b/metadata/md5-cache/dev-ruby/listen-3.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/guard/listen/archive/v3.2.1.tar.gz -> listen-3.2.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=803efd272c8f5b36227181f0c80508ad diff --git a/metadata/md5-cache/dev-ruby/listen-3.3.0 b/metadata/md5-cache/dev-ruby/listen-3.3.0 index d8e82d100b4d..0a171fc2a707 100644 --- a/metadata/md5-cache/dev-ruby/listen-3.3.0 +++ b/metadata/md5-cache/dev-ruby/listen-3.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/guard/listen/archive/v3.3.0.tar.gz -> listen-3.3.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ed925bca184fb6ce4daed350cbfcf439 diff --git a/metadata/md5-cache/dev-ruby/listen-3.3.1 b/metadata/md5-cache/dev-ruby/listen-3.3.1 index d1b332e4f053..b56ea5db1648 100644 --- a/metadata/md5-cache/dev-ruby/listen-3.3.1 +++ b/metadata/md5-cache/dev-ruby/listen-3.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/guard/listen/archive/v3.3.1.tar.gz -> listen-3.3.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ed925bca184fb6ce4daed350cbfcf439 diff --git a/metadata/md5-cache/dev-ruby/litc-1.0.3-r1 b/metadata/md5-cache/dev-ruby/litc-1.0.3-r1 index 60021963cd6b..29842019184a 100644 --- a/metadata/md5-cache/dev-ruby/litc-1.0.3-r1 +++ b/metadata/md5-cache/dev-ruby/litc-1.0.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/litc-1.0.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=4041acc2d7d81711f9cb2c6d423b1523 diff --git a/metadata/md5-cache/dev-ruby/little-plugger-1.1.4 b/metadata/md5-cache/dev-ruby/little-plugger-1.1.4 index f7f8947038c2..f6dbfe9dfa4a 100644 --- a/metadata/md5-cache/dev-ruby/little-plugger-1.1.4 +++ b/metadata/md5-cache/dev-ruby/little-plugger-1.1.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/little-plugger-1.1.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=dd87a5f90d2657146899d3e2a7f2c724 diff --git a/metadata/md5-cache/dev-ruby/locale-2.1.3 b/metadata/md5-cache/dev-ruby/locale-2.1.3 index 9eeb34520c38..7b5295ae9722 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=42b4b606aa438550ef701b30b0c16f72 diff --git a/metadata/md5-cache/dev-ruby/lockfile-2.1.3 b/metadata/md5-cache/dev-ruby/lockfile-2.1.3 index 91b573951d89..f8050c2ef257 100644 --- a/metadata/md5-cache/dev-ruby/lockfile-2.1.3 +++ b/metadata/md5-cache/dev-ruby/lockfile-2.1.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/lockfile-2.1.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=722404714f8b22089afc8ddf25008fe8 diff --git a/metadata/md5-cache/dev-ruby/log4r-1.1.10-r2 b/metadata/md5-cache/dev-ruby/log4r-1.1.10-r2 index a09f7ee1470e..50551dc1d4ae 100644 --- a/metadata/md5-cache/dev-ruby/log4r-1.1.10-r2 +++ b/metadata/md5-cache/dev-ruby/log4r-1.1.10-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/log4r-1.1.10.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6a090901ee4fb0f3ff87903f2d8ffad6 diff --git a/metadata/md5-cache/dev-ruby/log_buddy-0.7.0 b/metadata/md5-cache/dev-ruby/log_buddy-0.7.0 index 823f5b2ed502..358b99c41c90 100644 --- a/metadata/md5-cache/dev-ruby/log_buddy-0.7.0 +++ b/metadata/md5-cache/dev-ruby/log_buddy-0.7.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e00bff025217e41f5d9204dba7fd8045 diff --git a/metadata/md5-cache/dev-ruby/logue-1.0.13-r1 b/metadata/md5-cache/dev-ruby/logue-1.0.13-r1 index 0b275b949131..223086c87e1a 100644 --- a/metadata/md5-cache/dev-ruby/logue-1.0.13-r1 +++ b/metadata/md5-cache/dev-ruby/logue-1.0.13-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jpace/logue/archive/v1.0.13.tar.gz -> logue-git-1.0.13.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=98660832e973fbb87bac94bd2b7e706d diff --git a/metadata/md5-cache/dev-ruby/logue-1.0.16 b/metadata/md5-cache/dev-ruby/logue-1.0.16 index 4607160a2d7a..544d05b4835a 100644 --- a/metadata/md5-cache/dev-ruby/logue-1.0.16 +++ b/metadata/md5-cache/dev-ruby/logue-1.0.16 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jpace/logue/archive/v1.0.16.tar.gz -> logue-git-1.0.16.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b841b76fecc5cfe4fe270d037a13381e diff --git a/metadata/md5-cache/dev-ruby/logue-1.0.18 b/metadata/md5-cache/dev-ruby/logue-1.0.18 index 9f55e1e35a0a..9d79755356d4 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fc368e60cbc1635191468236502bf4dd diff --git a/metadata/md5-cache/dev-ruby/loofah-2.4.0 b/metadata/md5-cache/dev-ruby/loofah-2.4.0 index fb8145af9f6a..80947ca08f49 100644 --- a/metadata/md5-cache/dev-ruby/loofah-2.4.0 +++ b/metadata/md5-cache/dev-ruby/loofah-2.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/loofah-2.4.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=57d05e8793cfc37e663c8ac180bead47 diff --git a/metadata/md5-cache/dev-ruby/loofah-2.5.0-r2 b/metadata/md5-cache/dev-ruby/loofah-2.5.0-r2 index 0dabca1c18bc..d43b760d1c39 100644 --- a/metadata/md5-cache/dev-ruby/loofah-2.5.0-r2 +++ b/metadata/md5-cache/dev-ruby/loofah-2.5.0-r2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/flavorjones/loofah/archive/v2.5.0.tar.gz -> loofah-2.5.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b76cef5ad234672ee7a0d1899ac54014 diff --git a/metadata/md5-cache/dev-ruby/loofah-2.6.0-r1 b/metadata/md5-cache/dev-ruby/loofah-2.6.0-r1 index 87fbe64d4cb0..1498c9a1e85f 100644 --- a/metadata/md5-cache/dev-ruby/loofah-2.6.0-r1 +++ b/metadata/md5-cache/dev-ruby/loofah-2.6.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/flavorjones/loofah/archive/v2.6.0.tar.gz -> loofah-2.6.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8444474f2f35a5ae6bc7bef9adf10baa diff --git a/metadata/md5-cache/dev-ruby/loofah-2.7.0 b/metadata/md5-cache/dev-ruby/loofah-2.7.0 index 4ef70938d2f3..7ca73d770dda 100644 --- a/metadata/md5-cache/dev-ruby/loofah-2.7.0 +++ b/metadata/md5-cache/dev-ruby/loofah-2.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/flavorjones/loofah/archive/v2.7.0.tar.gz -> loofah-2.7.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c754e76f6c99e41c217f4b2927348c2e diff --git a/metadata/md5-cache/dev-ruby/loquacious-1.9.1-r2 b/metadata/md5-cache/dev-ruby/loquacious-1.9.1-r2 index c95036708267..65e3238772d1 100644 --- a/metadata/md5-cache/dev-ruby/loquacious-1.9.1-r2 +++ b/metadata/md5-cache/dev-ruby/loquacious-1.9.1-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/loquacious-1.9.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=087d423c01f24025072d74c6cbf87676 diff --git a/metadata/md5-cache/dev-ruby/lumberjack-1.0.13 b/metadata/md5-cache/dev-ruby/lumberjack-1.0.13 index 9266892b57a2..de93bc3794b8 100644 --- a/metadata/md5-cache/dev-ruby/lumberjack-1.0.13 +++ b/metadata/md5-cache/dev-ruby/lumberjack-1.0.13 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/lumberjack-1.0.13.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ad429e5f7883edd2c0fd000d57550510 diff --git a/metadata/md5-cache/dev-ruby/lumberjack-1.2.6 b/metadata/md5-cache/dev-ruby/lumberjack-1.2.6 index ef4c974619b5..9b702203c699 100644 --- a/metadata/md5-cache/dev-ruby/lumberjack-1.2.6 +++ b/metadata/md5-cache/dev-ruby/lumberjack-1.2.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/bdurand/lumberjack/archive/v1.2.6.tar.gz -> lumberjack-1.2.6.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=129d96678de518eacad1d3697f371a3f diff --git a/metadata/md5-cache/dev-ruby/lumberjack-1.2.7 b/metadata/md5-cache/dev-ruby/lumberjack-1.2.7 index 5e39444c284e..e64bdcb591a9 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 3a9b35542f98..cd4829964e3e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6a3b48093fd020b92ee9b517db6ebe9b diff --git a/metadata/md5-cache/dev-ruby/mab-0.0.3 b/metadata/md5-cache/dev-ruby/mab-0.0.3 index 9a53bd983095..bc0a2719048b 100644 --- a/metadata/md5-cache/dev-ruby/mab-0.0.3 +++ b/metadata/md5-cache/dev-ruby/mab-0.0.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mab-0.0.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=24b822b2488dc8b1add6e3b3532a531c 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 6a380e94eadb..25fe97a088a3 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=337253309947335d3a2ff35f8e8cfe74 diff --git a/metadata/md5-cache/dev-ruby/mail-2.7.1 b/metadata/md5-cache/dev-ruby/mail-2.7.1 index 3381c91ad631..e56ff451034a 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_ruby25 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 f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1bce0b3186274edb0afed3e520b294dc diff --git a/metadata/md5-cache/dev-ruby/maildir-2.2.3 b/metadata/md5-cache/dev-ruby/maildir-2.2.3 index 052563d4727a..a8fbe2ca447f 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/maildir-2.2.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5edb6d767dff67eab0dc0d281ed8ba29 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 cc5769ad51c7..440d023241fc 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ef83bd2fbc98c24c3ec2742e8e76a36c diff --git a/metadata/md5-cache/dev-ruby/maruku-0.7.3 b/metadata/md5-cache/dev-ruby/maruku-0.7.3 index 76bfabd0423c..739768f9bc10 100644 --- a/metadata/md5-cache/dev-ruby/maruku-0.7.3 +++ b/metadata/md5-cache/dev-ruby/maruku-0.7.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/maruku-0.7.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5eae868d899262cb73ef5890b8bb826c diff --git a/metadata/md5-cache/dev-ruby/mash-0.1.1-r2 b/metadata/md5-cache/dev-ruby/mash-0.1.1-r2 index b938d0360cd5..59d1f9ee6196 100644 --- a/metadata/md5-cache/dev-ruby/mash-0.1.1-r2 +++ b/metadata/md5-cache/dev-ruby/mash-0.1.1-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=35f5f7fa7856e68c454ced53f0f78174 diff --git a/metadata/md5-cache/dev-ruby/maxitest-3.5.0 b/metadata/md5-cache/dev-ruby/maxitest-3.5.0 index 31fb38aa14f3..4b923f953063 100644 --- a/metadata/md5-cache/dev-ruby/maxitest-3.5.0 +++ b/metadata/md5-cache/dev-ruby/maxitest-3.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/grosser/maxitest/archive/v3.5.0.tar.gz -> maxitest-3.5.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2bd3ea2af35184a6e4b6fa155c49add5 diff --git a/metadata/md5-cache/dev-ruby/maxitest-3.6.0 b/metadata/md5-cache/dev-ruby/maxitest-3.6.0 index 1c7350cd2e24..6d73a63446f1 100644 --- a/metadata/md5-cache/dev-ruby/maxitest-3.6.0 +++ b/metadata/md5-cache/dev-ruby/maxitest-3.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/grosser/maxitest/archive/v3.6.0.tar.gz -> maxitest-3.6.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e4a345fcb3d78885078913ad562c9f11 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 51fe76c9c352..eb6a6b6f3b77 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_ruby25? ( dev-lang/ruby:2.5 ) ruby_ta REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=54d81a019187cd360f863fcd21491383 diff --git a/metadata/md5-cache/dev-ruby/mechanize-2.7.6 b/metadata/md5-cache/dev-ruby/mechanize-2.7.6 index 151f55171e93..0a65aa376df3 100644 --- a/metadata/md5-cache/dev-ruby/mechanize-2.7.6 +++ b/metadata/md5-cache/dev-ruby/mechanize-2.7.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mechanize-2.7.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9c5208c00723100b0f881a760c38c150 diff --git a/metadata/md5-cache/dev-ruby/memoist-0.16.2 b/metadata/md5-cache/dev-ruby/memoist-0.16.2 index f16eb5f608a5..0ab1f51bece5 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/memoist-0.16.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dd1ce6019f729876beef99c300e9148c diff --git a/metadata/md5-cache/dev-ruby/memoizable-0.4.2 b/metadata/md5-cache/dev-ruby/memoizable-0.4.2 index 3674cfe5bde9..4c9b54d3674b 100644 --- a/metadata/md5-cache/dev-ruby/memoizable-0.4.2 +++ b/metadata/md5-cache/dev-ruby/memoizable-0.4.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/memoizable-0.4.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=eb52c1e49ba747ee813b390218b4013f diff --git a/metadata/md5-cache/dev-ruby/memoize-1.3.1-r1 b/metadata/md5-cache/dev-ruby/memoize-1.3.1-r1 index c4e8095ad36b..a4fa9d3fad9b 100644 --- a/metadata/md5-cache/dev-ruby/memoize-1.3.1-r1 +++ b/metadata/md5-cache/dev-ruby/memoize-1.3.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/memoize-1.3.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=77fb1b8caca38b97bed899b32edbaffc diff --git a/metadata/md5-cache/dev-ruby/mercenary-0.4.0 b/metadata/md5-cache/dev-ruby/mercenary-0.4.0 index 235193c28490..e53deb402da4 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=17594eed5549b7450b5944245e90bcf5 diff --git a/metadata/md5-cache/dev-ruby/metaclass-0.0.4 b/metadata/md5-cache/dev-ruby/metaclass-0.0.4 index 8327a5bee5f5..c22faa5f82d1 100644 --- a/metadata/md5-cache/dev-ruby/metaclass-0.0.4 +++ b/metadata/md5-cache/dev-ruby/metaclass-0.0.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0f9ca78eadac286e38fe2d339584a279 diff --git a/metadata/md5-cache/dev-ruby/metaid-1.0-r3 b/metadata/md5-cache/dev-ruby/metaid-1.0-r3 index da73c9b365e0..00eb36d0235f 100644 --- a/metadata/md5-cache/dev-ruby/metaid-1.0-r3 +++ b/metadata/md5-cache/dev-ruby/metaid-1.0-r3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/metaid-1.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=4b8fbb7d1e60b71d0ace1150351b17e1 diff --git a/metadata/md5-cache/dev-ruby/metasm-1.0.4 b/metadata/md5-cache/dev-ruby/metasm-1.0.4 index 1c1aa40174ab..435e09257706 100644 --- a/metadata/md5-cache/dev-ruby/metasm-1.0.4 +++ b/metadata/md5-cache/dev-ruby/metasm-1.0.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.0.4 SRC_URI=https://rubygems.org/gems/metasm-1.0.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=02ac899dd8083bb5e113ff4d23c6bc99 diff --git a/metadata/md5-cache/dev-ruby/method_source-0.9.2 b/metadata/md5-cache/dev-ruby/method_source-0.9.2 index a194b1a0ea95..8609ce08738b 100644 --- a/metadata/md5-cache/dev-ruby/method_source-0.9.2 +++ b/metadata/md5-cache/dev-ruby/method_source-0.9.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/method_source-0.9.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=21d83c617d0520303c86913f4eb80b7a 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 0287d224530c..5eeeec37c6a8 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/method_source-1.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=43958ce2db35783c397a2ff4c689ad03 diff --git a/metadata/md5-cache/dev-ruby/middleware-0.1.0 b/metadata/md5-cache/dev-ruby/middleware-0.1.0 index c4db8e05f59a..e3c1891feccc 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/middleware-0.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3288fd7b3a9b01002debb9e0c7faca23 diff --git a/metadata/md5-cache/dev-ruby/mime-types-2.99.2 b/metadata/md5-cache/dev-ruby/mime-types-2.99.2 index 074f10a03d93..7e5cff6c7428 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-2.99.2 +++ b/metadata/md5-cache/dev-ruby/mime-types-2.99.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/mime-types-2.99.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=00417f6ab3cde6a903f5ee6130be0abc 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 2c356eef5d4b..89c8527fc6e8 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-3.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=78a8b7cf48f6286c07eb4ddb70df2dc6 diff --git a/metadata/md5-cache/dev-ruby/mime-types-data-3.2019.1009 b/metadata/md5-cache/dev-ruby/mime-types-data-3.2019.1009 index 4ede558b13da..468005b1c3ba 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-data-3.2019.1009 +++ b/metadata/md5-cache/dev-ruby/mime-types-data-3.2019.1009 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-data-3.2019.1009.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6365260df479b380dc67e300fb6557e9 diff --git a/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.0425 b/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.0425 index c6528e778e23..f4b52f4300e8 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.0425 +++ b/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.0425 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-data-3.2020.0425.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=83d7493924421dfea6cec2698d6a13cc diff --git a/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.0512 b/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.0512 index 33bcb1876ffc..05c5e43b67f5 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.0512 +++ b/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.0512 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-data-3.2020.0512.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8da51f21100b90f46c8011b9c578334a diff --git a/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.1104 b/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.1104 index 8e5bf9853c85..3091fef0bd22 100644 --- a/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.1104 +++ b/metadata/md5-cache/dev-ruby/mime-types-data-3.2020.1104 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/mime-types-data-3.2020.1104.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c8d53b97d01956672b681fc50d776809 diff --git a/metadata/md5-cache/dev-ruby/mimemagic-0.3.4 b/metadata/md5-cache/dev-ruby/mimemagic-0.3.4 index b880080cc211..d19dc38c005a 100644 --- a/metadata/md5-cache/dev-ruby/mimemagic-0.3.4 +++ b/metadata/md5-cache/dev-ruby/mimemagic-0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mimemagic-0.3.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7ff17934bf90a6d1a35e724486363e00 diff --git a/metadata/md5-cache/dev-ruby/mimemagic-0.3.5 b/metadata/md5-cache/dev-ruby/mimemagic-0.3.5 index 97b89d1a3de9..efd317128788 100644 --- a/metadata/md5-cache/dev-ruby/mimemagic-0.3.5 +++ b/metadata/md5-cache/dev-ruby/mimemagic-0.3.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mimemagic-0.3.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=825daf1399d903366358d66edd31a291 diff --git a/metadata/md5-cache/dev-ruby/mini_magick-4.10.1 b/metadata/md5-cache/dev-ruby/mini_magick-4.10.1 index 0294bbd2a2fa..3f06235208a3 100644 --- a/metadata/md5-cache/dev-ruby/mini_magick-4.10.1 +++ b/metadata/md5-cache/dev-ruby/mini_magick-4.10.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/minimagick/minimagick/archive/v4.10.1.tar.gz -> mini_magick-4.10.1.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=76810672de5ce48d04474c25f981b589 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 4c25eb5d9764..29f87a5bc02d 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_ruby25 ruby_targets_ruby26 ) 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_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=004fbead3d27bcb738f9abd5e3d8e477 diff --git a/metadata/md5-cache/dev-ruby/mini_mime-1.0.1 b/metadata/md5-cache/dev-ruby/mini_mime-1.0.1 index 0106ff532941..26a6c8857386 100644 --- a/metadata/md5-cache/dev-ruby/mini_mime-1.0.1 +++ b/metadata/md5-cache/dev-ruby/mini_mime-1.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/discourse/mini_mime/archive/v1.0.1.tar.gz -> mini_mime-1.0.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=93cab19a9fdb30e93ca4d4d2ad7e2761 diff --git a/metadata/md5-cache/dev-ruby/mini_mime-1.0.2 b/metadata/md5-cache/dev-ruby/mini_mime-1.0.2 index 3428ef545370..7788d4e5494f 100644 --- a/metadata/md5-cache/dev-ruby/mini_mime-1.0.2 +++ b/metadata/md5-cache/dev-ruby/mini_mime-1.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/discourse/mini_mime/archive/v1.0.2.tar.gz -> mini_mime-1.0.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=673b8fd6296cd2207cef3c3cc37eaf7e 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 6a8f5d932b0b..208782da614d 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cdba9482d93493673805679602fee5c5 diff --git a/metadata/md5-cache/dev-ruby/minitar-0.9 b/metadata/md5-cache/dev-ruby/minitar-0.9 index 9e53e54f0ac2..44a91dc475e5 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/halostatue/minitar/archive/v0.9.tar.gz -> minitar-0.9.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6376d6e82b9a8167b977a6fa38c427f8 diff --git a/metadata/md5-cache/dev-ruby/minitest-4.7.5-r2 b/metadata/md5-cache/dev-ruby/minitest-4.7.5-r2 index 885f62ce2147..e873c91fbb58 100644 --- a/metadata/md5-cache/dev-ruby/minitest-4.7.5-r2 +++ b/metadata/md5-cache/dev-ruby/minitest-4.7.5-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/minitest-4.7.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a790e53106ac6cc778772ebf96db78b7 diff --git a/metadata/md5-cache/dev-ruby/minitest-5.11.3 b/metadata/md5-cache/dev-ruby/minitest-5.11.3 index 982f3ec3a241..3e60bb15ac7a 100644 --- a/metadata/md5-cache/dev-ruby/minitest-5.11.3 +++ b/metadata/md5-cache/dev-ruby/minitest-5.11.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.11.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c56f15b9f7632a018151869d700b30d7 diff --git a/metadata/md5-cache/dev-ruby/minitest-5.12.2 b/metadata/md5-cache/dev-ruby/minitest-5.12.2 index dc6ac9cd4411..653abf630c60 100644 --- a/metadata/md5-cache/dev-ruby/minitest-5.12.2 +++ b/metadata/md5-cache/dev-ruby/minitest-5.12.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.12.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cae0264b10cf42f410f4622000f002e9 diff --git a/metadata/md5-cache/dev-ruby/minitest-5.13.0 b/metadata/md5-cache/dev-ruby/minitest-5.13.0 index 62786d43e5db..b7d7a50b4807 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.13.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e660f9268e0fb29f31066c12e6aa9cd7 diff --git a/metadata/md5-cache/dev-ruby/minitest-5.14.0 b/metadata/md5-cache/dev-ruby/minitest-5.14.0 index 42457138d0f3..ab2d7811443c 100644 --- a/metadata/md5-cache/dev-ruby/minitest-5.14.0 +++ b/metadata/md5-cache/dev-ruby/minitest-5.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.14.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e660f9268e0fb29f31066c12e6aa9cd7 diff --git a/metadata/md5-cache/dev-ruby/minitest-5.14.1 b/metadata/md5-cache/dev-ruby/minitest-5.14.1 index 6a4f3258cea2..4859067de06c 100644 --- a/metadata/md5-cache/dev-ruby/minitest-5.14.1 +++ b/metadata/md5-cache/dev-ruby/minitest-5.14.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.14.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e660f9268e0fb29f31066c12e6aa9cd7 diff --git a/metadata/md5-cache/dev-ruby/minitest-5.14.2 b/metadata/md5-cache/dev-ruby/minitest-5.14.2 index 0280b13dcc75..299acb57ef58 100644 --- a/metadata/md5-cache/dev-ruby/minitest-5.14.2 +++ b/metadata/md5-cache/dev-ruby/minitest-5.14.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/minitest-5.14.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cfb661be0b85faf0abac0f68d7ce111b diff --git a/metadata/md5-cache/dev-ruby/minitest-around-0.5.0 b/metadata/md5-cache/dev-ruby/minitest-around-0.5.0 index fd24b2f76e4b..8c802201a5b4 100644 --- a/metadata/md5-cache/dev-ruby/minitest-around-0.5.0 +++ b/metadata/md5-cache/dev-ruby/minitest-around-0.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=306bbbc62107f4070427d053c29286a3 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 22f1dfe795a2..0bd966069bc0 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b738717b8181e9ce1877658f33742cea 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 99a6de83ba17..d9a5ea00b170 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/minitest-global_expectations-1.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=168e7c9a46646cfe70c82c47675c4c17 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 4da01391e534..bb1765a14da5 100644 --- a/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 +++ b/metadata/md5-cache/dev-ruby/minitest-hooks-1.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/minitest-hooks-1.5.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2455342c0a601fd954d0ba3dee5b9475 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 ccb0a1fc1cd2..2a80d6624417 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/minitest-power_assert-0.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1fe2918f1f1d29a4a0b6f161e4f2c656 diff --git a/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1 b/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1 index fe8c1e03145e..fabf09b9fe55 100644 --- a/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1 +++ b/metadata/md5-cache/dev-ruby/minitest-pretty_diff-0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/minitest-pretty_diff-0.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a5e6ad0bf5ee78f88d68f96dbfbdf15e 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 4a6abf50a677..073b5c629c14 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a51a94bd932f5d7ee774fe06abfd25cc diff --git a/metadata/md5-cache/dev-ruby/mocha-0.14.0 b/metadata/md5-cache/dev-ruby/mocha-0.14.0 index 98ab8de5e372..a49a34bbd749 100644 --- a/metadata/md5-cache/dev-ruby/mocha-0.14.0 +++ b/metadata/md5-cache/dev-ruby/mocha-0.14.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.14 SRC_URI=https://rubygems.org/gems/mocha-0.14.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=43aba8d4825999c2eb57dead2f09b0ee diff --git a/metadata/md5-cache/dev-ruby/mocha-1.10.2 b/metadata/md5-cache/dev-ruby/mocha-1.10.2 index 26d4e7d67133..d2bf15eed5ad 100644 --- a/metadata/md5-cache/dev-ruby/mocha-1.10.2 +++ b/metadata/md5-cache/dev-ruby/mocha-1.10.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://rubygems.org/gems/mocha-1.10.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6b8507f1da441215da3040d388795006 diff --git a/metadata/md5-cache/dev-ruby/mocha-1.11.2 b/metadata/md5-cache/dev-ruby/mocha-1.11.2 index 01e67a3b1dc1..b0cae69bbf0e 100644 --- a/metadata/md5-cache/dev-ruby/mocha-1.11.2 +++ b/metadata/md5-cache/dev-ruby/mocha-1.11.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://rubygems.org/gems/mocha-1.11.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2193c00d58cd93cf8bee39540fa6d35b diff --git a/metadata/md5-cache/dev-ruby/mocha-1.8.0 b/metadata/md5-cache/dev-ruby/mocha-1.8.0 index 3c9c567e11a9..3ff9417aa718 100644 --- a/metadata/md5-cache/dev-ruby/mocha-1.8.0 +++ b/metadata/md5-cache/dev-ruby/mocha-1.8.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.0 SRC_URI=https://rubygems.org/gems/mocha-1.8.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9a58dbbf9e31d4327b67fc196ae978fe diff --git a/metadata/md5-cache/dev-ruby/moneta-1.3.0 b/metadata/md5-cache/dev-ruby/moneta-1.3.0 index 8afb13c9df19..ecf6bb085912 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 49ccac8529cb..94931b9b436e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6b05e0c59c9e5c50e67f97fb21960761 diff --git a/metadata/md5-cache/dev-ruby/mqtt-0.5.0 b/metadata/md5-cache/dev-ruby/mqtt-0.5.0 index 1cde0448d3e7..d41fa10fff61 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ebdd4c1bf06228ee8c0a1b0f57aec687 diff --git a/metadata/md5-cache/dev-ruby/msgpack-1.3.3 b/metadata/md5-cache/dev-ruby/msgpack-1.3.3 index 1e1bda49abf4..61c70d7d0fe0 100644 --- a/metadata/md5-cache/dev-ruby/msgpack-1.3.3 +++ b/metadata/md5-cache/dev-ruby/msgpack-1.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/msgpack-1.3.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=611c6b8a44f2d56a30a0baeddaa35f3b diff --git a/metadata/md5-cache/dev-ruby/multi_json-1.13.1 b/metadata/md5-cache/dev-ruby/multi_json-1.13.1 index b40ff3baca1e..f08b94640e7a 100644 --- a/metadata/md5-cache/dev-ruby/multi_json-1.13.1 +++ b/metadata/md5-cache/dev-ruby/multi_json-1.13.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/intridea/multi_json/archive/v1.13.1.tar.gz -> multi_json-1.13.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=20ccba8fd2dff7c8686cd54aa6e92d6e 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 48943fd1b2a4..8351d519b5c4 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bd54ef32088fe394434c2c8a9c4484d9 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 f685bffd140b..3455b0cce5b6 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_ruby25 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.15.0.tar.gz -> multi_json-1.15.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=23c920a9ad1489a630e9b69560652a09 diff --git a/metadata/md5-cache/dev-ruby/multi_test-0.1.2 b/metadata/md5-cache/dev-ruby/multi_test-0.1.2 index 2d3e8a786aea..df62fdc7b656 100644 --- a/metadata/md5-cache/dev-ruby/multi_test-0.1.2 +++ b/metadata/md5-cache/dev-ruby/multi_test-0.1.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/multi_test-0.1.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7b03b6a32e80d6383fbb680862d7ab8d 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 6a4e6d8b3a72..14ed557d6e6e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8ac9ac39ee4b6900e2ac52472728a134 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 18f6ff5ce003..993fff7608af 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/multipart-post-2.1.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ac7baab7d233820ac9c24677f96b9cad diff --git a/metadata/md5-cache/dev-ruby/mustache-1.1.1 b/metadata/md5-cache/dev-ruby/mustache-1.1.1 index bb38f744aa64..7636008f703c 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mustache-1.1.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e15d850789462b9a20c99cd90275edb2 diff --git a/metadata/md5-cache/dev-ruby/mustermann-1.1.1 b/metadata/md5-cache/dev-ruby/mustermann-1.1.1 index 2dedaa6f2d85..2e3e3a35b310 100644 --- a/metadata/md5-cache/dev-ruby/mustermann-1.1.1 +++ b/metadata/md5-cache/dev-ruby/mustermann-1.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/mustermann-1.1.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5e2ac12f14996dbf9c3daab784755be7 diff --git a/metadata/md5-cache/dev-ruby/mysql2-0.5.3 b/metadata/md5-cache/dev-ruby/mysql2-0.5.3 index 5b11df3f2c51..660eeee437ca 100644 --- a/metadata/md5-cache/dev-ruby/mysql2-0.5.3 +++ b/metadata/md5-cache/dev-ruby/mysql2-0.5.3 @@ -12,5 +12,5 @@ REQUIRED_USE=^^ ( mariadb mysql ) || ( ruby_targets_ruby25 ruby_targets_ruby26 r RESTRICT=!test? ( test ) SLOT=0.5 SRC_URI=https://rubygems.org/gems/mysql2-0.5.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=135f29c050ec5667ed30b0e06046d4bc diff --git a/metadata/md5-cache/dev-ruby/nagios-0.0.4-r1 b/metadata/md5-cache/dev-ruby/nagios-0.0.4-r1 index 20fefcbac880..d23599f7ae43 100644 --- a/metadata/md5-cache/dev-ruby/nagios-0.0.4-r1 +++ b/metadata/md5-cache/dev-ruby/nagios-0.0.4-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/nagios-0.0.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=68243c2bd32a44760d05d03a77026770 diff --git a/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r1 b/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r1 index f828708c3db3..d395b60a86d9 100644 --- a/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r1 +++ b/metadata/md5-cache/dev-ruby/nagios_analyzer-0.0.5-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f0b0af24203bc3bb4eb1c11a9119317e diff --git a/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1 b/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1 index ade2d3bbf510..6f9e301ba2a9 100644 --- a/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1 +++ b/metadata/md5-cache/dev-ruby/nanotest-0.9.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/nanotest-0.9.4.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f2ef045582a8b212976980586e3398de diff --git a/metadata/md5-cache/dev-ruby/narray-0.6.1.2 b/metadata/md5-cache/dev-ruby/narray-0.6.1.2 index 04b75a98087f..28a09a59a669 100644 --- a/metadata/md5-cache/dev-ruby/narray-0.6.1.2 +++ b/metadata/md5-cache/dev-ruby/narray-0.6.1.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=985a165bb7fd97b18203ba5508ed6ea9 diff --git a/metadata/md5-cache/dev-ruby/naught-1.1.0 b/metadata/md5-cache/dev-ruby/naught-1.1.0 index 52235c99efdc..47a18046c17c 100644 --- a/metadata/md5-cache/dev-ruby/naught-1.1.0 +++ b/metadata/md5-cache/dev-ruby/naught-1.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://rubygems.org/gems/naught-1.1.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f8772675adeda7154ac39b91dcaec1e0 diff --git a/metadata/md5-cache/dev-ruby/necromancer-0.5.1 b/metadata/md5-cache/dev-ruby/necromancer-0.5.1 index 4c12f2890076..2b87fe2f3268 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1365ed1f8149a96ef7b2b3675e2f5223 diff --git a/metadata/md5-cache/dev-ruby/nenv-0.3.0 b/metadata/md5-cache/dev-ruby/nenv-0.3.0 index 41a07dcf4b82..881342b8f765 100644 --- a/metadata/md5-cache/dev-ruby/nenv-0.3.0 +++ b/metadata/md5-cache/dev-ruby/nenv-0.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0f384fd90b527f031d69c62df45c6168 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 2033fd24b453..71b73159437d 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/neovim-0.8.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a19edb20c3053f1c688461da2f9587fd diff --git a/metadata/md5-cache/dev-ruby/net-http-digest_auth-1.4.1 b/metadata/md5-cache/dev-ruby/net-http-digest_auth-1.4.1 index 81f645d23fa7..f4af8161c403 100644 --- a/metadata/md5-cache/dev-ruby/net-http-digest_auth-1.4.1 +++ b/metadata/md5-cache/dev-ruby/net-http-digest_auth-1.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/net-http-digest_auth-1.4.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=262b8714d0aeb2259868808fe4b6b16a diff --git a/metadata/md5-cache/dev-ruby/net-http-persistent-3.0.0 b/metadata/md5-cache/dev-ruby/net-http-persistent-3.0.0 index 4b9570d411ef..a71b9796bb07 100644 --- a/metadata/md5-cache/dev-ruby/net-http-persistent-3.0.0 +++ b/metadata/md5-cache/dev-ruby/net-http-persistent-3.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/net-http-persistent-3.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e86ee7420e5500bc87c6766b3aab2c4a 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 73a6c55e9223..863311401a74 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=30612ecc573631d5091625dfe4236c7c diff --git a/metadata/md5-cache/dev-ruby/net-http-persistent-4.0.0 b/metadata/md5-cache/dev-ruby/net-http-persistent-4.0.0 index cc7c6e85c50d..c956af23c970 100644 --- a/metadata/md5-cache/dev-ruby/net-http-persistent-4.0.0 +++ b/metadata/md5-cache/dev-ruby/net-http-persistent-4.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/net-http-persistent-4.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a96777132e271e231fa4b6bdc4249b00 diff --git a/metadata/md5-cache/dev-ruby/net-http-pipeline-1.0.1 b/metadata/md5-cache/dev-ruby/net-http-pipeline-1.0.1 index 061e7735f3a5..217d518a643e 100644 --- a/metadata/md5-cache/dev-ruby/net-http-pipeline-1.0.1 +++ b/metadata/md5-cache/dev-ruby/net-http-pipeline-1.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/net-http-pipeline-1.0.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=964dce7f6e3e0310526fee3c937b02c9 diff --git a/metadata/md5-cache/dev-ruby/net-scp-1.2.1-r1 b/metadata/md5-cache/dev-ruby/net-scp-1.2.1-r1 index cc32b90cdbce..89020adeb8b2 100644 --- a/metadata/md5-cache/dev-ruby/net-scp-1.2.1-r1 +++ b/metadata/md5-cache/dev-ruby/net-scp-1.2.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/net-scp-1.2.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a556f4a892f8eed855d5809497c3d882 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 f93da47f0b47..83559f2a87fa 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=adbd3f12d5c7ec481dcfcfdb38c1740a 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 8c065d9210b0..75b164e035af 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1b619e00f680f104950f46aa701b05bd 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 758613738dbc..7ef4c290fca2 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 829b2092346b..df20d7030d20 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=51ed2707d6f953df46c88d552103546a diff --git a/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0 b/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0 index cbf448a5cd9e..a95fcd8cd33f 100644 --- a/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0 +++ b/metadata/md5-cache/dev-ruby/net-ssh-gateway-2.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6e2568a876359508a1024f1bd15e0439 diff --git a/metadata/md5-cache/dev-ruby/net-telnet-0.1.1-r1 b/metadata/md5-cache/dev-ruby/net-telnet-0.1.1-r1 index 7797307e8109..7d8d4b73755a 100644 --- a/metadata/md5-cache/dev-ruby/net-telnet-0.1.1-r1 +++ b/metadata/md5-cache/dev-ruby/net-telnet-0.1.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ruby/net-telnet/archive/v0.1.1.tar.gz -> net-telnet-0.1.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d2c53ba7404ebf94f79fbe2aabfa82d2 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 a42aaab34e88..8f8995b178a3 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=33cb3fd7f501220357f0ecf989f176f9 diff --git a/metadata/md5-cache/dev-ruby/netrc-0.11.0 b/metadata/md5-cache/dev-ruby/netrc-0.11.0 index 665798e34fe2..108ff7c64788 100644 --- a/metadata/md5-cache/dev-ruby/netrc-0.11.0 +++ b/metadata/md5-cache/dev-ruby/netrc-0.11.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/netrc-0.11.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2c455b30f2a59d3330faf076c7e86c44 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 b7b5164ebd7b..e8f7973998ff 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/network_interface-0.0.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=83fa0e9cd3dee0ad2d390e681a92a236 diff --git a/metadata/md5-cache/dev-ruby/nexpose-7.2.1 b/metadata/md5-cache/dev-ruby/nexpose-7.2.1 index f872537d76bd..6bfabf04c59f 100644 --- a/metadata/md5-cache/dev-ruby/nexpose-7.2.1 +++ b/metadata/md5-cache/dev-ruby/nexpose-7.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/rapid7/nexpose-client/archive/v7.2.1.tar.gz -> nexpose-7.2.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1fa4189d6af8e304e5ca2e5d53fcd5e9 diff --git a/metadata/md5-cache/dev-ruby/niceogiri-1.1.2 b/metadata/md5-cache/dev-ruby/niceogiri-1.1.2 index c4285fa5d842..fc68e68a3277 100644 --- a/metadata/md5-cache/dev-ruby/niceogiri-1.1.2 +++ b/metadata/md5-cache/dev-ruby/niceogiri-1.1.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/niceogiri-1.1.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1be431808e617fc2081b959ad8c138c3 diff --git a/metadata/md5-cache/dev-ruby/nio4r-2.5.2 b/metadata/md5-cache/dev-ruby/nio4r-2.5.2 index aaba572adf65..1bea6ae9ad5f 100644 --- a/metadata/md5-cache/dev-ruby/nio4r-2.5.2 +++ b/metadata/md5-cache/dev-ruby/nio4r-2.5.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/nio4r-2.5.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a59e548a8b81056fdbca6f07ee409a3f diff --git a/metadata/md5-cache/dev-ruby/nio4r-2.5.3 b/metadata/md5-cache/dev-ruby/nio4r-2.5.3 index d0359aab85cf..4f03dc9dbad9 100644 --- a/metadata/md5-cache/dev-ruby/nio4r-2.5.3 +++ b/metadata/md5-cache/dev-ruby/nio4r-2.5.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/nio4r-2.5.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c43045f31c99ab46761371547553167e diff --git a/metadata/md5-cache/dev-ruby/nio4r-2.5.4 b/metadata/md5-cache/dev-ruby/nio4r-2.5.4 index b8c1928f486a..28bc3d04c028 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c43045f31c99ab46761371547553167e diff --git a/metadata/md5-cache/dev-ruby/nokogiri-1.10.10 b/metadata/md5-cache/dev-ruby/nokogiri-1.10.10 index 31af5ec1bb18..f58259c73afa 100644 --- a/metadata/md5-cache/dev-ruby/nokogiri-1.10.10 +++ b/metadata/md5-cache/dev-ruby/nokogiri-1.10.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/sparklemotion/nokogiri/archive/v1.10.10.tar.gz -> nokogiri-1.10.10-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7f65f6a4f5a6078a0bbf433d7aad6acc diff --git a/metadata/md5-cache/dev-ruby/nokogiri-1.10.4 b/metadata/md5-cache/dev-ruby/nokogiri-1.10.4 index 82f564610ca6..ac580da4a360 100644 --- a/metadata/md5-cache/dev-ruby/nokogiri-1.10.4 +++ b/metadata/md5-cache/dev-ruby/nokogiri-1.10.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/sparklemotion/nokogiri/archive/v1.10.4.tar.gz -> nokogiri-1.10.4-git.tgz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=269d13136a5869d236bd33cb2e9b9599 diff --git a/metadata/md5-cache/dev-ruby/nokogiri-diff-0.2.0-r2 b/metadata/md5-cache/dev-ruby/nokogiri-diff-0.2.0-r2 index 7d900f3f8771..aa8fa1eb1ff3 100644 --- a/metadata/md5-cache/dev-ruby/nokogiri-diff-0.2.0-r2 +++ b/metadata/md5-cache/dev-ruby/nokogiri-diff-0.2.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/nokogiri-diff-0.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=82adc44d39d2dcb1d94800789c4f1b22 diff --git a/metadata/md5-cache/dev-ruby/nokogumbo-2.0.2 b/metadata/md5-cache/dev-ruby/nokogumbo-2.0.2 index aefe485dd033..111ba31e14af 100644 --- a/metadata/md5-cache/dev-ruby/nokogumbo-2.0.2 +++ b/metadata/md5-cache/dev-ruby/nokogumbo-2.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/rubys/nokogumbo/archive/v2.0.2.tar.gz -> nokogumbo-2.0.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=26cf92ac09959a4b8c6cf514d04cdaf6 diff --git a/metadata/md5-cache/dev-ruby/nokogumbo-2.0.3 b/metadata/md5-cache/dev-ruby/nokogumbo-2.0.3 new file mode 100644 index 000000000000..acbbd9207802 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/nokogumbo-2.0.3 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby25? ( >=dev-ruby/nokogiri-1.8.4[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/nokogiri-1.8.4[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/nokogiri-1.8.4[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DESCRIPTION=A Nokogiri interface to the Gumbo HTML5 parser +EAPI=7 +HOMEPAGE=https://github.com/rubys/nokogumbo +IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test +KEYWORDS=~amd64 ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/nokogiri-1.8.4[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/nokogiri-1.8.4[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/nokogiri-1.8.4[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) +SLOT=2 +SRC_URI=https://github.com/rubys/nokogumbo/archive/v2.0.3.tar.gz -> nokogumbo-2.0.3.tar.gz +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=95f8ff9e013eea336f0fc937220a3490 diff --git a/metadata/md5-cache/dev-ruby/notify-0.5.2-r1 b/metadata/md5-cache/dev-ruby/notify-0.5.2-r1 index 21bb3727ea76..74b78c3233ac 100644 --- a/metadata/md5-cache/dev-ruby/notify-0.5.2-r1 +++ b/metadata/md5-cache/dev-ruby/notify-0.5.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/notify-0.5.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d2bbbe86ee83908254c8eb0b0bfe799a diff --git a/metadata/md5-cache/dev-ruby/ntlm-http-0.1.1-r2 b/metadata/md5-cache/dev-ruby/ntlm-http-0.1.1-r2 index 8e04a36bcee0..807fd1256560 100644 --- a/metadata/md5-cache/dev-ruby/ntlm-http-0.1.1-r2 +++ b/metadata/md5-cache/dev-ruby/ntlm-http-0.1.1-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ntlm-http-0.1.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ccf78e7117742e8cb9273466d1f3222d diff --git a/metadata/md5-cache/dev-ruby/oauth-0.5.4 b/metadata/md5-cache/dev-ruby/oauth-0.5.4 index 5fd504752f23..f51d67b8f410 100644 --- a/metadata/md5-cache/dev-ruby/oauth-0.5.4 +++ b/metadata/md5-cache/dev-ruby/oauth-0.5.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/oauth-xx/oauth-ruby/archive/v0.5.4.tar.gz -> oauth-0.5.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=979052f74c3161281788ccfe0c9dc3f8 diff --git a/metadata/md5-cache/dev-ruby/oauth2-1.4.4 b/metadata/md5-cache/dev-ruby/oauth2-1.4.4 index 4f4a662563df..7bf41ae7ac7d 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_ruby25 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_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=b94c5fdca5532694fbddc4b3918d1da1 diff --git a/metadata/md5-cache/dev-ruby/octokit-4.18.0-r1 b/metadata/md5-cache/dev-ruby/octokit-4.18.0-r1 index aeb0ac8b4771..bf50a441af34 100644 --- a/metadata/md5-cache/dev-ruby/octokit-4.18.0-r1 +++ b/metadata/md5-cache/dev-ruby/octokit-4.18.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/octokit/octokit.rb/archive/v4.18.0.tar.gz -> octokit-4.18.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0b43e0439b81cb62f048b2dc8dcf4881 diff --git a/metadata/md5-cache/dev-ruby/octokit-4.19.0 b/metadata/md5-cache/dev-ruby/octokit-4.19.0 index e6daa47e60fa..5f680402d7d0 100644 --- a/metadata/md5-cache/dev-ruby/octokit-4.19.0 +++ b/metadata/md5-cache/dev-ruby/octokit-4.19.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/octokit/octokit.rb/archive/v4.19.0.tar.gz -> octokit-4.19.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ba109b7097b00fca90bfef3b8d832508 diff --git a/metadata/md5-cache/dev-ruby/omniauth-1.9.1 b/metadata/md5-cache/dev-ruby/omniauth-1.9.1 index 0e109408a431..39b6ef613d83 100644 --- a/metadata/md5-cache/dev-ruby/omniauth-1.9.1 +++ b/metadata/md5-cache/dev-ruby/omniauth-1.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/intridea/omniauth/archive/v1.9.1.tar.gz -> omniauth-1.9.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d562ef7cacabf3147d54290713683253 diff --git a/metadata/md5-cache/dev-ruby/open4-1.3.4 b/metadata/md5-cache/dev-ruby/open4-1.3.4 index 5a448d1016d5..f3fb8c735fa0 100644 --- a/metadata/md5-cache/dev-ruby/open4-1.3.4 +++ b/metadata/md5-cache/dev-ruby/open4-1.3.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/open4-1.3.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6b0c64e001d0c550fa0b898f10a3445f 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 ea7043a97349..45473d6f3632 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 cd54c17c5281..c0f8e3dc7ae0 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f430cdfe12ea4569dab3117d377214d3 diff --git a/metadata/md5-cache/dev-ruby/optionable-0.2.0 b/metadata/md5-cache/dev-ruby/optionable-0.2.0 index e4a0466b580e..c773885e7df3 100644 --- a/metadata/md5-cache/dev-ruby/optionable-0.2.0 +++ b/metadata/md5-cache/dev-ruby/optionable-0.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/optionable-0.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=62cc2c23ae55c74c903bb6f9447fe67a diff --git a/metadata/md5-cache/dev-ruby/org-ruby-0.9.12 b/metadata/md5-cache/dev-ruby/org-ruby-0.9.12 index 7c2e9127dd05..1435de0ef416 100644 --- a/metadata/md5-cache/dev-ruby/org-ruby-0.9.12 +++ b/metadata/md5-cache/dev-ruby/org-ruby-0.9.12 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f6a43393f8fcfe6b3d83aa2094ef0ffb diff --git a/metadata/md5-cache/dev-ruby/origin-2.3.1 b/metadata/md5-cache/dev-ruby/origin-2.3.1 index 531569bca035..3556a9ebe179 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ab674b9a3aaf173708aaac0375e2a3a8 diff --git a/metadata/md5-cache/dev-ruby/ox-2.12.1 b/metadata/md5-cache/dev-ruby/ox-2.12.1 index 43a1eed5aef2..ee6b6c2a5cee 100644 --- a/metadata/md5-cache/dev-ruby/ox-2.12.1 +++ b/metadata/md5-cache/dev-ruby/ox-2.12.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ohler55/ox/archive/v2.12.1.tar.gz -> ox-2.12.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=48c5235e065d192b4b6450c810bd36fe diff --git a/metadata/md5-cache/dev-ruby/ox-2.13.2 b/metadata/md5-cache/dev-ruby/ox-2.13.2 index a76a8a5fdc0f..817ba2f9a0a3 100644 --- a/metadata/md5-cache/dev-ruby/ox-2.13.2 +++ b/metadata/md5-cache/dev-ruby/ox-2.13.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ohler55/ox/archive/v2.13.2.tar.gz -> ox-2.13.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9e917d45444b5e207be1c4b8a6f8c85d diff --git a/metadata/md5-cache/dev-ruby/ox-2.13.3 b/metadata/md5-cache/dev-ruby/ox-2.13.3 index f39001e09382..540dd9e6c516 100644 --- a/metadata/md5-cache/dev-ruby/ox-2.13.3 +++ b/metadata/md5-cache/dev-ruby/ox-2.13.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ohler55/ox/archive/v2.13.3.tar.gz -> ox-2.13.3.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b16d009983335dfe7b626a0a1b5d17dd diff --git a/metadata/md5-cache/dev-ruby/ox-2.13.4 b/metadata/md5-cache/dev-ruby/ox-2.13.4 index 1e14868212c8..bc3c50861279 100644 --- a/metadata/md5-cache/dev-ruby/ox-2.13.4 +++ b/metadata/md5-cache/dev-ruby/ox-2.13.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ohler55/ox/archive/v2.13.4.tar.gz -> ox-2.13.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b16d009983335dfe7b626a0a1b5d17dd diff --git a/metadata/md5-cache/dev-ruby/packetfu-1.1.13 b/metadata/md5-cache/dev-ruby/packetfu-1.1.13 index e316bfef1a5d..a894358fd28c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 58a59f31e04b..280d1828fda1 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=106bf803e12fdf3a6fc344c44aa99782 diff --git a/metadata/md5-cache/dev-ruby/parallel-1.19.2 b/metadata/md5-cache/dev-ruby/parallel-1.19.2 index 62ec75901a84..305b2973925a 100644 --- a/metadata/md5-cache/dev-ruby/parallel-1.19.2 +++ b/metadata/md5-cache/dev-ruby/parallel-1.19.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/grosser/parallel/archive/v1.19.2.tar.gz -> parallel-1.19.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9ef211617128125779043df6776a8501 diff --git a/metadata/md5-cache/dev-ruby/parallel-1.20.0 b/metadata/md5-cache/dev-ruby/parallel-1.20.0 index 986378b04ca6..6dfd240153fd 100644 --- a/metadata/md5-cache/dev-ruby/parallel-1.20.0 +++ b/metadata/md5-cache/dev-ruby/parallel-1.20.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/grosser/parallel/archive/v1.20.0.tar.gz -> parallel-1.20.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9ef211617128125779043df6776a8501 diff --git a/metadata/md5-cache/dev-ruby/paramesan-0.1.1 b/metadata/md5-cache/dev-ruby/paramesan-0.1.1 index 0e916fdd00ec..b39cd18445b9 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4082f55aca0133f24586924aecfc11ca diff --git a/metadata/md5-cache/dev-ruby/parser-2.7.1.3 b/metadata/md5-cache/dev-ruby/parser-2.7.1.3 index 4f4a1cce53d3..6c42a93d1525 100644 --- a/metadata/md5-cache/dev-ruby/parser-2.7.1.3 +++ b/metadata/md5-cache/dev-ruby/parser-2.7.1.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/parser-2.7.1.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4199c19cec545a418f2beb0e4572700f diff --git a/metadata/md5-cache/dev-ruby/parser-2.7.1.4 b/metadata/md5-cache/dev-ruby/parser-2.7.1.4 index 7940c036f35a..9c561793730c 100644 --- a/metadata/md5-cache/dev-ruby/parser-2.7.1.4 +++ b/metadata/md5-cache/dev-ruby/parser-2.7.1.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/parser-2.7.1.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d669eaea2d72b31d29ba5ef9627290e1 diff --git a/metadata/md5-cache/dev-ruby/parser-2.7.1.5 b/metadata/md5-cache/dev-ruby/parser-2.7.1.5 index 501989271a55..e025600438f2 100644 --- a/metadata/md5-cache/dev-ruby/parser-2.7.1.5 +++ b/metadata/md5-cache/dev-ruby/parser-2.7.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/parser-2.7.1.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d669eaea2d72b31d29ba5ef9627290e1 diff --git a/metadata/md5-cache/dev-ruby/parser-2.7.2.0 b/metadata/md5-cache/dev-ruby/parser-2.7.2.0 index 0f46bbdb9c75..bbabf1abf354 100644 --- a/metadata/md5-cache/dev-ruby/parser-2.7.2.0 +++ b/metadata/md5-cache/dev-ruby/parser-2.7.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5cc36e60b7a557d82fffe667ca4b0d57 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 95228e4dcd1b..db3b0c46a815 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c2c637fb3c8788602d77d5a331d5bf7e diff --git a/metadata/md5-cache/dev-ruby/parslet-1.8.2 b/metadata/md5-cache/dev-ruby/parslet-1.8.2 index 439297d507fe..25ef0788e3b6 100644 --- a/metadata/md5-cache/dev-ruby/parslet-1.8.2 +++ b/metadata/md5-cache/dev-ruby/parslet-1.8.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/kschiess/parslet/archive/1.8.2.tar.gz -> parslet-1.8.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=544e0c15c6dd439b5c8769cd1d717102 diff --git a/metadata/md5-cache/dev-ruby/pastel-0.7.4 b/metadata/md5-cache/dev-ruby/pastel-0.7.4 index 069a68a80c4e..05aaf6005946 100644 --- a/metadata/md5-cache/dev-ruby/pastel-0.7.4 +++ b/metadata/md5-cache/dev-ruby/pastel-0.7.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 69685ed8da79..1fe344c13a5d 100644 --- a/metadata/md5-cache/dev-ruby/pastel-0.8.0 +++ b/metadata/md5-cache/dev-ruby/pastel-0.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=193595f400a9b030a024cec3b7ca5cb9 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 6fcd9e692948..eb9f9ce25c7f 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/path_expander-1.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fba2ce20a562163de6355e3b563198da diff --git a/metadata/md5-cache/dev-ruby/pathutil-0.16.2 b/metadata/md5-cache/dev-ruby/pathutil-0.16.2 index 61fb947e9bb2..b0341fe1ce7b 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=41e492d8f3c4911b7d93d3b211e8dc62 diff --git a/metadata/md5-cache/dev-ruby/patron-0.13.1-r1 b/metadata/md5-cache/dev-ruby/patron-0.13.1-r1 index 7779e771350f..22db35dc1c17 100644 --- a/metadata/md5-cache/dev-ruby/patron-0.13.1-r1 +++ b/metadata/md5-cache/dev-ruby/patron-0.13.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/patron-0.13.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6f596b82ca09cbb6893cede7a1ee7612 diff --git a/metadata/md5-cache/dev-ruby/patron-0.13.3 b/metadata/md5-cache/dev-ruby/patron-0.13.3 index b9d3846bf22e..56518491b9bb 100644 --- a/metadata/md5-cache/dev-ruby/patron-0.13.3 +++ b/metadata/md5-cache/dev-ruby/patron-0.13.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/patron-0.13.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e2d681fc6bf2b005cfb6306544f22448 diff --git a/metadata/md5-cache/dev-ruby/pcaprub-0.12.4 b/metadata/md5-cache/dev-ruby/pcaprub-0.12.4 index 666f8f38f0b2..f896e63d8682 100644 --- a/metadata/md5-cache/dev-ruby/pcaprub-0.12.4 +++ b/metadata/md5-cache/dev-ruby/pcaprub-0.12.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=test SLOT=0.12 SRC_URI=https://rubygems.org/gems/pcaprub-0.12.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=187cfd502fcac154f329cdc0fe96e32b diff --git a/metadata/md5-cache/dev-ruby/pcaprub-0.13.0 b/metadata/md5-cache/dev-ruby/pcaprub-0.13.0 index a66411c62539..5096ebc29b38 100644 --- a/metadata/md5-cache/dev-ruby/pcaprub-0.13.0 +++ b/metadata/md5-cache/dev-ruby/pcaprub-0.13.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0.13 SRC_URI=https://rubygems.org/gems/pcaprub-0.13.0.gem -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=996a4e30a6a8234d3ed8aa250d5e8e3b diff --git a/metadata/md5-cache/dev-ruby/pdf-core-0.7.0 b/metadata/md5-cache/dev-ruby/pdf-core-0.7.0 index e61266d3b6f7..5bcb3533cad6 100644 --- a/metadata/md5-cache/dev-ruby/pdf-core-0.7.0 +++ b/metadata/md5-cache/dev-ruby/pdf-core-0.7.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/prawnpdf/pdf-core/archive/0.7.0.tar.gz -> pdf-core-0.7.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2412fd6ea9f3c62136f496cba4cf3689 diff --git a/metadata/md5-cache/dev-ruby/pdf-core-0.8.1 b/metadata/md5-cache/dev-ruby/pdf-core-0.8.1 index 595bc41b01b2..4db612e8d145 100644 --- a/metadata/md5-cache/dev-ruby/pdf-core-0.8.1 +++ b/metadata/md5-cache/dev-ruby/pdf-core-0.8.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/prawnpdf/pdf-core/archive/0.8.1.tar.gz -> pdf-core-0.8.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=069da159be628c332ba89f4e45c79c8c 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 529de169507d..7728cfde8693 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 efa4c2a31b98..ad3aed494586 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1f888e9c449b0483a08c0cb3e8689c97 diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r2 b/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r2 index 9731bb085fd4..1fcee3000cdd 100644 --- a/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r2 +++ b/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a177a7d99a754a3b168ab1ecc72b3955 diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r3 b/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r3 new file mode 100644 index 000000000000..f4c2935e7381 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/pdf-reader-1.4.1-r3 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby25? ( >=dev-ruby/afm-0.2.1[ruby_targets_ruby25(-)] =dev-ruby/ascii85-1*[ruby_targets_ruby25(-)] =dev-ruby/hashery-2*[ruby_targets_ruby25(-)] dev-ruby/ttfunk:*[ruby_targets_ruby25(-)] dev-ruby/ruby-rc4[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/afm-0.2.1[ruby_targets_ruby26(-)] =dev-ruby/ascii85-1*[ruby_targets_ruby26(-)] =dev-ruby/hashery-2*[ruby_targets_ruby26(-)] dev-ruby/ttfunk:*[ruby_targets_ruby26(-)] dev-ruby/ruby-rc4[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/afm-0.2.1[ruby_targets_ruby27(-)] =dev-ruby/ascii85-1*[ruby_targets_ruby27(-)] =dev-ruby/hashery-2*[ruby_targets_ruby27(-)] dev-ruby/ttfunk:*[ruby_targets_ruby27(-)] dev-ruby/ruby-rc4[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DESCRIPTION=PDF parser conforming as much as possible to the PDF specification from Adobe +EAPI=5 +HOMEPAGE=https://github.com/yob/pdf-reader/ +IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/afm-0.2.1[ruby_targets_ruby25(-)] =dev-ruby/ascii85-1*[ruby_targets_ruby25(-)] =dev-ruby/hashery-2*[ruby_targets_ruby25(-)] dev-ruby/ttfunk:*[ruby_targets_ruby25(-)] dev-ruby/ruby-rc4[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/afm-0.2.1[ruby_targets_ruby26(-)] =dev-ruby/ascii85-1*[ruby_targets_ruby26(-)] =dev-ruby/hashery-2*[ruby_targets_ruby26(-)] dev-ruby/ttfunk:*[ruby_targets_ruby26(-)] dev-ruby/ruby-rc4[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/afm-0.2.1[ruby_targets_ruby27(-)] =dev-ruby/ascii85-1*[ruby_targets_ruby27(-)] =dev-ruby/hashery-2*[ruby_targets_ruby27(-)] dev-ruby/ttfunk:*[ruby_targets_ruby27(-)] dev-ruby/ruby-rc4[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) !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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=485b1b6b3b4c461708c2c875b2456a9c diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-2.4.0 b/metadata/md5-cache/dev-ruby/pdf-reader-2.4.0 index 4d79b02f893c..4431407386d3 100644 --- a/metadata/md5-cache/dev-ruby/pdf-reader-2.4.0 +++ b/metadata/md5-cache/dev-ruby/pdf-reader-2.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/yob/pdf-reader/archive/v2.4.0.tar.gz -> pdf-reader-2.4.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b451eacdf93301e8e1f603296f77e824 diff --git a/metadata/md5-cache/dev-ruby/pdf-reader-2.4.1 b/metadata/md5-cache/dev-ruby/pdf-reader-2.4.1 index 96179fc9fa7b..f996834943af 100644 --- a/metadata/md5-cache/dev-ruby/pdf-reader-2.4.1 +++ b/metadata/md5-cache/dev-ruby/pdf-reader-2.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/yob/pdf-reader/archive/v2.4.1.tar.gz -> pdf-reader-2.4.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5c8ee7d02b2fc8278780ce8a3a994ffb diff --git a/metadata/md5-cache/dev-ruby/permutation-0.1.8-r1 b/metadata/md5-cache/dev-ruby/permutation-0.1.8-r1 index 3b35c5b0a861..5adeef960367 100644 --- a/metadata/md5-cache/dev-ruby/permutation-0.1.8-r1 +++ b/metadata/md5-cache/dev-ruby/permutation-0.1.8-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/permutation-0.1.8.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=4040ccd498c3e933dbd154e68e780704 diff --git a/metadata/md5-cache/dev-ruby/pg-0.21.0 b/metadata/md5-cache/dev-ruby/pg-0.21.0 index cd3a6221fbff..4e396d913c55 100644 --- a/metadata/md5-cache/dev-ruby/pg-0.21.0 +++ b/metadata/md5-cache/dev-ruby/pg-0.21.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pg-0.21.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c24ee58f562e13db13a466b3de0adf6e diff --git a/metadata/md5-cache/dev-ruby/pg-1.2.2 b/metadata/md5-cache/dev-ruby/pg-1.2.2 index 5f8e2dc91977..4371d6ed0bdc 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ead9f810fb2fe77a1de5f890c6f93b68 diff --git a/metadata/md5-cache/dev-ruby/pg_array_parser-0.0.9-r2 b/metadata/md5-cache/dev-ruby/pg_array_parser-0.0.9-r2 index 755fb88c92e7..095a5cdb31b7 100644 --- a/metadata/md5-cache/dev-ruby/pg_array_parser-0.0.9-r2 +++ b/metadata/md5-cache/dev-ruby/pg_array_parser-0.0.9-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0.0.9 SRC_URI=https://rubygems.org/gems/pg_array_parser-0.0.9.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=c65ed4b1f6fd2f2cbde6d61f6f226b3f 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 f8d75040ea28..3c7339a2fe7d 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=50072a3a59ba66743b36b623dfb2ba4c 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 8c637b17fead..7169fa7e55fb 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 55e589563a66..dc166213a17e 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pkg-config-1.4.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fb634a7018b03dd48d886cb853b88fba diff --git a/metadata/md5-cache/dev-ruby/plist-3.5.0 b/metadata/md5-cache/dev-ruby/plist-3.5.0 index 2cb8e3a59e2a..862c81833b86 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2343e01a260abe1b89b776c4de890953 diff --git a/metadata/md5-cache/dev-ruby/pluggaloid-1.2.0 b/metadata/md5-cache/dev-ruby/pluggaloid-1.2.0 index 0f01d9272d03..5ddba59a7ec8 100644 --- a/metadata/md5-cache/dev-ruby/pluggaloid-1.2.0 +++ b/metadata/md5-cache/dev-ruby/pluggaloid-1.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pluggaloid-1.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1d51c011f51fa1641230b12bb13c326b diff --git a/metadata/md5-cache/dev-ruby/pluggaloid-1.3.1 b/metadata/md5-cache/dev-ruby/pluggaloid-1.3.1 index 7a57550b1226..c1a092aab1b0 100644 --- a/metadata/md5-cache/dev-ruby/pluggaloid-1.3.1 +++ b/metadata/md5-cache/dev-ruby/pluggaloid-1.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pluggaloid-1.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ea9bc3db210b82a1357442ce4ed7acce diff --git a/metadata/md5-cache/dev-ruby/pluggaloid-1.4.0 b/metadata/md5-cache/dev-ruby/pluggaloid-1.4.0 index 411d3fb75fea..c9d39f21509a 100644 --- a/metadata/md5-cache/dev-ruby/pluggaloid-1.4.0 +++ b/metadata/md5-cache/dev-ruby/pluggaloid-1.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pluggaloid-1.4.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=810ff5a9aa3e2ca75270afe7560f8954 diff --git a/metadata/md5-cache/dev-ruby/pluggaloid-1.4.1 b/metadata/md5-cache/dev-ruby/pluggaloid-1.4.1 index 09910e6808e5..4b76abae0c15 100644 --- a/metadata/md5-cache/dev-ruby/pluggaloid-1.4.1 +++ b/metadata/md5-cache/dev-ruby/pluggaloid-1.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pluggaloid-1.4.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=810ff5a9aa3e2ca75270afe7560f8954 diff --git a/metadata/md5-cache/dev-ruby/pluggaloid-1.5.0 b/metadata/md5-cache/dev-ruby/pluggaloid-1.5.0 index ea8352ef1c12..27a3fe0ec027 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=810ff5a9aa3e2ca75270afe7560f8954 diff --git a/metadata/md5-cache/dev-ruby/podcast-0.0.4-r2 b/metadata/md5-cache/dev-ruby/podcast-0.0.4-r2 index 6d95b9f08d94..319ae918c242 100644 --- a/metadata/md5-cache/dev-ruby/podcast-0.0.4-r2 +++ b/metadata/md5-cache/dev-ruby/podcast-0.0.4-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/podcast-0.0.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=97744be1821b2b801ad8d2c7898ee664 diff --git a/metadata/md5-cache/dev-ruby/polyglot-0.3.5 b/metadata/md5-cache/dev-ruby/polyglot-0.3.5 index 5405b1d9ff38..d70fe7682bb1 100644 --- a/metadata/md5-cache/dev-ruby/polyglot-0.3.5 +++ b/metadata/md5-cache/dev-ruby/polyglot-0.3.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/polyglot-0.3.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=27d939574b11b9b06bf2ca7643a140f6 diff --git a/metadata/md5-cache/dev-ruby/posix-spawn-0.3.14 b/metadata/md5-cache/dev-ruby/posix-spawn-0.3.14 index fcb9b14bb426..b8204826c320 100644 --- a/metadata/md5-cache/dev-ruby/posix-spawn-0.3.14 +++ b/metadata/md5-cache/dev-ruby/posix-spawn-0.3.14 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/posix-spawn-0.3.14.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=250e2eaa64c8cebb2e5586fb2e78c800 diff --git a/metadata/md5-cache/dev-ruby/posix-spawn-0.3.15 b/metadata/md5-cache/dev-ruby/posix-spawn-0.3.15 index fbb1fb62b336..493009b09ae7 100644 --- a/metadata/md5-cache/dev-ruby/posix-spawn-0.3.15 +++ b/metadata/md5-cache/dev-ruby/posix-spawn-0.3.15 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=55808df16c4ea6057e56e1e2ca5a9072 diff --git a/metadata/md5-cache/dev-ruby/power_assert-1.1.5 b/metadata/md5-cache/dev-ruby/power_assert-1.1.5 index 4f82fb751048..b1a77111dd51 100644 --- a/metadata/md5-cache/dev-ruby/power_assert-1.1.5 +++ b/metadata/md5-cache/dev-ruby/power_assert-1.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.5.tar.gz -> power_assert-1.1.5.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4492901ad0ae400eccedaf284a1ef23f diff --git a/metadata/md5-cache/dev-ruby/power_assert-1.1.6 b/metadata/md5-cache/dev-ruby/power_assert-1.1.6 index e53353035ab0..6418b1a2cc81 100644 --- a/metadata/md5-cache/dev-ruby/power_assert-1.1.6 +++ b/metadata/md5-cache/dev-ruby/power_assert-1.1.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.6.tar.gz -> power_assert-1.1.6.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0a46ad4897d11a9e5e121269928a63f8 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 dbff112fcad5..55247ce4d562 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0a46ad4897d11a9e5e121269928a63f8 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 21766b9dec7f..34fadeb95dee 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a01e8ef749c581ed4c77dfd241ff4664 diff --git a/metadata/md5-cache/dev-ruby/prawn-2.2.2 b/metadata/md5-cache/dev-ruby/prawn-2.2.2 index 29f1bbc39aea..d305d7a6af84 100644 --- a/metadata/md5-cache/dev-ruby/prawn-2.2.2 +++ b/metadata/md5-cache/dev-ruby/prawn-2.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/prawnpdf/prawn/archive/2.2.2.tar.gz -> prawn-2.2.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b94071e14cf4bfdf812379e4fb33576c diff --git a/metadata/md5-cache/dev-ruby/prawn-table-0.2.2-r1 b/metadata/md5-cache/dev-ruby/prawn-table-0.2.2-r1 index 6aa85feb438e..952f082c620a 100644 --- a/metadata/md5-cache/dev-ruby/prawn-table-0.2.2-r1 +++ b/metadata/md5-cache/dev-ruby/prawn-table-0.2.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a650c6296a687b90c61d400b50f94150 diff --git a/metadata/md5-cache/dev-ruby/pry-0.13.1 b/metadata/md5-cache/dev-ruby/pry-0.13.1 index 6faad30a2884..d885b93a881a 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=29832c68dc6eaed48e5ec39b83a1e42d 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 7c673de22671..ad6cb40af871 100644 --- a/metadata/md5-cache/dev-ruby/public_suffix-3.1.1 +++ b/metadata/md5-cache/dev-ruby/public_suffix-3.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/public_suffix-3.1.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=eef8f2a265dd05d98c08052311803a93 diff --git a/metadata/md5-cache/dev-ruby/public_suffix-4.0.5 b/metadata/md5-cache/dev-ruby/public_suffix-4.0.5 index f9e06fe3016d..de8cdf319f4d 100644 --- a/metadata/md5-cache/dev-ruby/public_suffix-4.0.5 +++ b/metadata/md5-cache/dev-ruby/public_suffix-4.0.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/public_suffix-4.0.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=58e4ae5fae2844c9658ce623d8836b6a 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 1568ef69f632..5c4b5eb92f2d 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/public_suffix-4.0.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=49d5b53ce8a66b479731f61568229391 diff --git a/metadata/md5-cache/dev-ruby/pundit-2.1.0 b/metadata/md5-cache/dev-ruby/pundit-2.1.0 index 3a8833807100..eb2c7002abc1 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71e8c7845ce69c470e19d143ab85f037 diff --git a/metadata/md5-cache/dev-ruby/puppet_forge-2.3.3 b/metadata/md5-cache/dev-ruby/puppet_forge-2.3.3 index 6f6d541e7a91..1ccca445d0a7 100644 --- a/metadata/md5-cache/dev-ruby/puppet_forge-2.3.3 +++ b/metadata/md5-cache/dev-ruby/puppet_forge-2.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/puppet_forge-2.3.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=638d332a20d36b66aadf468166f2b021 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 591aa75a15e9..b6684a2078f1 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6561d89db28219445d210f486f5f2f52 diff --git a/metadata/md5-cache/dev-ruby/pusher-client-0.6.2 b/metadata/md5-cache/dev-ruby/pusher-client-0.6.2 index 5c6ac6d09f2d..01b5931190dd 100644 --- a/metadata/md5-cache/dev-ruby/pusher-client-0.6.2 +++ b/metadata/md5-cache/dev-ruby/pusher-client-0.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/pusher-client-0.6.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=95924b0260a4dc72de51d785511fe813 diff --git a/metadata/md5-cache/dev-ruby/qed-2.9.2 b/metadata/md5-cache/dev-ruby/qed-2.9.2 index 42e2d907e1d0..afd130be9cad 100644 --- a/metadata/md5-cache/dev-ruby/qed-2.9.2 +++ b/metadata/md5-cache/dev-ruby/qed-2.9.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/qed-2.9.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f4a954247f2987d5bea0b954fa460231 diff --git a/metadata/md5-cache/dev-ruby/racc-1.4.14 b/metadata/md5-cache/dev-ruby/racc-1.4.14 index 2826c9ad0e8c..052982675a70 100644 --- a/metadata/md5-cache/dev-ruby/racc-1.4.14 +++ b/metadata/md5-cache/dev-ruby/racc-1.4.14 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/racc-1.4.14.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=512d2f7b6886af9ca6fa9426496d5a08 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 c09204036c70..ae72ef94e524 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4728088fda8aff077a1ff80eedc6265f diff --git a/metadata/md5-cache/dev-ruby/rack-2.0.9 b/metadata/md5-cache/dev-ruby/rack-2.0.9 index 1bdd466edb2b..d4f9802fa553 100644 --- a/metadata/md5-cache/dev-ruby/rack-2.0.9 +++ b/metadata/md5-cache/dev-ruby/rack-2.0.9 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2.0 SRC_URI=https://rubygems.org/gems/rack-2.0.9.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=42f10bdcf09783243c00e6052a5609c9 diff --git a/metadata/md5-cache/dev-ruby/rack-2.1.4 b/metadata/md5-cache/dev-ruby/rack-2.1.4 index 058479030622..dbb8701895bc 100644 --- a/metadata/md5-cache/dev-ruby/rack-2.1.4 +++ b/metadata/md5-cache/dev-ruby/rack-2.1.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2.1 SRC_URI=https://github.com/rack/rack/archive/2.1.4.tar.gz -> rack-2.1.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0fe72f9a24ee3bb1534b0eba461052c5 diff --git a/metadata/md5-cache/dev-ruby/rack-2.2.3 b/metadata/md5-cache/dev-ruby/rack-2.2.3 index 2935a58dff3c..b38d7c545fe1 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d73a02524e1a7c2b0546b356f011c6eb diff --git a/metadata/md5-cache/dev-ruby/rack-attack-6.3.1 b/metadata/md5-cache/dev-ruby/rack-attack-6.3.1 index b7686df02006..06e5db3ab80a 100644 --- a/metadata/md5-cache/dev-ruby/rack-attack-6.3.1 +++ b/metadata/md5-cache/dev-ruby/rack-attack-6.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/rack-attack-6.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6c331c58240311ce92a3fc6481f882fe diff --git a/metadata/md5-cache/dev-ruby/rack-cache-1.12.0 b/metadata/md5-cache/dev-ruby/rack-cache-1.12.0 index 3aeb36f3db0c..ca3af58c1ed8 100644 --- a/metadata/md5-cache/dev-ruby/rack-cache-1.12.0 +++ b/metadata/md5-cache/dev-ruby/rack-cache-1.12.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.0.tar.gz -> rack-cache-1.12.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=68c74a27ca6b5fb04e29cfb7878f7d81 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 91f48edf0b4e..7c1cc970ffe9 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=56953a37eecf1a0afd97d5318d45da16 diff --git a/metadata/md5-cache/dev-ruby/rack-openid-1.4.2 b/metadata/md5-cache/dev-ruby/rack-openid-1.4.2 index c1bef85a2e45..c25ca3316266 100644 --- a/metadata/md5-cache/dev-ruby/rack-openid-1.4.2 +++ b/metadata/md5-cache/dev-ruby/rack-openid-1.4.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0fc5362c2a5acb8cb257c8f3f4ad7930 diff --git a/metadata/md5-cache/dev-ruby/rack-protection-2.0.8.1 b/metadata/md5-cache/dev-ruby/rack-protection-2.0.8.1 index 1b5903ca447e..1525a3974cca 100644 --- a/metadata/md5-cache/dev-ruby/rack-protection-2.0.8.1 +++ b/metadata/md5-cache/dev-ruby/rack-protection-2.0.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rack-protection-2.0.8.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a483978c660f8f51c5c60b1973c091f7 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 43f0a4a532bb..4fba0c2ebd67 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rack-protection-2.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a358c796fe3b9c46513a2be7160415ff diff --git a/metadata/md5-cache/dev-ruby/rack-ssl-1.4.1 b/metadata/md5-cache/dev-ruby/rack-ssl-1.4.1 index 24b78aef45e1..cd8839130b9a 100644 --- a/metadata/md5-cache/dev-ruby/rack-ssl-1.4.1 +++ b/metadata/md5-cache/dev-ruby/rack-ssl-1.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.4 SRC_URI=https://github.com/josh/rack-ssl/archive/v1.4.1.tar.gz -> rack-ssl-1.4.1-git.tgz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=af23372fbf590bbc2483514425f468b5 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 d4663ba81d0c..323c041c806d 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ec747120d7b5d6e3bcab0b12eb3ec947 diff --git a/metadata/md5-cache/dev-ruby/radius-0.7.5 b/metadata/md5-cache/dev-ruby/radius-0.7.5 index 84e58c724230..af95e27a122f 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/radius-0.7.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1cc45196abb32671f388d765598dfc63 diff --git a/metadata/md5-cache/dev-ruby/rails-5.2.4.3 b/metadata/md5-cache/dev-ruby/rails-5.2.4.3 index ec12ed8ba0ca..a95b2292478c 100644 --- a/metadata/md5-cache/dev-ruby/rails-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/rails-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://rubygems.org/gems/rails-5.2.4.3.gem -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=457af4ad66523048bbf82ef39ab547ff diff --git a/metadata/md5-cache/dev-ruby/rails-5.2.4.4 b/metadata/md5-cache/dev-ruby/rails-5.2.4.4 index 15e40dc898b2..3d5a398e03a0 100644 --- a/metadata/md5-cache/dev-ruby/rails-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/rails-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5.2 SRC_URI=https://rubygems.org/gems/rails-5.2.4.4.gem -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=457af4ad66523048bbf82ef39ab547ff diff --git a/metadata/md5-cache/dev-ruby/rails-6.0.3.2 b/metadata/md5-cache/dev-ruby/rails-6.0.3.2 index 58a195f183c2..9a1b58c50e0d 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/rails-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://rubygems.org/gems/rails-6.0.3.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=813694436dcd4199f77e82243a85fa72 diff --git a/metadata/md5-cache/dev-ruby/rails-6.0.3.3 b/metadata/md5-cache/dev-ruby/rails-6.0.3.3 index 5b9e23232508..03a8587a8723 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/rails-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://rubygems.org/gems/rails-6.0.3.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=813694436dcd4199f77e82243a85fa72 diff --git a/metadata/md5-cache/dev-ruby/rails-6.0.3.4 b/metadata/md5-cache/dev-ruby/rails-6.0.3.4 index 8820f9ff7976..55fc935e4b04 100644 --- a/metadata/md5-cache/dev-ruby/rails-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/rails-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=6.0 SRC_URI=https://rubygems.org/gems/rails-6.0.3.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=813694436dcd4199f77e82243a85fa72 diff --git a/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3 b/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3 index c6cdaf81c7d4..f9814f70c57d 100644 --- a/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3 +++ b/metadata/md5-cache/dev-ruby/rails-dom-testing-2.0.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rails-dom-testing-2.0.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bd7780641ec8ef62180835aa18ad6b65 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 9f4af63d6a1a..e0b8fd0742ee 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4344812cf5f8a5a5ed1becf0e0481c95 diff --git a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.2.0 b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.2.0 index 58e2302ab4ba..8d04f9392104 100644 --- a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.2.0 +++ b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rails-html-sanitizer-1.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b7fb144a84d0a8347006b76d8a1feff9 diff --git a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.3.0 b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.3.0 index be8433179af2..ab7149e8c542 100644 --- a/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.3.0 +++ b/metadata/md5-cache/dev-ruby/rails-html-sanitizer-1.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rails-html-sanitizer-1.3.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=728249e656b9c52226a57edaf6d7bd92 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 ac5220a4150e..25f4ae5c9685 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=55d0c21aa664f89e4a0db98595ca92db diff --git a/metadata/md5-cache/dev-ruby/railties-5.2.4.3 b/metadata/md5-cache/dev-ruby/railties-5.2.4.3 index 060ffa36a893..74f6e2d0bc74 100644 --- a/metadata/md5-cache/dev-ruby/railties-5.2.4.3 +++ b/metadata/md5-cache/dev-ruby/railties-5.2.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.3.tar.gz -> rails-5.2.4.3.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7450e81ef7b10a97768123f84db7d904 diff --git a/metadata/md5-cache/dev-ruby/railties-5.2.4.4 b/metadata/md5-cache/dev-ruby/railties-5.2.4.4 index 4b70c794f4fe..66cddd5867a8 100644 --- a/metadata/md5-cache/dev-ruby/railties-5.2.4.4 +++ b/metadata/md5-cache/dev-ruby/railties-5.2.4.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=5.2 SRC_URI=https://github.com/rails/rails/archive/v5.2.4.4.tar.gz -> rails-5.2.4.4.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=556b7cfd5a3490b6a47b01cdfd9c922e diff --git a/metadata/md5-cache/dev-ruby/railties-6.0.3.2 b/metadata/md5-cache/dev-ruby/railties-6.0.3.2 index be46bb30bbd4..85b547287e85 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.0.3.2 +++ b/metadata/md5-cache/dev-ruby/railties-6.0.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.2.tar.gz -> rails-6.0.3.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=889696cbe40031ad815465258d7df43f diff --git a/metadata/md5-cache/dev-ruby/railties-6.0.3.3 b/metadata/md5-cache/dev-ruby/railties-6.0.3.3 index 28246d7256fd..cf591f7a9272 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.0.3.3 +++ b/metadata/md5-cache/dev-ruby/railties-6.0.3.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.3.tar.gz -> rails-6.0.3.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=889696cbe40031ad815465258d7df43f diff --git a/metadata/md5-cache/dev-ruby/railties-6.0.3.4 b/metadata/md5-cache/dev-ruby/railties-6.0.3.4 index 88ee834d925e..dcf0024f61f3 100644 --- a/metadata/md5-cache/dev-ruby/railties-6.0.3.4 +++ b/metadata/md5-cache/dev-ruby/railties-6.0.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test !test? ( test ) SLOT=6.0 SRC_URI=https://github.com/rails/rails/archive/v6.0.3.4.tar.gz -> rails-6.0.3.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=889696cbe40031ad815465258d7df43f diff --git a/metadata/md5-cache/dev-ruby/rainbow-3.0.0 b/metadata/md5-cache/dev-ruby/rainbow-3.0.0 index cbd83dd381ba..f295183a4662 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3231c58ae99d96d321092d7e0767dffc diff --git a/metadata/md5-cache/dev-ruby/rake-12.3.3 b/metadata/md5-cache/dev-ruby/rake-12.3.3 index eb34135a7ec0..9a40bfc88c29 100644 --- a/metadata/md5-cache/dev-ruby/rake-12.3.3 +++ b/metadata/md5-cache/dev-ruby/rake-12.3.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rake/archive/v12.3.3.tar.gz -> rake-12.3.3.tar.gz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=99b011b7b55a5452ba6d71e415da3279 diff --git a/metadata/md5-cache/dev-ruby/rake-13.0.0 b/metadata/md5-cache/dev-ruby/rake-13.0.0 index fb870b987b27..50490bad9cf6 100644 --- a/metadata/md5-cache/dev-ruby/rake-13.0.0 +++ b/metadata/md5-cache/dev-ruby/rake-13.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rake/archive/v13.0.0.tar.gz -> rake-13.0.0.tar.gz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cc0b6d19240ad2edb94d3feb6b4d6e46 diff --git a/metadata/md5-cache/dev-ruby/rake-13.0.1 b/metadata/md5-cache/dev-ruby/rake-13.0.1 index edadfd1fc260..1568263a5b5a 100644 --- a/metadata/md5-cache/dev-ruby/rake-13.0.1 +++ b/metadata/md5-cache/dev-ruby/rake-13.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rake/archive/v13.0.1.tar.gz -> rake-13.0.1.tar.gz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=51e39ef2238e3fde6cc595d102c1b934 diff --git a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.0 b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.0 index 3e489989efb4..65714d4cef1e 100644 --- a/metadata/md5-cache/dev-ruby/rake-compiler-1.1.0 +++ b/metadata/md5-cache/dev-ruby/rake-compiler-1.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/luislavena/rake-compiler/archive/v1.1.0.tar.gz -> rake-compiler-1.1.0.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d30dd16c0d87aac64d3d0b8f6ad904fc 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 341f2196dbab..238b39a573e0 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=99dc7ce3fa98fa7cef4788aaede153a0 diff --git a/metadata/md5-cache/dev-ruby/rake-remote_task-2.4.3-r1 b/metadata/md5-cache/dev-ruby/rake-remote_task-2.4.3-r1 index f9e802ac38f4..19ac1ee9550f 100644 --- a/metadata/md5-cache/dev-ruby/rake-remote_task-2.4.3-r1 +++ b/metadata/md5-cache/dev-ruby/rake-remote_task-2.4.3-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rake-remote_task-2.4.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8bc81a60a73623e499cf732ba9ee6ee6 diff --git a/metadata/md5-cache/dev-ruby/rantly-2.0.0 b/metadata/md5-cache/dev-ruby/rantly-2.0.0 index ae362081374d..4d05ed1585c7 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rantly-2.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bfe318331a146f7c903329743e1382b9 diff --git a/metadata/md5-cache/dev-ruby/rash-0.4.0-r2 b/metadata/md5-cache/dev-ruby/rash-0.4.0-r2 index 26d791930132..d52950a5ee23 100644 --- a/metadata/md5-cache/dev-ruby/rash-0.4.0-r2 +++ b/metadata/md5-cache/dev-ruby/rash-0.4.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rash-0.4.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=387a19fe9e0bc906e260fcf45980bc71 diff --git a/metadata/md5-cache/dev-ruby/rash_alt-0.4.8 b/metadata/md5-cache/dev-ruby/rash_alt-0.4.8 index 75a1bdba11b9..06f139488b5a 100644 --- a/metadata/md5-cache/dev-ruby/rash_alt-0.4.8 +++ b/metadata/md5-cache/dev-ruby/rash_alt-0.4.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rash_alt-0.4.8.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4cbe4e7248ec14638247d5ab29931fc2 diff --git a/metadata/md5-cache/dev-ruby/rb-gsl-2.1.0.2 b/metadata/md5-cache/dev-ruby/rb-gsl-2.1.0.2 index e51279d93a92..16517b271c24 100644 --- a/metadata/md5-cache/dev-ruby/rb-gsl-2.1.0.2 +++ b/metadata/md5-cache/dev-ruby/rb-gsl-2.1.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=31032a6bc5d147887f359998da09ca6f diff --git a/metadata/md5-cache/dev-ruby/rb-inotify-0.10.0 b/metadata/md5-cache/dev-ruby/rb-inotify-0.10.0 index d4a341c93a4c..bd64958b24dc 100644 --- a/metadata/md5-cache/dev-ruby/rb-inotify-0.10.0 +++ b/metadata/md5-cache/dev-ruby/rb-inotify-0.10.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rb-inotify-0.10.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a324db455c362e6c2a4ff74e9c8ea814 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 6351dee2b752..d79eb1096e91 100644 --- a/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 +++ b/metadata/md5-cache/dev-ruby/rb-inotify-0.10.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rb-inotify-0.10.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=26564ca6f7155978f65d7d0b36034192 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 0bf658c1e995..1b352b7beba5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5482a3e5eb76907bb0eb1a1509715c50 diff --git a/metadata/md5-cache/dev-ruby/rbnacl-4.0.2-r1 b/metadata/md5-cache/dev-ruby/rbnacl-4.0.2-r1 index 70dfff89d356..fbb05543ed1a 100644 --- a/metadata/md5-cache/dev-ruby/rbnacl-4.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/rbnacl-4.0.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/rbnacl-4.0.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3a2c56de159c987050b1006986506b77 diff --git a/metadata/md5-cache/dev-ruby/rbnacl-7.1.1 b/metadata/md5-cache/dev-ruby/rbnacl-7.1.1 index fa702d093c95..9e35d678f24d 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=6 SRC_URI=https://rubygems.org/gems/rbnacl-7.1.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=87f13ebf59357e58ae51d34dc03d6731 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 5d8c1254bfd6..6f475d2fdf25 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a6fadf63bf7b9a7a7c6dd80a8a51a757 diff --git a/metadata/md5-cache/dev-ruby/rbpdf-font-1.19.1 b/metadata/md5-cache/dev-ruby/rbpdf-font-1.19.1 index cc1cb3a209ad..67393e98be81 100644 --- a/metadata/md5-cache/dev-ruby/rbpdf-font-1.19.1 +++ b/metadata/md5-cache/dev-ruby/rbpdf-font-1.19.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rbpdf-font-1.19.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=36c1880cbaa42eac1c20643737adf823 diff --git a/metadata/md5-cache/dev-ruby/rbst-0.6.5 b/metadata/md5-cache/dev-ruby/rbst-0.6.5 index 2d8491e9d19b..665b7d90059a 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_6 python_single_target_python3_7 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_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6060b62d68690b497695ebb7fb5991bc diff --git a/metadata/md5-cache/dev-ruby/rcairo-1.16.2 b/metadata/md5-cache/dev-ruby/rcairo-1.16.2 index e76fe3a8a738..9e36045fcaaf 100644 --- a/metadata/md5-cache/dev-ruby/rcairo-1.16.2 +++ b/metadata/md5-cache/dev-ruby/rcairo-1.16.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cairo-1.16.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8af92b5355d94d5c1a4e4f9e156c78b8 diff --git a/metadata/md5-cache/dev-ruby/rcairo-1.16.4 b/metadata/md5-cache/dev-ruby/rcairo-1.16.4 index 4eed2234e5ac..f61b2940e85c 100644 --- a/metadata/md5-cache/dev-ruby/rcairo-1.16.4 +++ b/metadata/md5-cache/dev-ruby/rcairo-1.16.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cairo-1.16.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a8acd5da0a86de5642953c9a890d777b diff --git a/metadata/md5-cache/dev-ruby/rcairo-1.16.5 b/metadata/md5-cache/dev-ruby/rcairo-1.16.5 index b122d8c90674..2e32b3f2e2b3 100644 --- a/metadata/md5-cache/dev-ruby/rcairo-1.16.5 +++ b/metadata/md5-cache/dev-ruby/rcairo-1.16.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cairo-1.16.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=31a618bb2ac1129488ab42f9dc77c00b diff --git a/metadata/md5-cache/dev-ruby/rcairo-1.16.6 b/metadata/md5-cache/dev-ruby/rcairo-1.16.6 index 21136e10f610..57a0641a1099 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/cairo-1.16.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5030b4d1e4d680b28a84a0292cf486d4 diff --git a/metadata/md5-cache/dev-ruby/rchardet-1.8.0 b/metadata/md5-cache/dev-ruby/rchardet-1.8.0 index 214d75d54d3f..7fb5590d9653 100644 --- a/metadata/md5-cache/dev-ruby/rchardet-1.8.0 +++ b/metadata/md5-cache/dev-ruby/rchardet-1.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7add92c3e36e6b35a247fecf103addf7 diff --git a/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.1 b/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.1 index ccd7065377fa..90ad8cc3e409 100644 --- a/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.1 +++ b/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rdiscount-2.2.0.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=8afdf5086769a80537e9abbe516accff diff --git a/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.2 b/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.2 index b9ec58f403de..b0f807ddab7c 100644 --- a/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.2 +++ b/metadata/md5-cache/dev-ruby/rdiscount-2.2.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rdiscount-2.2.0.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dc7b6ecf78d7e2b17e43b2a31eb5ad0a diff --git a/metadata/md5-cache/dev-ruby/rdoc-6.1.2 b/metadata/md5-cache/dev-ruby/rdoc-6.1.2 index 2a39b51b3f24..aa6b878c1933 100644 --- a/metadata/md5-cache/dev-ruby/rdoc-6.1.2 +++ b/metadata/md5-cache/dev-ruby/rdoc-6.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rdoc/archive/v6.1.2.tar.gz -> rdoc-6.1.2.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=cbcedc0446857f7e7f406a000c4bf0e1 diff --git a/metadata/md5-cache/dev-ruby/rdoc-6.2.0 b/metadata/md5-cache/dev-ruby/rdoc-6.2.0 index e89ba1cb40ad..c1df30d62485 100644 --- a/metadata/md5-cache/dev-ruby/rdoc-6.2.0 +++ b/metadata/md5-cache/dev-ruby/rdoc-6.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/rdoc/archive/v6.2.0.tar.gz -> rdoc-6.2.0.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f9e563388f4ce0e41e7220a42833a8c0 diff --git a/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r2 b/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r2 index 817abca514d9..71ea37ab6cc8 100644 --- a/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r2 +++ b/metadata/md5-cache/dev-ruby/rdtool-0.6.38-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rdtool-0.6.38.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 elisp-common 34cc2b6f6d8914019a353fe39cff43ce epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7732ac483460ba34953095ba5a2fe53f diff --git a/metadata/md5-cache/dev-ruby/recog-2.3.14 b/metadata/md5-cache/dev-ruby/recog-2.3.14 index 80694b1e8249..a3f45a8c58d4 100644 --- a/metadata/md5-cache/dev-ruby/recog-2.3.14 +++ b/metadata/md5-cache/dev-ruby/recog-2.3.14 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/recog-2.3.14.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e71098ba27b5270fb404958997284331 diff --git a/metadata/md5-cache/dev-ruby/recog-2.3.15 b/metadata/md5-cache/dev-ruby/recog-2.3.15 index faedeb264c15..6140406735ef 100644 --- a/metadata/md5-cache/dev-ruby/recog-2.3.15 +++ b/metadata/md5-cache/dev-ruby/recog-2.3.15 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/recog-2.3.15.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e71098ba27b5270fb404958997284331 diff --git a/metadata/md5-cache/dev-ruby/recog-2.3.6 b/metadata/md5-cache/dev-ruby/recog-2.3.6 index ae992516ebe2..85e01dcf9641 100644 --- a/metadata/md5-cache/dev-ruby/recog-2.3.6 +++ b/metadata/md5-cache/dev-ruby/recog-2.3.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/recog-2.3.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=988562d6ee31d53766706d5b8b714ba4 diff --git a/metadata/md5-cache/dev-ruby/recog-2.3.7 b/metadata/md5-cache/dev-ruby/recog-2.3.7 index b833975562fd..45ed6afab052 100644 --- a/metadata/md5-cache/dev-ruby/recog-2.3.7 +++ b/metadata/md5-cache/dev-ruby/recog-2.3.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/recog-2.3.7.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9ed4811ac1c55e1e5a79b6253eb3a26e diff --git a/metadata/md5-cache/dev-ruby/redcarpet-3.4.0 b/metadata/md5-cache/dev-ruby/redcarpet-3.4.0 index 6eb7012721a0..44d82aa40829 100644 --- a/metadata/md5-cache/dev-ruby/redcarpet-3.4.0 +++ b/metadata/md5-cache/dev-ruby/redcarpet-3.4.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/vmg/redcarpet/archive/v3.4.0.tar.gz -> redcarpet-3.4.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1a91396b337d675fb808689c26324519 diff --git a/metadata/md5-cache/dev-ruby/redcarpet-3.5.0 b/metadata/md5-cache/dev-ruby/redcarpet-3.5.0 index f3d2c0f2cebf..84a1530816af 100644 --- a/metadata/md5-cache/dev-ruby/redcarpet-3.5.0 +++ b/metadata/md5-cache/dev-ruby/redcarpet-3.5.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/vmg/redcarpet/archive/v3.5.0.tar.gz -> redcarpet-3.5.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b0929f3ae6e3561b8d2825e913f2099a 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 0881e33f6e21..f531b665d326 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=df58105fa0acfb671ed934b1f7ea9691 diff --git a/metadata/md5-cache/dev-ruby/redis-4.0.1 b/metadata/md5-cache/dev-ruby/redis-4.0.1 index 44eef909d4df..20c6c30d6a8e 100644 --- a/metadata/md5-cache/dev-ruby/redis-4.0.1 +++ b/metadata/md5-cache/dev-ruby/redis-4.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/redis/redis-rb/archive/v4.0.1.tar.gz -> redis-rb-4.0.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7e57b23890ca5568db4c939a7f44dcb4 diff --git a/metadata/md5-cache/dev-ruby/redis-4.1.4 b/metadata/md5-cache/dev-ruby/redis-4.1.4 index 4eb282c9a852..21b85b69f5ec 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3e8d9f37c34a6d3f3164c6136e23ea28 diff --git a/metadata/md5-cache/dev-ruby/ref-2.0.0 b/metadata/md5-cache/dev-ruby/ref-2.0.0 index f996f5986257..3dd0ae80fc59 100644 --- a/metadata/md5-cache/dev-ruby/ref-2.0.0 +++ b/metadata/md5-cache/dev-ruby/ref-2.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2596fe0838905b4e18a13ae884d6103c 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 fb3e005c78f2..6ec8205ccd98 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dccc4b490a8d7c3e0b163154cf4cc62c diff --git a/metadata/md5-cache/dev-ruby/regexp_parser-1.5.1 b/metadata/md5-cache/dev-ruby/regexp_parser-1.5.1 index 22187b8f485a..2cc186952bdc 100644 --- a/metadata/md5-cache/dev-ruby/regexp_parser-1.5.1 +++ b/metadata/md5-cache/dev-ruby/regexp_parser-1.5.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ammar/regexp_parser/archive/v1.5.1.tar.gz -> regexp_parser-1.5.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a58f4ef09407ea730516519f2fce3f60 diff --git a/metadata/md5-cache/dev-ruby/regexp_parser-1.7.1 b/metadata/md5-cache/dev-ruby/regexp_parser-1.7.1 index 5d9619c0c6e4..25c38266d7c2 100644 --- a/metadata/md5-cache/dev-ruby/regexp_parser-1.7.1 +++ b/metadata/md5-cache/dev-ruby/regexp_parser-1.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ammar/regexp_parser/archive/v1.7.1.tar.gz -> regexp_parser-1.7.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=735ab342184ec5b1240d3d6886ecfa15 diff --git a/metadata/md5-cache/dev-ruby/regexp_parser-1.8.0 b/metadata/md5-cache/dev-ruby/regexp_parser-1.8.0 index 1a255f52a58b..dfd72f5062ac 100644 --- a/metadata/md5-cache/dev-ruby/regexp_parser-1.8.0 +++ b/metadata/md5-cache/dev-ruby/regexp_parser-1.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ammar/regexp_parser/archive/v1.8.0.tar.gz -> regexp_parser-1.8.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=844e3973a33dd1d4be26e1289a2e5915 diff --git a/metadata/md5-cache/dev-ruby/regexp_parser-1.8.1 b/metadata/md5-cache/dev-ruby/regexp_parser-1.8.1 index 1da58b5f6193..4f53f6da8849 100644 --- a/metadata/md5-cache/dev-ruby/regexp_parser-1.8.1 +++ b/metadata/md5-cache/dev-ruby/regexp_parser-1.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/ammar/regexp_parser/archive/v1.8.1.tar.gz -> regexp_parser-1.8.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=844e3973a33dd1d4be26e1289a2e5915 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 9d9a89a8d13c..aedd65c3fabb 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=844e3973a33dd1d4be26e1289a2e5915 diff --git a/metadata/md5-cache/dev-ruby/regexp_property_values-1.0.0 b/metadata/md5-cache/dev-ruby/regexp_property_values-1.0.0 index 70b1b929f43d..8092ccf1bfeb 100644 --- a/metadata/md5-cache/dev-ruby/regexp_property_values-1.0.0 +++ b/metadata/md5-cache/dev-ruby/regexp_property_values-1.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/janosch-x/regexp_property_values/archive/v1.0.0.tar.gz -> regexp_property_values-1.0.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b5e367792c62ce279a4233bc3b65adba 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 e122ba6cc085..aa37db90f34c 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/request_store-1.5.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=35c2d438e6c8e8bb270c918a68bd6b76 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 fc99b4aff9d1..0f91a0efdef1 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/rest-client-2.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7612e9a02f3e904523b95ce310901afa diff --git a/metadata/md5-cache/dev-ruby/rexical-1.0.7 b/metadata/md5-cache/dev-ruby/rexical-1.0.7 index 147676f7fbd2..d75f39174064 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rexical-1.0.7.gem -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6725798d5739aad26ab0a33f2cdb4554 diff --git a/metadata/md5-cache/dev-ruby/rexml-3.2.4 b/metadata/md5-cache/dev-ruby/rexml-3.2.4 index 1c133a9a4df1..4bd42b9309b2 100644 --- a/metadata/md5-cache/dev-ruby/rexml-3.2.4 +++ b/metadata/md5-cache/dev-ruby/rexml-3.2.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/ruby/rexml/archive/v3.2.4.tar.gz -> rexml-3.2.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=61feb67d30339894d0122fa4f99baa05 diff --git a/metadata/md5-cache/dev-ruby/rinku-2.0.6 b/metadata/md5-cache/dev-ruby/rinku-2.0.6 index 5ac0914c6b56..d7b2bab4ef00 100644 --- a/metadata/md5-cache/dev-ruby/rinku-2.0.6 +++ b/metadata/md5-cache/dev-ruby/rinku-2.0.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rinku-2.0.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a9e83ddd895787156b6b49694294c034 diff --git a/metadata/md5-cache/dev-ruby/ritex-1.0.1 b/metadata/md5-cache/dev-ruby/ritex-1.0.1 index c0ddcdaa39a6..ed8cc3b66f19 100644 --- a/metadata/md5-cache/dev-ruby/ritex-1.0.1 +++ b/metadata/md5-cache/dev-ruby/ritex-1.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ritex-1.0.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=134631fa8569354e2d6c05c51afec799 diff --git a/metadata/md5-cache/dev-ruby/rjb-1.6.1 b/metadata/md5-cache/dev-ruby/rjb-1.6.1 index 0df466cb1ee8..f450b96762dc 100644 --- a/metadata/md5-cache/dev-ruby/rjb-1.6.1 +++ b/metadata/md5-cache/dev-ruby/rjb-1.6.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rjb-1.6.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 ec7a89849c84f93e9c6db27812923888 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 ec7a89849c84f93e9c6db27812923888 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4395faa246bef2bbe6aa67b811a84398 diff --git a/metadata/md5-cache/dev-ruby/rjb-1.6.2 b/metadata/md5-cache/dev-ruby/rjb-1.6.2 index 0618bd0ca907..c4a2c4190ea9 100644 --- a/metadata/md5-cache/dev-ruby/rjb-1.6.2 +++ b/metadata/md5-cache/dev-ruby/rjb-1.6.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rjb-1.6.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 ec7a89849c84f93e9c6db27812923888 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 java-pkg-2 c4e6af2574fd1dc79b43a6e27af4b5fb java-utils-2 ec7a89849c84f93e9c6db27812923888 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c420913084402fe3c331e1e36152ebdb diff --git a/metadata/md5-cache/dev-ruby/rkelly-remix-0.0.7 b/metadata/md5-cache/dev-ruby/rkelly-remix-0.0.7 index 14811a69a5ca..6670b8cdc254 100644 --- a/metadata/md5-cache/dev-ruby/rkelly-remix-0.0.7 +++ b/metadata/md5-cache/dev-ruby/rkelly-remix-0.0.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rkelly-remix-0.0.7.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=098d498131c683e264fe3fb06ad4148c diff --git a/metadata/md5-cache/dev-ruby/rmagick-3.2.0 b/metadata/md5-cache/dev-ruby/rmagick-3.2.0 index 5c2b9492fa3c..17e2a513ccc4 100644 --- a/metadata/md5-cache/dev-ruby/rmagick-3.2.0 +++ b/metadata/md5-cache/dev-ruby/rmagick-3.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rmagick-3.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9acabe1eaca49b10cad3217afb60e758 diff --git a/metadata/md5-cache/dev-ruby/rmagick-4.1.1 b/metadata/md5-cache/dev-ruby/rmagick-4.1.1 index 17e2b384eebe..59a8aa76eb2f 100644 --- a/metadata/md5-cache/dev-ruby/rmagick-4.1.1 +++ b/metadata/md5-cache/dev-ruby/rmagick-4.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rmagick/rmagick/archive/RMagick_4-1-1.tar.gz -> rmagick-4.1.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d30bcfef6a6cab7b4d0f6ae94d77ea47 diff --git a/metadata/md5-cache/dev-ruby/rmagick-4.1.2 b/metadata/md5-cache/dev-ruby/rmagick-4.1.2 index d22fa16cad47..e48a8758f5a2 100644 --- a/metadata/md5-cache/dev-ruby/rmagick-4.1.2 +++ b/metadata/md5-cache/dev-ruby/rmagick-4.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rmagick/rmagick/archive/RMagick_4-1-2.tar.gz -> rmagick-4.1.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a2c2fc915418474b2624ce7364a98d49 diff --git a/metadata/md5-cache/dev-ruby/roadie-4.0.0 b/metadata/md5-cache/dev-ruby/roadie-4.0.0 index 74726e5f0b1c..665e48c670c0 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0b740404934f4d01cdd212d158cd7a8c 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 65e79b48aa49..74313eabf232 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71552077f581bc50fe933f86145608d5 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 b867cfaa29cf..51f6cdc09171 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f0c14e499642e7ad358da752adfbe330 diff --git a/metadata/md5-cache/dev-ruby/rouge-3.19.0 b/metadata/md5-cache/dev-ruby/rouge-3.19.0 index 194d12959ad3..bca28dc12b37 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.19.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.19.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.19.0.tar.gz -> rouge-3.19.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=45a7953429551a0acd1b79479e449737 diff --git a/metadata/md5-cache/dev-ruby/rouge-3.20.0 b/metadata/md5-cache/dev-ruby/rouge-3.20.0 index 36cdc8016856..a75dbc6d2cb1 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.20.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.20.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.20.0.tar.gz -> rouge-3.20.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=032a8c2f9e31624e5a340f6671f57c8d diff --git a/metadata/md5-cache/dev-ruby/rouge-3.21.0 b/metadata/md5-cache/dev-ruby/rouge-3.21.0 index 895268b33dd8..8d4926624c7d 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.21.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.21.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.21.0.tar.gz -> rouge-3.21.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=452675c218e8b6bd9019c1fe28ac7538 diff --git a/metadata/md5-cache/dev-ruby/rouge-3.22.0 b/metadata/md5-cache/dev-ruby/rouge-3.22.0 index f7a417bd76ae..04394e794c9f 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.22.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.22.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.22.0.tar.gz -> rouge-3.22.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=452675c218e8b6bd9019c1fe28ac7538 diff --git a/metadata/md5-cache/dev-ruby/rouge-3.23.0 b/metadata/md5-cache/dev-ruby/rouge-3.23.0 index 60301dae4e15..45aa7b9da51d 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.23.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.23.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.23.0.tar.gz -> rouge-3.23.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=452675c218e8b6bd9019c1fe28ac7538 diff --git a/metadata/md5-cache/dev-ruby/rouge-3.24.0 b/metadata/md5-cache/dev-ruby/rouge-3.24.0 index dd404d7b8d1d..8794bcc8029c 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.24.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.24.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.24.0.tar.gz -> rouge-3.24.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=452675c218e8b6bd9019c1fe28ac7538 diff --git a/metadata/md5-cache/dev-ruby/rouge-3.25.0 b/metadata/md5-cache/dev-ruby/rouge-3.25.0 index ef555bee4909..0e09fc8ceb2e 100644 --- a/metadata/md5-cache/dev-ruby/rouge-3.25.0 +++ b/metadata/md5-cache/dev-ruby/rouge-3.25.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/jneen/rouge/archive/v3.25.0.tar.gz -> rouge-3.25.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=452675c218e8b6bd9019c1fe28ac7538 diff --git a/metadata/md5-cache/dev-ruby/rqrcode-0.10.1 b/metadata/md5-cache/dev-ruby/rqrcode-0.10.1 index db2848bb158c..de7c8477b443 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode-0.10.1 +++ b/metadata/md5-cache/dev-ruby/rqrcode-0.10.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rqrcode-0.10.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=dc4ef500713166b917fdd3da16bc2d1b diff --git a/metadata/md5-cache/dev-ruby/rqrcode-1.1.1 b/metadata/md5-cache/dev-ruby/rqrcode-1.1.1 index 07f21ee11a3b..80b1b6155cb2 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode-1.1.1 +++ b/metadata/md5-cache/dev-ruby/rqrcode-1.1.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whomwah/rqrcode/archive/v1.1.1.tar.gz -> rqrcode-1.1.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e12a8cf08161b2069fb107716c6fd0b8 diff --git a/metadata/md5-cache/dev-ruby/rqrcode_core-0.1.0 b/metadata/md5-cache/dev-ruby/rqrcode_core-0.1.0 index b9cf8bbb77b8..142fe4834db8 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode_core-0.1.0 +++ b/metadata/md5-cache/dev-ruby/rqrcode_core-0.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whomwah/rqrcode_core/archive/v0.1.0.tar.gz -> rqrcode_core-0.1.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=075f092005efcd3c459ddca71fe2d6f5 diff --git a/metadata/md5-cache/dev-ruby/rqrcode_core-0.1.2 b/metadata/md5-cache/dev-ruby/rqrcode_core-0.1.2 index 55613771be16..1318c29e8c7a 100644 --- a/metadata/md5-cache/dev-ruby/rqrcode_core-0.1.2 +++ b/metadata/md5-cache/dev-ruby/rqrcode_core-0.1.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/whomwah/rqrcode_core/archive/v0.1.2.tar.gz -> rqrcode_core-0.1.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=075f092005efcd3c459ddca71fe2d6f5 diff --git a/metadata/md5-cache/dev-ruby/rr-1.2.1 b/metadata/md5-cache/dev-ruby/rr-1.2.1 index 3970b942b610..7cf196cf51e7 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=302ceb05e7205ff6b07a72953865dd36 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 888f3042e9d0..26040b7c1dac 100644 --- a/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.7.2 +++ b/metadata/md5-cache/dev-ruby/rrdtool-bindings-1.7.2 @@ -11,5 +11,5 @@ REQUIRED_USE=test? ( graph ) || ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_t RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://oss.oetiker.ch/rrdtool/pub/rrdtool-1.7.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ef5c3b26ee7d9126323e13acb29d470f diff --git a/metadata/md5-cache/dev-ruby/rspec-2.99.0 b/metadata/md5-cache/dev-ruby/rspec-2.99.0 index 08b2c9b90755..dc0576d21797 100644 --- a/metadata/md5-cache/dev-ruby/rspec-2.99.0 +++ b/metadata/md5-cache/dev-ruby/rspec-2.99.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=35ebb4d02100440d2ea163a1f0f11141 diff --git a/metadata/md5-cache/dev-ruby/rspec-3.10.0 b/metadata/md5-cache/dev-ruby/rspec-3.10.0 index 70393ace9fab..8c1400801675 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/rspec-3.10.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d13103609e4bd0fe5ec592b73f96cc25 diff --git a/metadata/md5-cache/dev-ruby/rspec-3.8.0 b/metadata/md5-cache/dev-ruby/rspec-3.8.0 index 13e16d963222..c85fa47eb832 100644 --- a/metadata/md5-cache/dev-ruby/rspec-3.8.0 +++ b/metadata/md5-cache/dev-ruby/rspec-3.8.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/rspec-3.8.0.gem -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5ee85c77898bd22b714e91f9a61c1a8b diff --git a/metadata/md5-cache/dev-ruby/rspec-3.9.0 b/metadata/md5-cache/dev-ruby/rspec-3.9.0 index b848947e2d90..6b326e788133 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ee0f825c2831fcc75a40ea2460e79377 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 d0a515961e75..0a8fe9097307 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-collection_matchers-1.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=835acda928e845a2a7a72eb7b2140294 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 cec7a061ed72..d475ea1a8467 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 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=53dbe9661e1feee84e455a54c228d56c diff --git a/metadata/md5-cache/dev-ruby/rspec-core-3.10.0 b/metadata/md5-cache/dev-ruby/rspec-core-3.10.0 index a949bb9007bc..0b2f66eb57b4 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-3.10.0 +++ b/metadata/md5-cache/dev-ruby/rspec-core-3.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.10.0.tar.gz -> rspec-core-3.10.0-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=22751a3b37f62c5421df1e85d1275b07 diff --git a/metadata/md5-cache/dev-ruby/rspec-core-3.8.2 b/metadata/md5-cache/dev-ruby/rspec-core-3.8.2 index 4374d4070c89..af0bc5f6afb3 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-3.8.2 +++ b/metadata/md5-cache/dev-ruby/rspec-core-3.8.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-core/archive/v3.8.2.tar.gz -> rspec-core-3.8.2-git.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f9699cb5071784bcf7b9d26f31d3ed42 diff --git a/metadata/md5-cache/dev-ruby/rspec-core-3.9.1 b/metadata/md5-cache/dev-ruby/rspec-core-3.9.1 index 2d5e8eac8597..3ff5908bd23d 100644 --- a/metadata/md5-cache/dev-ruby/rspec-core-3.9.1 +++ b/metadata/md5-cache/dev-ruby/rspec-core-3.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.1.tar.gz -> rspec-core-3.9.1-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f8ba294373aab5e1af6adc8b0ab18f70 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 a9b639a5ab5b..236e515d6ae9 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f8ba294373aab5e1af6adc8b0ab18f70 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 2e9b713be172..0e6f1a64c07b 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-2.99.2 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-2.99.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0c0c91e6bc38462351d06bf565734377 diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.0 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.0 index 2a2a2f6a9ae4..b9ad454317f7 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.0 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.10.0.tar.gz -> rspec-expectations-3.10.0-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d590c37d9ddfe705e16c1c63ea51d3a2 diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.4 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.4 index 0871f4be4962..9455b7abe730 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.4 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-expectations/archive/v3.8.4.tar.gz -> rspec-expectations-3.8.4-git.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=689f222e7a3c276ea37b0ab7c65067d4 diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.6 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.6 index 1eae0d0d63f3..5b08337e5fa3 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.6 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.8.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-expectations/archive/v3.8.6.tar.gz -> rspec-expectations-3.8.6-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=186bd4b2c510b56d0456f3c4cb349bec diff --git a/metadata/md5-cache/dev-ruby/rspec-expectations-3.9.1 b/metadata/md5-cache/dev-ruby/rspec-expectations-3.9.1 index 84e8f84c939a..29a243a9e8e2 100644 --- a/metadata/md5-cache/dev-ruby/rspec-expectations-3.9.1 +++ b/metadata/md5-cache/dev-ruby/rspec-expectations-3.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.1.tar.gz -> rspec-expectations-3.9.1-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bf71d7e960aeaa81d7de3e63bac179a5 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 a41e28911841..950753ffdeeb 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ae462d19204de282b7a78b8bf2317653 diff --git a/metadata/md5-cache/dev-ruby/rspec-its-1.2.0-r1 b/metadata/md5-cache/dev-ruby/rspec-its-1.2.0-r1 index 292c308bfc0a..044323348fa4 100644 --- a/metadata/md5-cache/dev-ruby/rspec-its-1.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/rspec-its-1.2.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-its-1.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e7c3774ec9f8631b08125de9ea9bedf4 diff --git a/metadata/md5-cache/dev-ruby/rspec-its-1.3.0 b/metadata/md5-cache/dev-ruby/rspec-its-1.3.0 index 71d918d8c677..2b8ceec8283e 100644 --- a/metadata/md5-cache/dev-ruby/rspec-its-1.3.0 +++ b/metadata/md5-cache/dev-ruby/rspec-its-1.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-its-1.3.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=60e2cf2270f3376b79bb52de03152e03 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 890e523459da..7fb13f227881 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bcd421b61c441ed00bd0afee950ca311 diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-2.99.2 b/metadata/md5-cache/dev-ruby/rspec-mocks-2.99.2 index 76fb578c7717..01d53e3241aa 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-2.99.2 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-2.99.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d4e5873114391679790798bbd6c11b4a diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.0 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.0 index d0df6dcaca3c..4f2b166a170c 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.0 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.10.0.tar.gz -> rspec-mocks-3.10.0-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=da810f8efefefe1df2b1a251b9b7908c diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.1 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.1 index fd2cb1108fde..79e3c1a6854a 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.1 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v3.8.1.tar.gz -> rspec-mocks-3.8.1-git.tgz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=23e9068d45fd73d2d0df425a53cb3c7b diff --git a/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.2 b/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.2 index 25c7a1ddf235..d3ab07166db4 100644 --- a/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.2 +++ b/metadata/md5-cache/dev-ruby/rspec-mocks-3.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-mocks/archive/v3.8.2.tar.gz -> rspec-mocks-3.8.2-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a57493caa5c3e960e509627c3717ec1f 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 39c31db9f9a6..122974a65503 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2c0a990d539bae7e3b8498576c4e7ab6 diff --git a/metadata/md5-cache/dev-ruby/rspec-rails-3.8.3 b/metadata/md5-cache/dev-ruby/rspec-rails-3.8.3 index d52345998d43..9354628d83f0 100644 --- a/metadata/md5-cache/dev-ruby/rspec-rails-3.8.3 +++ b/metadata/md5-cache/dev-ruby/rspec-rails-3.8.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-rails/archive/v3.8.3.tar.gz -> rspec-rails-3.8.3.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=58cec62d0e1531f05ec4d8d155b54c9e 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 322dbfa54d85..4a9ca5353f4a 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e6fe0e6b3ba349479aec4da0c58cd611 diff --git a/metadata/md5-cache/dev-ruby/rspec-rails-4.0.1 b/metadata/md5-cache/dev-ruby/rspec-rails-4.0.1 index 63dfdc1be8f3..de6ac32b59b2 100644 --- a/metadata/md5-cache/dev-ruby/rspec-rails-4.0.1 +++ b/metadata/md5-cache/dev-ruby/rspec-rails-4.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rspec/rspec-rails/archive/v4.0.1.tar.gz -> rspec-rails-4.0.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=53478510803e16faacf0c7e7ac3d102b 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 480d745a2d1b..910eda0dce00 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ad45503b9d2b0f4204b57d0eae865280 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 5c401e2bf86f..a058a9f5b973 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/rspec-stubbed_env-1.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=16860b027af3f092c6c670eee923583c diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.10.0 b/metadata/md5-cache/dev-ruby/rspec-support-3.10.0 index 592a656d0993..ebb3ea21997e 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.10.0 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.10.0.tar.gz -> rspec-support-3.10.0-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bfd71bc1992d1ae6d395649801fdfb18 diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.8.2 b/metadata/md5-cache/dev-ruby/rspec-support-3.8.2 index c13a04ac77bf..55d866f403da 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.8.2 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.8.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.8.2.tar.gz -> rspec-support-3.8.2-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7783e2a2913de40068044ab113908c04 diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.8.3 b/metadata/md5-cache/dev-ruby/rspec-support-3.8.3 index 58c61d55da3c..6d0eb5a44fa2 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.8.3 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.8.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.8.3.tar.gz -> rspec-support-3.8.3-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=42195087f740e824b7566a5071eeaa54 diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.9.0 b/metadata/md5-cache/dev-ruby/rspec-support-3.9.0 index 8bf4d385b45d..1680b1833eb8 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.9.0 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.9.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.9.0.tar.gz -> rspec-support-3.9.0-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=42195087f740e824b7566a5071eeaa54 diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.9.1 b/metadata/md5-cache/dev-ruby/rspec-support-3.9.1 index 6d9ea0c3e861..d72588537156 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.9.1 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.9.1.tar.gz -> rspec-support-3.9.1-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=42195087f740e824b7566a5071eeaa54 diff --git a/metadata/md5-cache/dev-ruby/rspec-support-3.9.2 b/metadata/md5-cache/dev-ruby/rspec-support-3.9.2 index 6c98d4913ec6..5b652508e0d5 100644 --- a/metadata/md5-cache/dev-ruby/rspec-support-3.9.2 +++ b/metadata/md5-cache/dev-ruby/rspec-support-3.9.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rspec/rspec-support/archive/v3.9.2.tar.gz -> rspec-support-3.9.2-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5cff49821052701c1ac54c2c6172151e 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 d2e71652d5a1..330e0044e0f6 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bfd71bc1992d1ae6d395649801fdfb18 diff --git a/metadata/md5-cache/dev-ruby/rspectacular-0.70.8 b/metadata/md5-cache/dev-ruby/rspectacular-0.70.8 index aa0d0925881f..1d9020256a4f 100644 --- a/metadata/md5-cache/dev-ruby/rspectacular-0.70.8 +++ b/metadata/md5-cache/dev-ruby/rspectacular-0.70.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rspectacular-0.70.8.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8fbae0f894f7e2a2760c6adc7d75f39a 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 5f88cc61df84..98f94f39230c 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rspectacular-0.70.8.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=63ee8f4559d33c46862fb6aa3b954eb0 diff --git a/metadata/md5-cache/dev-ruby/ruby-atk-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-atk-3.3.2 index 98ec2e9ea2bf..80f64020edac 100644 --- a/metadata/md5-cache/dev-ruby/ruby-atk-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-atk-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=130d2effceb4f4d62f7e68e6be775c3c diff --git a/metadata/md5-cache/dev-ruby/ruby-atk-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-atk-3.3.6 index 04cc9872997e..f3e050bb1909 100644 --- a/metadata/md5-cache/dev-ruby/ruby-atk-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-atk-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9e2d33ca12ffe7932ac9111c868b53e2 diff --git a/metadata/md5-cache/dev-ruby/ruby-atk-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-atk-3.3.7 index 564841f6d422..3fc149646082 100644 --- a/metadata/md5-cache/dev-ruby/ruby-atk-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-atk-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9e2d33ca12ffe7932ac9111c868b53e2 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 d9a6fdb62d2c..af421e3065bd 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0fcde08d15ac9bb0acf5e887f97a0fe1 diff --git a/metadata/md5-cache/dev-ruby/ruby-augeas-0.5.0-r3 b/metadata/md5-cache/dev-ruby/ruby-augeas-0.5.0-r3 index d7873e321603..935a0decd936 100644 --- a/metadata/md5-cache/dev-ruby/ruby-augeas-0.5.0-r3 +++ b/metadata/md5-cache/dev-ruby/ruby-augeas-0.5.0-r3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=http://download.augeas.net/ruby/ruby-augeas-0.5.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0d52a03a58fe84d2ae64979d40d06c8c diff --git a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.2 index f5196a85d2f2..42e43d182486 100644 --- a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cdbf5ef1c3f0c7805eb60c3434bcacb9 diff --git a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.6 index 86a529c5e234..f001ddb38811 100644 --- a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=518a3cddf812629b9910063447b2f6e5 diff --git a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.7 index 7fbceebbf5fb..302d2a27f05c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6c29f38d6537f1bc06f4e59c654d365a 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 20829330094e..575bffc96ff4 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=64f3c7b5c4d2bacf51ef62e728a94b55 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.2 index 0c57875bf77a..0f1732b92073 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=e459cac84e7dcb9645b4b1daf8bc3328 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.6 index ed2b6f18024b..d675225df776 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=003bf8366491f448fe59e9526a052822 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.7 index 2128db9a7ce2..39fd10e0da07 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=003bf8366491f448fe59e9526a052822 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 2a474c9f2743..67d9c9771388 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=430905a85e0ac827969f9efecf0577ee diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.2 index 56e22c159f12..05c2f9d96c3f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a82532948af4ba2928ff9af95904ea4a diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.6 index 1c5f0a288efc..9903a2a6f50b 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6c47be4fcd19d73e3d46fb4095ffbea6 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.7 index 2daf2b3a587c..cad4a358ffc6 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gdk-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6c47be4fcd19d73e3d46fb4095ffbea6 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 77c476bca0c9..64a9186fb96e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ea8924d8deba4b98b8ccec7513bc4364 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.2 index 33e536eff65d..02cf9807ed10 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=ede9ee09b0f1d64b3a3b8f0e43f40045 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.6 index 39348b482f00..8f8934a4e6fe 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=cf40bf7df2a51db7f566a49b70887307 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.7 index 2c547853a9de..5c1549e01e90 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=cf40bf7df2a51db7f566a49b70887307 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 d8c40138fe20..06fb9eb55ce0 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=2fec224b642d6b62e6cc1d0964de31e9 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.2 index 49a9f44f002f..3d620caa377f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=2c3caebf8e8c876297594e73926d317d diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.6 index 1b950a076f33..a37b3b8324ae 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=a739bcc21280ce4d4a4723036a9742c1 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.7 index 3e5eed42be26..99f6d465dde3 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=a739bcc21280ce4d4a4723036a9742c1 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 eae00dae2851..384301f46631 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=6cd04c0e563ea609b1ded82b94d642c0 diff --git a/metadata/md5-cache/dev-ruby/ruby-dict-0.9.4-r4 b/metadata/md5-cache/dev-ruby/ruby-dict-0.9.4-r4 index 67ac765cf2b1..9df1b513f7d6 100644 --- a/metadata/md5-cache/dev-ruby/ruby-dict-0.9.4-r4 +++ b/metadata/md5-cache/dev-ruby/ruby-dict-0.9.4-r4 @@ -10,5 +10,5 @@ RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) SLOT=0 SRC_URI=http://www.caliban.org/files/ruby/ruby-dict-0.9.4.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e82298a9a6825e533443a5747098656c diff --git a/metadata/md5-cache/dev-ruby/ruby-elf-1.0.8 b/metadata/md5-cache/dev-ruby/ruby-elf-1.0.8 index bdbdbb674508..a09ed80bcc1a 100644 --- a/metadata/md5-cache/dev-ruby/ruby-elf-1.0.8 +++ b/metadata/md5-cache/dev-ruby/ruby-elf-1.0.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=dbeb4c2223fe9be4a38a6bd46ee6288d diff --git a/metadata/md5-cache/dev-ruby/ruby-feedparser-0.9.4 b/metadata/md5-cache/dev-ruby/ruby-feedparser-0.9.4 index 158a7e7c15e1..aaeec010d1f5 100644 --- a/metadata/md5-cache/dev-ruby/ruby-feedparser-0.9.4 +++ b/metadata/md5-cache/dev-ruby/ruby-feedparser-0.9.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/feed2imap/ruby-feedparser/archive/v0.9.4.tar.gz -> ruby-feedparser-0.9.4.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=751a220a6221ae2d649b2554a7d69932 diff --git a/metadata/md5-cache/dev-ruby/ruby-filemagic-0.7.2 b/metadata/md5-cache/dev-ruby/ruby-filemagic-0.7.2 index 9eb7d111f729..aab27bef7b24 100644 --- a/metadata/md5-cache/dev-ruby/ruby-filemagic-0.7.2 +++ b/metadata/md5-cache/dev-ruby/ruby-filemagic-0.7.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-filemagic-0.7.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bcbc9d844a03c3f33c693e03187ae986 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.2 index f7d40c515dd6..1d493efb500e 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=3c63ef61abc7d8a60ae293fe3edd3b10 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.6 index 6c9fe6b1d585..1da9878fa24c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=73c9b2b83532cecbe1f82f7ecf8658b9 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.7 index c7ed6cf0ea98..624d33eb4ae1 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=73c9b2b83532cecbe1f82f7ecf8658b9 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 814b95a459b7..b7cb99d916b8 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=8b0b2c1b6bdb2ec81b7396f894a7ac41 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.2 index 47fecf5b0167..d15e96e7ce94 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f51cc0dee10e1df3e6807c9665a53d06 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.6 index 437cdafb2050..5855b3d6d118 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9913db81ac37b2033bd1286d60812b58 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.7 index c92d4365b3d9..a9e4a3e94b1a 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9913db81ac37b2033bd1286d60812b58 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 eab966ef7ccb..f9a964d012b8 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f43045e03710760c52b07caf4393f9ad 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 aa1d30ccf42d..dcb422aa1f0e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1b60a3c7a192a092d4a8219d51f71c90 diff --git a/metadata/md5-cache/dev-ruby/ruby-gettext-3.2.9 b/metadata/md5-cache/dev-ruby/ruby-gettext-3.2.9 index bb151de8d083..ccbb5a64e8fc 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gettext-3.2.9 +++ b/metadata/md5-cache/dev-ruby/ruby-gettext-3.2.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gettext-3.2.9.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7f8caac4b252394db7df01f2b8fb6bcb 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 4b5d7a0d851a..84abebc2e720 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e92e803ecd053d689413aabc075e7b69 diff --git a/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.6 index 5c362e9ced03..576ca9b42f10 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gettext-3.3.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/gettext-3.3.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=af73144ab02eef3f615020ed804ef0f7 diff --git a/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.2 index 1e702da95e9f..f007b5e16200 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ba37a147531e1098761cb351fe9dfe9d diff --git a/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.6 index e37fb4ecb95d..aa52161ee699 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8beea3539e004cd64e4e0df2b2d16b67 diff --git a/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.7 index d692f2a66fec..7918a395855d 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gio2-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=739ba12c85bc765456fde2d09a7125b4 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 416e63feac2f..56794e3138a8 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b7fe01573b18cc72852467b206a9ad92 diff --git a/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.2 index b9eebc727162..14bc16c638c0 100644 --- a/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0383bb15be3f72be124986b7b746b9cf diff --git a/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.6 index 4143262d7da4..13e75d8f369f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2fd8b12a3a2daaa597ca6b5f4a7addf4 diff --git a/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.7 index e4c89bc5a2f0..e503e2ad5675 100644 --- a/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-glib2-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c912662232d734a89613dfa3d22124d6 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 821bb8d73fd7..c9ae04fac4ea 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3920354cc7e3262f2f05afacac2c0010 diff --git a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.2 index 6e2c6478dc5a..1037d1a96d49 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.2 @@ -10,5 +10,5 @@ RDEPEND=ruby_targets_ruby25? ( ~dev-ruby/ruby-atk-3.3.2[ruby_targets_ruby25(-)] REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9b4fc01a7b305af61beef4bfd065f1f9 diff --git a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.6 index 6a9a1f58aa69..da20a2ebd64b 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.6 @@ -10,5 +10,5 @@ RDEPEND=ruby_targets_ruby25? ( ~dev-ruby/ruby-atk-3.3.6[ruby_targets_ruby25(-)] REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7ed9679285d99c67a742069ab50847b9 diff --git a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.7 index fa77350fab11..a05fc0194713 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.3.7 @@ -10,5 +10,5 @@ RDEPEND=ruby_targets_ruby25? ( ~dev-ruby/ruby-atk-3.3.7[ruby_targets_ruby25(-)] REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7ed9679285d99c67a742069ab50847b9 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 5a9301dd67a9..3bb7e45722f2 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_ruby25? ( ~dev-ruby/ruby-atk-3.4.3[ruby_targets_ruby25(-)] REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8ab1c0ed49ead3797cc75b2ea0511ee4 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 4bb344883fa3..9bbf242f8616 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=562b6b1e0b1de027914cbeb7ea801db8 diff --git a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.2 index c3ac6a10c0f6..1530b836dc4d 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=677ae6124e4647be82dcfbdae844cda8 diff --git a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.6 index ea2d20e60d6b..d9d8ef6aa0d5 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=19bda9475408741c79d558e8c89e421a diff --git a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.7 index 2981dd4f30b3..ec670f65bc3e 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=39a2316cdf0ea834420d668d584407eb 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 bd440244d1bd..0e4fde2a9af4 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2b59147f4f57d1181cf4f17b129cffb7 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 20db5ba249cf..c3868ac4e1a5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=a83dd3ad5cae6831813f4f42b2b7b5fb 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 c986b39be33d..7e87a89405a3 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2762333b0da7c49fc401b92173aff922 diff --git a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.2 index 5485723d0e54..3d71ddc1877b 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=8098a76c21c528e3e439152355848d0f diff --git a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.6 index e7ecf7d16988..e49a4c0bf894 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=9180be6adf41a3c0393d0666f7354834 diff --git a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.7 index 446dc6039002..f96279c9350b 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=9180be6adf41a3c0393d0666f7354834 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 b11b869e1810..a426f968dcef 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=d4a6bf1d8b43fe476fac7b2a5d14735a diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.2 index 1b7b7e6b4e99..2a39f25a67d8 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=710a27a07b40717cbc65ddf2bc6683f3 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.6 index b6459ac74e3d..6c33b71213a2 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=6b0cae9458a6b1181c15ef193bfddcb2 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.7 index 006a25fd5e23..8ac80cfa9e88 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=6b0cae9458a6b1181c15ef193bfddcb2 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 2b080793649d..dc91a11d90a7 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=bbd4245bde7d22f33f9942fcf20719d4 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.2 index 939d47f527df..f7db6416bc5b 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=c1a0b768307ec702f8bea89de6c8b6e3 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.6 index 2a8874394163..2570c64a67cb 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=4c002f74c99be653e7a46a347a51ee82 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.7 index bc868d4034ef..6480c36e2b56 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=4c002f74c99be653e7a46a347a51ee82 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 76df057dd852..74750d69a863 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=19dd87d58ff9d242f09dc6fc939b4e18 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.2 index a3d253d30267..f9a6f7bef9e0 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=1cd3c92c1dedca6c50e752c0d8631dda diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.6 index 3558830b1958..1ed7d88cd707 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=edb1c25365af440f89b5504b3e414cee diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.7 index 56e38d17b3e7..1034e875787f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=edb1c25365af440f89b5504b3e414cee 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 7b65b4a0154d..b388c47c8e7a 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=9707ab4b120c26b4bb2aec987f17283c diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.2 index 27a9b7e548de..58287f5a5e83 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=c2043355bf8326628ea14079d73e92ae diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.6 index 8ccfd57765c4..494e9ab0521c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=8c4797312b0d5bf4e7bf69ecc6c255e0 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.7 index f4a726405a30..f9364135e948 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=8c4797312b0d5bf4e7bf69ecc6c255e0 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 35bc58d9f727..f7df3d1aa255 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=5804d65fd1188295f0d31028e6c4b150 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 0c0d3624faf7..205827b5d56c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=2f9e7322fc3b8b43286bca98b17b85b0 diff --git a/metadata/md5-cache/dev-ruby/ruby-hmac-0.4.0-r1 b/metadata/md5-cache/dev-ruby/ruby-hmac-0.4.0-r1 index 69d44ec46da8..d8366d6342c2 100644 --- a/metadata/md5-cache/dev-ruby/ruby-hmac-0.4.0-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-hmac-0.4.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-hmac-0.4.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1c3cce27356865cdc56dec07a9501067 diff --git a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20 b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20 index 1d7cfdd74442..603cceff0e82 100644 --- a/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20 +++ b/metadata/md5-cache/dev-ruby/ruby-ldap-0.9.20 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-ldap-0.9.20.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=82a5cb40fc009868e276ddf318d0fdb7 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 c17c55c7c32d..57b28b46bf2a 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9daec206140e47cf2f0198c73c5758da 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 120e3c3353e3..6c63a103ad8a 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 560f7767e36f..9652a22689a6 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 0056ea389a54..7cd33805017e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f2880820aca8743acbe6c984f5cdd44c diff --git a/metadata/md5-cache/dev-ruby/ruby-mp3info-0.8.10 b/metadata/md5-cache/dev-ruby/ruby-mp3info-0.8.10 index 2745d6b1627f..eea258bd84fd 100644 --- a/metadata/md5-cache/dev-ruby/ruby-mp3info-0.8.10 +++ b/metadata/md5-cache/dev-ruby/ruby-mp3info-0.8.10 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2b17a3be59c20f3a0e276e88ed8ef8de 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 c81703d084c0..8e8856d81c37 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 0c00e8a6f30e..c287220d0f89 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=86cfe32cd794a1d8f2cb1da5ae0ce1a2 diff --git a/metadata/md5-cache/dev-ruby/ruby-oci8-2.2.7 b/metadata/md5-cache/dev-ruby/ruby-oci8-2.2.7 index f3e2e1a28303..75d1b38ec8a7 100644 --- a/metadata/md5-cache/dev-ruby/ruby-oci8-2.2.7 +++ b/metadata/md5-cache/dev-ruby/ruby-oci8-2.2.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-oci8-2.2.7.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=90e7525d61fe1329c7711a9671f9417f diff --git a/metadata/md5-cache/dev-ruby/ruby-oci8-2.2.8 b/metadata/md5-cache/dev-ruby/ruby-oci8-2.2.8 index 17e2ebdf870a..7e695a0fd005 100644 --- a/metadata/md5-cache/dev-ruby/ruby-oci8-2.2.8 +++ b/metadata/md5-cache/dev-ruby/ruby-oci8-2.2.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-oci8-2.2.8.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ae9b08ad7bf41e333649c3e2557770ea diff --git a/metadata/md5-cache/dev-ruby/ruby-odbc-0.99999 b/metadata/md5-cache/dev-ruby/ruby-odbc-0.99999 index 053123946e68..346e3bcc10e6 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bf3d95117a4d9840026abfc3d3b6db88 diff --git a/metadata/md5-cache/dev-ruby/ruby-oembed-0.13.1 b/metadata/md5-cache/dev-ruby/ruby-oembed-0.13.1 index eb51287bee70..44bf6f383882 100644 --- a/metadata/md5-cache/dev-ruby/ruby-oembed-0.13.1 +++ b/metadata/md5-cache/dev-ruby/ruby-oembed-0.13.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-oembed-0.13.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=40d4c128ca1b80bc9bfb677ea6db19d7 diff --git a/metadata/md5-cache/dev-ruby/ruby-oembed-0.14.0 b/metadata/md5-cache/dev-ruby/ruby-oembed-0.14.0 index f18399fe0314..8361430e4236 100644 --- a/metadata/md5-cache/dev-ruby/ruby-oembed-0.14.0 +++ b/metadata/md5-cache/dev-ruby/ruby-oembed-0.14.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-oembed-0.14.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ff942a1f42cc75a873e4bb9b9b3a9d1c 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 a176bf56a8bd..98cf7d3fbbdc 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-ole-1.2.12.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e27f2497be6dff9b2277944120a0f5c8 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 5e2197fb7973..03906eb74f09 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/opengl-0.10.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=53ba4d395658fb07fc60a1617fa113dc 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 bee373e6da53..f26c6756611c 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7f2523b0d76b8d1357de273b0e35878d diff --git a/metadata/md5-cache/dev-ruby/ruby-pango-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-pango-3.3.2 index 82225694e812..35f2de7e8b42 100644 --- a/metadata/md5-cache/dev-ruby/ruby-pango-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-pango-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1e23f36df5babd31d43154131d565d62 diff --git a/metadata/md5-cache/dev-ruby/ruby-pango-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-pango-3.3.6 index 5e536b11739e..87322876ab02 100644 --- a/metadata/md5-cache/dev-ruby/ruby-pango-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-pango-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=156aa4d65346a24c31e90e18c276ea0b diff --git a/metadata/md5-cache/dev-ruby/ruby-pango-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-pango-3.3.7 index 64a5ed5012a1..05a7ec74c49c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-pango-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-pango-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=156aa4d65346a24c31e90e18c276ea0b 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 cc88060d5322..0ddc8c3f13af 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1c55de81cb84563f1d7a78fde5abe798 diff --git a/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.2 index a67d6effc3b9..472869476276 100644 --- a/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=eef242423316592755c4bd8e3bf9eb7f diff --git a/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.6 index 4a0c3461e3d4..fa70fcaa373f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3e938548fc8a14a75ed77d48b7a9e234 diff --git a/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.7 index f2272a805d74..d0c98253a907 100644 --- a/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-poppler-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7234067e9e40947fbce9e0f9cffefd55 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 8ab85ef5a071..3818af4a3d02 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5a7b1c3478333886a9c17b1aa539fc44 diff --git a/metadata/md5-cache/dev-ruby/ruby-prof-0.18.0 b/metadata/md5-cache/dev-ruby/ruby-prof-0.18.0 index d5669730bed7..ac31e4c2502f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-prof-0.18.0 +++ b/metadata/md5-cache/dev-ruby/ruby-prof-0.18.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby-prof/ruby-prof/archive/0.18.0.tar.gz -> ruby-prof-0.18.0.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8a87fae3c48692207f7a4760e40d9d78 diff --git a/metadata/md5-cache/dev-ruby/ruby-prof-1.4.1 b/metadata/md5-cache/dev-ruby/ruby-prof-1.4.1 index d8590e3640f2..43c5b0c2ab73 100644 --- a/metadata/md5-cache/dev-ruby/ruby-prof-1.4.1 +++ b/metadata/md5-cache/dev-ruby/ruby-prof-1.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.1.tar.gz -> ruby-prof-1.4.1.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f78128e21dcbfc7747584ad17196e31e diff --git a/metadata/md5-cache/dev-ruby/ruby-prof-1.4.2 b/metadata/md5-cache/dev-ruby/ruby-prof-1.4.2 index 9122def6f37f..d5aa132073ab 100644 --- a/metadata/md5-cache/dev-ruby/ruby-prof-1.4.2 +++ b/metadata/md5-cache/dev-ruby/ruby-prof-1.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.2.tar.gz -> ruby-prof-1.4.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4ac1cfa176b435c4eeff977e5bda9e20 diff --git a/metadata/md5-cache/dev-ruby/ruby-progressbar-1.10.1 b/metadata/md5-cache/dev-ruby/ruby-progressbar-1.10.1 index 94af844ad0df..560e934747b2 100644 --- a/metadata/md5-cache/dev-ruby/ruby-progressbar-1.10.1 +++ b/metadata/md5-cache/dev-ruby/ruby-progressbar-1.10.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=80e73f9703ae5d765821fba38773ad22 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 8b824eda78d8..9aae2c0601af 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=137cb21d6b6802b92fff70e8e131a857 diff --git a/metadata/md5-cache/dev-ruby/ruby-rc4-0.1.5-r2 b/metadata/md5-cache/dev-ruby/ruby-rc4-0.1.5-r2 index 40f4e6e3472e..fc8c5807ee0c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-rc4-0.1.5-r2 +++ b/metadata/md5-cache/dev-ruby/ruby-rc4-0.1.5-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-rc4-0.1.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=b85521b662d644de8610b11447b7fdc7 diff --git a/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r6 b/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r6 index 8dcddf4fcafb..4edd4027cd58 100644 --- a/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r6 +++ b/metadata/md5-cache/dev-ruby/ruby-romkan-0.4-r6 @@ -10,5 +10,5 @@ RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) SLOT=0 SRC_URI=http://0xcc.net/ruby-romkan/ruby-romkan-0.4.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=b9706d06ac8818c0129cf160f66dd494 diff --git a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.2 index cdb4aaac4261..799ac7f305c7 100644 --- a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=905c7ba8032f16089a0f4a05a0b967be diff --git a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.6 index 42bff19c02cf..2723116205bc 100644 --- a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dec912750f6e3daf43b1f2dd0f67f1c8 diff --git a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.7 index 162a97c0930e..96a3199f5c38 100644 --- a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dec912750f6e3daf43b1f2dd0f67f1c8 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 8cb23b4dcd7e..7b3d711ce2da 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=03cf2bad3bb16400edb74833e54ae0cd diff --git a/metadata/md5-cache/dev-ruby/ruby-sdl-2.1.2-r2 b/metadata/md5-cache/dev-ruby/ruby-sdl-2.1.2-r2 index 796314be138d..e36d7b095079 100644 --- a/metadata/md5-cache/dev-ruby/ruby-sdl-2.1.2-r2 +++ b/metadata/md5-cache/dev-ruby/ruby-sdl-2.1.2-r2 @@ -10,5 +10,5 @@ RDEPEND=>=media-libs/libsdl-1.2.5 truetype? ( >=media-libs/sdl-ttf-2.0.6 ) image REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=0 SRC_URI=https://github.com/ohai/rubysdl/archive/rel-2-1-2.tar.gz -> ruby-sdl-2.1.2.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5b0a733e19c3bf37adca015810643a56 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 26cdd6e145ae..527a460d5592 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=882af1e6fe35386324397103df789c85 diff --git a/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.0 b/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.0 index 2e0bcca06f12..44f2132dc892 100644 --- a/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.0 +++ b/metadata/md5-cache/dev-ruby/ruby-shadow-2.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-shadow-2.5.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2b191367a28c4954779cbbaf0c980a07 diff --git a/metadata/md5-cache/dev-ruby/ruby-shout-2.2.2 b/metadata/md5-cache/dev-ruby/ruby-shout-2.2.2 index 1ded2bab0c45..a166d1e95776 100644 --- a/metadata/md5-cache/dev-ruby/ruby-shout-2.2.2 +++ b/metadata/md5-cache/dev-ruby/ruby-shout-2.2.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-shout-2.2.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e47f76bebc1f6122b4bc0b2623af82b1 diff --git a/metadata/md5-cache/dev-ruby/ruby-termios-1.0.2-r1 b/metadata/md5-cache/dev-ruby/ruby-termios-1.0.2-r1 index d5a00b46cc16..94ea6f070a6d 100644 --- a/metadata/md5-cache/dev-ruby/ruby-termios-1.0.2-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-termios-1.0.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-termios-1.0.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=614f750b6b6dd57feb7fc877737686d4 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-vte-3.3.2 index 5249ada6e578..245cab51ae5d 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-vte-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f98dbb7d4818aab33a5a1e944dcec8dd diff --git a/metadata/md5-cache/dev-ruby/ruby-vte-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-vte-3.3.6 index 80a301f99c28..b88097fd5d4e 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-vte-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e809cadedadfa7973e351308cbf6c018 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-vte-3.3.7 index c7a74e9103d8..9491c28649d9 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-vte-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e809cadedadfa7973e351308cbf6c018 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 6d9b92e2a968..2b41280e2e63 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=44e47a554dde0cc849604daa7a29a8a3 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.2 index 7f4984b382bf..7840eaf7bd76 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=f6fe69da2272ca6552415f5804ec84f0 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.6 index 14f9a873b916..a6ee1ea1c2c3 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=de4fe157d1dc4e74e2f91a467c5e873b diff --git a/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.7 index 7964ed7a0d44..a0aa234c9807 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-vte3-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=de4fe157d1dc4e74e2f91a467c5e873b 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 7d58adb54707..dbad4c849698 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=b2c8d70b5bf812facf5855c4d932cff4 diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.2 b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.2 index c32346c06cbf..09a8a4a8ea69 100644 --- a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.2 +++ b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.2.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=247adfa9622a856b4f1f71358dfb12fe diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.6 b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.6 index f9e450a38ac5..0c2e16f0e872 100644 --- a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.6 +++ b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.6.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=b5221885ef2d038a6626bf0e2baa78dc diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.7 b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.7 index b28ea42addfb..aafc6c01e0a9 100644 --- a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.7 +++ b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.3.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.3.7.tar.gz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=b5221885ef2d038a6626bf0e2baa78dc 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 8f1f49a0409e..ca8edf3495a5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=908dde19ea3512e8583d50e1bef7f494 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 374255de2e5f..5d7442e899a5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-ng-gnome2 bef3074f11f156e9bf5d1b45ff7fbbed ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f _md5_=54bad53b5fd00b3fda9364ccefef8fca 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 54763b83720f..f1e9497b2c4d 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=15f1656fcff2be4439f6440daff9c9ea diff --git a/metadata/md5-cache/dev-ruby/ruby-yadis-0.3.4-r2 b/metadata/md5-cache/dev-ruby/ruby-yadis-0.3.4-r2 index 12ba37606525..4dce5a44bc99 100644 --- a/metadata/md5-cache/dev-ruby/ruby-yadis-0.3.4-r2 +++ b/metadata/md5-cache/dev-ruby/ruby-yadis-0.3.4-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ruby-yadis-0.3.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=bb347c1c408e690b2bc3e480d2db065b 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 6160ca4f023f..256b043b7934 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ef7937c25f0839c5d169e8c459169b58 diff --git a/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.2 b/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.2 index b79b37fd3c01..bdfcc0d79c52 100644 --- a/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.2 +++ b/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/ruby2ruby-2.4.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fab714ed25ae942b990dfb4a69488af3 diff --git a/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.4 b/metadata/md5-cache/dev-ruby/ruby2ruby-2.4.4 index 8271a4ffed0d..a768ad37d79c 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/ruby2ruby-2.4.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=62a51f06beeeba28957a7e88cac78c4f diff --git a/metadata/md5-cache/dev-ruby/ruby_gntp-0.3.4 b/metadata/md5-cache/dev-ruby/ruby_gntp-0.3.4 index 634bbf58bc37..eaf60cd59661 100644 --- a/metadata/md5-cache/dev-ruby/ruby_gntp-0.3.4 +++ b/metadata/md5-cache/dev-ruby/ruby_gntp-0.3.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7d5a819059a0456e3a625187c1fea666 diff --git a/metadata/md5-cache/dev-ruby/ruby_parser-3.13.1 b/metadata/md5-cache/dev-ruby/ruby_parser-3.13.1 index 354c1640fef8..b5b4f9400f53 100644 --- a/metadata/md5-cache/dev-ruby/ruby_parser-3.13.1 +++ b/metadata/md5-cache/dev-ruby/ruby_parser-3.13.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/ruby_parser-3.13.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5477efeb61e28f4f5e0b6d62d14ef9ad 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 036814d799b6..423d016bf72c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d5b1a7aa5f3a56436e7736ba7f38cebb diff --git a/metadata/md5-cache/dev-ruby/ruby_parser-3.15.0 b/metadata/md5-cache/dev-ruby/ruby_parser-3.15.0 index 521c0c04f0f7..248aea086d13 100644 --- a/metadata/md5-cache/dev-ruby/ruby_parser-3.15.0 +++ b/metadata/md5-cache/dev-ruby/ruby_parser-3.15.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/ruby_parser-3.15.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=705c247f589857811b70985db15c2174 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 15e45fe7148c..935ed16c3de7 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1d43308e4af2206c5cfde51f977e67a9 diff --git a/metadata/md5-cache/dev-ruby/rubygems-2.7.10 b/metadata/md5-cache/dev-ruby/rubygems-2.7.10 index 783809b4fd6b..44be58013212 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-2.7.10 +++ b/metadata/md5-cache/dev-ruby/rubygems-2.7.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-2.7.10.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5f079e906bdfca031c1ccdb2883581e3 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.0.3 b/metadata/md5-cache/dev-ruby/rubygems-3.0.3 index 731146aaf22a..2fa67e11b9cb 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e6c867b9a73c42b0c285fd8dfab4bd70 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.0.4-r1 b/metadata/md5-cache/dev-ruby/rubygems-3.0.4-r1 index 3ad00bd866b7..35c06236fc82 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.0.4-r1 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.0.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8ff0c75f32211b3121de0752986fd23b diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.0.6 b/metadata/md5-cache/dev-ruby/rubygems-3.0.6 index 11539ac5f4af..50b5b02f3b06 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.0.6 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.0.6 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.6.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d161152c4f542ec216fc0d8dd9264ed3 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.0.8 b/metadata/md5-cache/dev-ruby/rubygems-3.0.8 index 42ab22efe24f..258755466ad4 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.0.8 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.0.8 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.0.8.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=42af30811586d28a319a5962c2ba9ca6 diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.1.2 b/metadata/md5-cache/dev-ruby/rubygems-3.1.2 index b2b50eada7ae..8d562eff8973 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.1.2 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.1.2 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.1.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=602b01878c7ac47b34ccef99d9f1aa8c diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.1.3 b/metadata/md5-cache/dev-ruby/rubygems-3.1.3 index cc839b3ace71..82e7b1c467c4 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.1.3 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.1.3 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.1.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=602b01878c7ac47b34ccef99d9f1aa8c diff --git a/metadata/md5-cache/dev-ruby/rubygems-3.1.4 b/metadata/md5-cache/dev-ruby/rubygems-3.1.4 index 7dc832299ebf..1f14030f3158 100644 --- a/metadata/md5-cache/dev-ruby/rubygems-3.1.4 +++ b/metadata/md5-cache/dev-ruby/rubygems-3.1.4 @@ -13,5 +13,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/rubygems/rubygems-3.1.4.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 prefix c2993e4c430c1ee24f278983d6189501 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e8ffb74eb29d832ecf230e58e59dfa35 diff --git a/metadata/md5-cache/dev-ruby/rubyntlm-0.6.2 b/metadata/md5-cache/dev-ruby/rubyntlm-0.6.2 index 5e0515b4ca5f..103addec8390 100644 --- a/metadata/md5-cache/dev-ruby/rubyntlm-0.6.2 +++ b/metadata/md5-cache/dev-ruby/rubyntlm-0.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubyntlm-0.6.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=59f895e4f8e2fa60a60dc87ebab05c27 diff --git a/metadata/md5-cache/dev-ruby/rubypants-0.7.0 b/metadata/md5-cache/dev-ruby/rubypants-0.7.0 index fbcd5fe4991b..ea49162f22b3 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubypants-0.7.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 70e11feb1e0b..86a42678ea1c 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubypants-0.7.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=301a91ce08baca7550bb126326ed11ea diff --git a/metadata/md5-cache/dev-ruby/rubytest-0.8.1 b/metadata/md5-cache/dev-ruby/rubytest-0.8.1 index ceb9ddaeaabc..d96b00c974ee 100644 --- a/metadata/md5-cache/dev-ruby/rubytest-0.8.1 +++ b/metadata/md5-cache/dev-ruby/rubytest-0.8.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubytest-0.8.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=fa1859c824d4f176554fa5b207e10185 diff --git a/metadata/md5-cache/dev-ruby/rubytest-cli-0.2.0 b/metadata/md5-cache/dev-ruby/rubytest-cli-0.2.0 index 03055319695c..9c9d6917d958 100644 --- a/metadata/md5-cache/dev-ruby/rubytest-cli-0.2.0 +++ b/metadata/md5-cache/dev-ruby/rubytest-cli-0.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubytest-cli-0.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=969418935ca257c26e85b40d5fd34afc diff --git a/metadata/md5-cache/dev-ruby/rubytter-1.5.1-r1 b/metadata/md5-cache/dev-ruby/rubytter-1.5.1-r1 index add225aba3d2..0a784f4ba865 100644 --- a/metadata/md5-cache/dev-ruby/rubytter-1.5.1-r1 +++ b/metadata/md5-cache/dev-ruby/rubytter-1.5.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/rubytter-1.5.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=894b622e002efc1131ce0160346ad6b1 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 b/metadata/md5-cache/dev-ruby/rubyzip-1.3.0 index e748d5b8aa57..1aadc7c748b5 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f07f8a60f18a002924873a3c9202e7a4 diff --git a/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 b/metadata/md5-cache/dev-ruby/rubyzip-2.2.0 index 11ba61a2c3e7..d882718006d3 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 2c1a4747dce3..d1d31adb72fe 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=eebe95fcdae9542c6819ef0cc92739ca diff --git a/metadata/md5-cache/dev-ruby/safe_yaml-1.0.5 b/metadata/md5-cache/dev-ruby/safe_yaml-1.0.5 index 5d92f5586266..29af0c8e16ea 100644 --- a/metadata/md5-cache/dev-ruby/safe_yaml-1.0.5 +++ b/metadata/md5-cache/dev-ruby/safe_yaml-1.0.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/safe_yaml-1.0.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=879493fb0b66445f2c72d47105f67061 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 24d7075d5f7b..f87f40408fb1 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=249d10986194962d16ed4d567374b293 diff --git a/metadata/md5-cache/dev-ruby/sanitize-5.2.1 b/metadata/md5-cache/dev-ruby/sanitize-5.2.1 index 579871d6f2d3..c47360ab9e0c 100644 --- a/metadata/md5-cache/dev-ruby/sanitize-5.2.1 +++ b/metadata/md5-cache/dev-ruby/sanitize-5.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=https://github.com/rgrove/sanitize/archive/v5.2.1.tar.gz -> sanitize-5.2.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b4e664ad2f766052282a7fff36f54a82 diff --git a/metadata/md5-cache/dev-ruby/sass-3.4.25 b/metadata/md5-cache/dev-ruby/sass-3.4.25 index e773260f69a1..e2a8facea222 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb 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 2f071c44a4f9..c7551379b3a1 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=f986ad5763f0a4536f86dd833e44af92 diff --git a/metadata/md5-cache/dev-ruby/sass-3.5.7 b/metadata/md5-cache/dev-ruby/sass-3.5.7 index 840613632bd6..b784ab71de10 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_ruby25 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 f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 06ea44157b94..6a8ca08f2937 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_ruby25 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 f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 3a50860f21b4..b837189560d1 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_ruby25 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 f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=488a48a1751fa2547c69f5e5a808b4aa diff --git a/metadata/md5-cache/dev-ruby/sass-listen-4.0.0 b/metadata/md5-cache/dev-ruby/sass-listen-4.0.0 index 9a0e7af98255..9ecd56902b0f 100644 --- a/metadata/md5-cache/dev-ruby/sass-listen-4.0.0 +++ b/metadata/md5-cache/dev-ruby/sass-listen-4.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ef4951062d1fd0a7a86c90a1bfab399c 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 08f173e695e7..acd2e3f844aa 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7705d0aa4d1ed27cfa3f2bc2808d6e20 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 fc09fcf85001..858b816e76ba 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7705d0aa4d1ed27cfa3f2bc2808d6e20 diff --git a/metadata/md5-cache/dev-ruby/sassc-2.2.1 b/metadata/md5-cache/dev-ruby/sassc-2.2.1 index a4386d4fe887..f654bda2754a 100644 --- a/metadata/md5-cache/dev-ruby/sassc-2.2.1 +++ b/metadata/md5-cache/dev-ruby/sassc-2.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/sassc-2.2.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7011526aed83e6d3bbce155d5ecb96a1 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 cb01ca2299df..60179599f7b0 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/sassc-rails-2.1.2.gem -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c2eabb8176841956987f4604a18c2f20 diff --git a/metadata/md5-cache/dev-ruby/sawyer-0.8.2 b/metadata/md5-cache/dev-ruby/sawyer-0.8.2 index ffb880c159e3..22096d56aa1a 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=28d22d749e690e05a518512a1c1e15b7 diff --git a/metadata/md5-cache/dev-ruby/sdoc-1.0.0 b/metadata/md5-cache/dev-ruby/sdoc-1.0.0 index 8e0a5fcd9308..de0a9e239020 100644 --- a/metadata/md5-cache/dev-ruby/sdoc-1.0.0 +++ b/metadata/md5-cache/dev-ruby/sdoc-1.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sdoc-1.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c564fdf3e498f528a7a9933e52f0f5b6 diff --git a/metadata/md5-cache/dev-ruby/sdoc-1.1.0 b/metadata/md5-cache/dev-ruby/sdoc-1.1.0 index 812798cc2390..d0051f708afc 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sdoc-1.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1a352dc44061d67a4e36bd94f4b2e0a0 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 02eb9718eb62..8c6636566d87 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4bc1f4a87adaafd9344057feddb4ea30 diff --git a/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.6 b/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.6 index 38e2fadca847..e95e97a9e448 100644 --- a/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.6 +++ b/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/selenium-webdriver-3.142.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ef89b09af0c4e47f99e088b2b6c6a4db diff --git a/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.7 b/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.7 index 4c0376ad21e2..bcabdd4780cf 100644 --- a/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.7 +++ b/metadata/md5-cache/dev-ruby/selenium-webdriver-3.142.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=57561ef8fe956e9f479dd4f49f24baea 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 6f3d3201f9a6..1373b9af969c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3950a5ce83c853129bd602a67f8db0e2 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 80eca996dd96..1da127be01b4 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cde9ef0a56ed7627d48867a7a4ecb430 diff --git a/metadata/md5-cache/dev-ruby/semver2-3.4.2 b/metadata/md5-cache/dev-ruby/semver2-3.4.2 index 84aa55414e0f..ae5413df349b 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6ad7c25ae167938800c3514f8ea5f524 diff --git a/metadata/md5-cache/dev-ruby/serialport-1.3.1 b/metadata/md5-cache/dev-ruby/serialport-1.3.1 index 0b6fc825983e..08989f3a992e 100644 --- a/metadata/md5-cache/dev-ruby/serialport-1.3.1 +++ b/metadata/md5-cache/dev-ruby/serialport-1.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/serialport-1.3.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=3313a4e86accd5b7ec8c8e4136af40f1 diff --git a/metadata/md5-cache/dev-ruby/serverengine-2.2.1 b/metadata/md5-cache/dev-ruby/serverengine-2.2.1 index 3c5f5179c141..5427426272cc 100644 --- a/metadata/md5-cache/dev-ruby/serverengine-2.2.1 +++ b/metadata/md5-cache/dev-ruby/serverengine-2.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/serverengine-2.2.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=661486db1c78db70352f931b9a7cac74 diff --git a/metadata/md5-cache/dev-ruby/serverengine-2.2.2 b/metadata/md5-cache/dev-ruby/serverengine-2.2.2 index 315d8470ac6b..d3dedc8f403e 100644 --- a/metadata/md5-cache/dev-ruby/serverengine-2.2.2 +++ b/metadata/md5-cache/dev-ruby/serverengine-2.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/serverengine-2.2.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=894f35b67398f8bb58caaabe93df947b diff --git a/metadata/md5-cache/dev-ruby/session-3.2.0 b/metadata/md5-cache/dev-ruby/session-3.2.0 index 9a290f75fd3d..d4cd2a540b89 100644 --- a/metadata/md5-cache/dev-ruby/session-3.2.0 +++ b/metadata/md5-cache/dev-ruby/session-3.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/session-3.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=9d75926a2f23e90356fc63a701f32fde diff --git a/metadata/md5-cache/dev-ruby/settingslogic-2.0.9 b/metadata/md5-cache/dev-ruby/settingslogic-2.0.9 index 205be31621e2..fcd4e637cfbb 100644 --- a/metadata/md5-cache/dev-ruby/settingslogic-2.0.9 +++ b/metadata/md5-cache/dev-ruby/settingslogic-2.0.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5f344800e13343423e88a9a94e590bee diff --git a/metadata/md5-cache/dev-ruby/sexp_processor-4.12.0 b/metadata/md5-cache/dev-ruby/sexp_processor-4.12.0 index 4e3ce288e00c..57ee5656c8ab 100644 --- a/metadata/md5-cache/dev-ruby/sexp_processor-4.12.0 +++ b/metadata/md5-cache/dev-ruby/sexp_processor-4.12.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/sexp_processor-4.12.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=661a27e9d65a32e7e86662c77c4329c7 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 6b7f08030318..8b9aeb8f4c41 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=45cbaa2896561f089671ba567db5a50b diff --git a/metadata/md5-cache/dev-ruby/sexp_processor-4.15.1 b/metadata/md5-cache/dev-ruby/sexp_processor-4.15.1 index ea2b973425f5..312456f30851 100644 --- a/metadata/md5-cache/dev-ruby/sexp_processor-4.15.1 +++ b/metadata/md5-cache/dev-ruby/sexp_processor-4.15.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/sexp_processor-4.15.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6d1c222cd271a45a1a2ad9002316880e diff --git a/metadata/md5-cache/dev-ruby/sfl-2.2-r1 b/metadata/md5-cache/dev-ruby/sfl-2.2-r1 index 878a751bd7ab..f92969b837c0 100644 --- a/metadata/md5-cache/dev-ruby/sfl-2.2-r1 +++ b/metadata/md5-cache/dev-ruby/sfl-2.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sfl-2.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ae312257d6b1834abf8cbe57539ee6c1 diff --git a/metadata/md5-cache/dev-ruby/shorturl-1.0.0-r2 b/metadata/md5-cache/dev-ruby/shorturl-1.0.0-r2 index 5b07bf3c6980..8e2d1b1369e0 100644 --- a/metadata/md5-cache/dev-ruby/shorturl-1.0.0-r2 +++ b/metadata/md5-cache/dev-ruby/shorturl-1.0.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=test SLOT=0 SRC_URI=https://rubygems.org/gems/shorturl-1.0.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a27e446ea11b1dc6c5c90dfc37dbf7b5 diff --git a/metadata/md5-cache/dev-ruby/shotgun-0.9.2 b/metadata/md5-cache/dev-ruby/shotgun-0.9.2 index 60380d3fa57e..0ef7b94172f0 100644 --- a/metadata/md5-cache/dev-ruby/shotgun-0.9.2 +++ b/metadata/md5-cache/dev-ruby/shotgun-0.9.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/shotgun-0.9.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d0b63da8112c3aefa524b9022c46f5dd diff --git a/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r2 b/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r2 index e41ebc53b11e..30df040cf9dd 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r2 +++ b/metadata/md5-cache/dev-ruby/shoulda-2.11.3-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/thoughtbot/shoulda/tarball/v2.11.3 -> shoulda-2.11.3.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=649ea2a9caf7b8b3cec0d762a1498a82 diff --git a/metadata/md5-cache/dev-ruby/shoulda-3.6.0 b/metadata/md5-cache/dev-ruby/shoulda-3.6.0 index 21c8dc91bb59..b3a90404c6f0 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-3.6.0 +++ b/metadata/md5-cache/dev-ruby/shoulda-3.6.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9b0a647af17d37da2e94100797cecbf9 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 abaa300c4892..add8efa4e309 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1f9ebada9cf2c799bd7af1e07b85a063 diff --git a/metadata/md5-cache/dev-ruby/shoulda-context-1.2.2 b/metadata/md5-cache/dev-ruby/shoulda-context-1.2.2 index 867eb7a078a0..1af48ee2d56c 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-context-1.2.2 +++ b/metadata/md5-cache/dev-ruby/shoulda-context-1.2.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/shoulda-context-1.2.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=003f5fb60b0d56284259bdc40d06218c diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3 b/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3 index 55ae960bd06b..3cdd713ef30e 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3 +++ b/metadata/md5-cache/dev-ruby/shoulda-matchers-3.1.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/shoulda-matchers-3.1.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=91d7441418983c73c817af966e743028 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 79a159b4106e..6f28995c8add 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0cf444a76faf5f65665895b5fb503904 diff --git a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.3.0 b/metadata/md5-cache/dev-ruby/shoulda-matchers-4.3.0 index 013e3e41f0ca..f39d60349c8c 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.3.0 +++ b/metadata/md5-cache/dev-ruby/shoulda-matchers-4.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4c0d169d86f5c61674b02eebe71a9f25 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 index 9ad8650d622f..f5a8891262cc 100644 --- a/metadata/md5-cache/dev-ruby/shoulda-matchers-4.3.0-r1 +++ b/metadata/md5-cache/dev-ruby/shoulda-matchers-4.3.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 d50d01bbdef7..b3984cdd74a7 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bf266f872fdbdef3245b4b143a9cef34 diff --git a/metadata/md5-cache/dev-ruby/sigar-0.7.3 b/metadata/md5-cache/dev-ruby/sigar-0.7.3 index b7fc473e9baa..3b02cafb5acb 100644 --- a/metadata/md5-cache/dev-ruby/sigar-0.7.3 +++ b/metadata/md5-cache/dev-ruby/sigar-0.7.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sigar-0.7.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6d999e14a2aecc88c93773132af5822e diff --git a/metadata/md5-cache/dev-ruby/sigdump-0.2.4 b/metadata/md5-cache/dev-ruby/sigdump-0.2.4 index a873c7b6f0e9..d47e24c19d7e 100644 --- a/metadata/md5-cache/dev-ruby/sigdump-0.2.4 +++ b/metadata/md5-cache/dev-ruby/sigdump-0.2.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sigdump-0.2.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f4d758b103a702c440e7d3ff177270ad diff --git a/metadata/md5-cache/dev-ruby/simple-rss-1.3.3 b/metadata/md5-cache/dev-ruby/simple-rss-1.3.3 index cd7e3eaa2314..05446a233c12 100644 --- a/metadata/md5-cache/dev-ruby/simple-rss-1.3.3 +++ b/metadata/md5-cache/dev-ruby/simple-rss-1.3.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/simple-rss-1.3.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=be28eefbb91f55b31de1702a84f04ec8 diff --git a/metadata/md5-cache/dev-ruby/simple_oauth-0.3.1 b/metadata/md5-cache/dev-ruby/simple_oauth-0.3.1 index 00221b0e3c95..97d208bc4761 100644 --- a/metadata/md5-cache/dev-ruby/simple_oauth-0.3.1 +++ b/metadata/md5-cache/dev-ruby/simple_oauth-0.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/laserlemon/simple_oauth/archive/v0.3.1.tar.gz -> simple_oauth-0.3.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a9b4df1f06fa4559152267ee75f00dde diff --git a/metadata/md5-cache/dev-ruby/simplecov-0.18.5 b/metadata/md5-cache/dev-ruby/simplecov-0.18.5 index 318391046cbe..61365d0a1b48 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8d583da5d8e60394d2f7066545d9cedd diff --git a/metadata/md5-cache/dev-ruby/simplecov-0.19.0 b/metadata/md5-cache/dev-ruby/simplecov-0.19.0 index bbc1da2dcb6a..d4cd5020ca1c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=54b26422bf07226a8a09e06a92d4d0b2 diff --git a/metadata/md5-cache/dev-ruby/simplecov-0.19.1 b/metadata/md5-cache/dev-ruby/simplecov-0.19.1 index d5aecd0fb737..924b360cdfb6 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_ruby25 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.1.tar.gz -> simplecov-0.19.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=54b26422bf07226a8a09e06a92d4d0b2 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 8f4b51053517..7becddc16988 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d0f63fb6d0b25ab18292a5d490dedc98 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 7b3d212fd45e..3108f156ae80 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2c821948057a424b0659cb7e76c29d45 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 8a77a845189a..a3786cc2459e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2c821948057a424b0659cb7e76c29d45 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 4088457fb3b6..e50f7c43b210 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2c821948057a424b0659cb7e76c29d45 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 d4380ae08cb6..6172036a03d9 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2c821948057a424b0659cb7e76c29d45 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 2d4c8f082142..7185eef79c70 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0.12 SRC_URI=https://rubygems.org/gems/simplecov-html-0.12.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9acaf9a09c72a02f9c36507b1a8a7a92 diff --git a/metadata/md5-cache/dev-ruby/sinatra-2.0.8.1 b/metadata/md5-cache/dev-ruby/sinatra-2.0.8.1 index 12756a7081fa..30af418954dd 100644 --- a/metadata/md5-cache/dev-ruby/sinatra-2.0.8.1 +++ b/metadata/md5-cache/dev-ruby/sinatra-2.0.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/sinatra/sinatra/archive/v2.0.8.1.tar.gz -> sinatra-2.0.8.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=43b16a58fc529439774a79667b310fe6 diff --git a/metadata/md5-cache/dev-ruby/sinatra-2.0.8.1-r1 b/metadata/md5-cache/dev-ruby/sinatra-2.0.8.1-r1 index 4cbf9dab324f..47a4af221ff2 100644 --- a/metadata/md5-cache/dev-ruby/sinatra-2.0.8.1-r1 +++ b/metadata/md5-cache/dev-ruby/sinatra-2.0.8.1-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/sinatra/sinatra/archive/v2.0.8.1.tar.gz -> sinatra-2.0.8.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1c6228f2bdf2c83e0a852e424606e1b7 diff --git a/metadata/md5-cache/dev-ruby/sinatra-2.1.0 b/metadata/md5-cache/dev-ruby/sinatra-2.1.0 index 7e08d004e032..04338b90c8ab 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a059aa5c87a414d9b0ce9ddd638a8499 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 e1856ad8a244..35ac2c37532c 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sinatra-partial-1.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f6c9b5b98387ccc399026e7fab834bf4 diff --git a/metadata/md5-cache/dev-ruby/six-0.2.0 b/metadata/md5-cache/dev-ruby/six-0.2.0 index aa567bbd4c80..8fddb2c31338 100644 --- a/metadata/md5-cache/dev-ruby/six-0.2.0 +++ b/metadata/md5-cache/dev-ruby/six-0.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=48d4a891725ce50cdbfba8ab3f144f9c diff --git a/metadata/md5-cache/dev-ruby/slim-3.0.9 b/metadata/md5-cache/dev-ruby/slim-3.0.9 index 2f1e8fd075e8..0b9fb01fb48f 100644 --- a/metadata/md5-cache/dev-ruby/slim-3.0.9 +++ b/metadata/md5-cache/dev-ruby/slim-3.0.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=79656c7948a2cd8c26c37ab316e430cf 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 4b88c4a19e94..353f5ebaab67 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cc83065256f384b42fcead3591e05e9b diff --git a/metadata/md5-cache/dev-ruby/slim-4.1.0 b/metadata/md5-cache/dev-ruby/slim-4.1.0 index 8f1464b49f9d..c55e0deae22c 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/slim-4.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4563bcfde7fcfe10369f2dbb39c6f597 diff --git a/metadata/md5-cache/dev-ruby/slop-4.8.1 b/metadata/md5-cache/dev-ruby/slop-4.8.1 index caec53417128..d396336e4d90 100644 --- a/metadata/md5-cache/dev-ruby/slop-4.8.1 +++ b/metadata/md5-cache/dev-ruby/slop-4.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/injekt/slop/archive/v4.8.1.tar.gz -> slop-4.8.1.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=71df450defcc5a2787a1b3eb9194aa43 diff --git a/metadata/md5-cache/dev-ruby/slop-4.8.2 b/metadata/md5-cache/dev-ruby/slop-4.8.2 index 1465086c0575..233f49481577 100644 --- a/metadata/md5-cache/dev-ruby/slop-4.8.2 +++ b/metadata/md5-cache/dev-ruby/slop-4.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/injekt/slop/archive/v4.8.2.tar.gz -> slop-4.8.2.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dca509b7a9eee040d8ae047e13f4864c diff --git a/metadata/md5-cache/dev-ruby/slow_enumerator_tools-1.1.0 b/metadata/md5-cache/dev-ruby/slow_enumerator_tools-1.1.0 index 1d0d33e2a661..b8537b0a4823 100644 --- a/metadata/md5-cache/dev-ruby/slow_enumerator_tools-1.1.0 +++ b/metadata/md5-cache/dev-ruby/slow_enumerator_tools-1.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/slow_enumerator_tools-1.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e55bfbccc8d5b24d70dde760b8ec7702 diff --git a/metadata/md5-cache/dev-ruby/source_map-3.0.1 b/metadata/md5-cache/dev-ruby/source_map-3.0.1 index 8160f65df8cf..88f6d823c3eb 100644 --- a/metadata/md5-cache/dev-ruby/source_map-3.0.1 +++ b/metadata/md5-cache/dev-ruby/source_map-3.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/source_map-3.0.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=634302f0443694c19bdfc6527e6c3ac8 diff --git a/metadata/md5-cache/dev-ruby/sourcemap-0.1.1 b/metadata/md5-cache/dev-ruby/sourcemap-0.1.1 index 80cadbbd639a..01e2860e5bbc 100644 --- a/metadata/md5-cache/dev-ruby/sourcemap-0.1.1 +++ b/metadata/md5-cache/dev-ruby/sourcemap-0.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sourcemap-0.1.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2d59def00b46586bec87294421c74952 diff --git a/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r6 b/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r6 index 461bab338e0c..f6d0aa1bdac3 100644 --- a/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r6 +++ b/metadata/md5-cache/dev-ruby/sparklines-0.5.2-r6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sparklines-0.5.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f70e66bd0f5de19d56ff639804cfaace diff --git a/metadata/md5-cache/dev-ruby/spork-0.9.2-r2 b/metadata/md5-cache/dev-ruby/spork-0.9.2-r2 index 0f97c25c88ed..3a9671cd842a 100644 --- a/metadata/md5-cache/dev-ruby/spork-0.9.2-r2 +++ b/metadata/md5-cache/dev-ruby/spork-0.9.2-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/spork-0.9.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1b26443d18afae24aafef640c0d20c6e diff --git a/metadata/md5-cache/dev-ruby/spreadsheet-1.2.6 b/metadata/md5-cache/dev-ruby/spreadsheet-1.2.6 index 739fc296da1f..cf8843bd40f1 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=067d5ef924106ab8126a35f52ac7fc38 diff --git a/metadata/md5-cache/dev-ruby/spring-2.1.0 b/metadata/md5-cache/dev-ruby/spring-2.1.0 index 46b872474c03..3cdc82dbade7 100644 --- a/metadata/md5-cache/dev-ruby/spring-2.1.0 +++ b/metadata/md5-cache/dev-ruby/spring-2.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1.1 SRC_URI=https://github.com/rails/spring/archive/v2.1.0.tar.gz -> spring-2.1.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b6292e993c71e803c2ae100f79334823 diff --git a/metadata/md5-cache/dev-ruby/spring-2.1.1 b/metadata/md5-cache/dev-ruby/spring-2.1.1 index 8ad43c0075cf..579f2dc4a978 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_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=66f9fcda20966b1a9bebd4732c467d7c diff --git a/metadata/md5-cache/dev-ruby/sprockets-3.7.2 b/metadata/md5-cache/dev-ruby/sprockets-3.7.2 index 587365b43b36..85b13e3ccc16 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=1b91350a146e8c94cc675f557b25eb57 diff --git a/metadata/md5-cache/dev-ruby/sprockets-4.0.2 b/metadata/md5-cache/dev-ruby/sprockets-4.0.2 index bd507b466533..e8bfadce6ade 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8296336e738b7465969b10167daca05b diff --git a/metadata/md5-cache/dev-ruby/sprockets-rails-3.2.1 b/metadata/md5-cache/dev-ruby/sprockets-rails-3.2.1 index 2696e5556f5b..093e31a38834 100644 --- a/metadata/md5-cache/dev-ruby/sprockets-rails-3.2.1 +++ b/metadata/md5-cache/dev-ruby/sprockets-rails-3.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rails/sprockets-rails/archive/v3.2.1.tar.gz -> sprockets-rails-3.2.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=7aea67d147740a4a93750d1f4acadcdf diff --git a/metadata/md5-cache/dev-ruby/sprockets-rails-3.2.2 b/metadata/md5-cache/dev-ruby/sprockets-rails-3.2.2 index 2f7ebd7b96b0..6ac6b90ee37e 100644 --- a/metadata/md5-cache/dev-ruby/sprockets-rails-3.2.2 +++ b/metadata/md5-cache/dev-ruby/sprockets-rails-3.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/rails/sprockets-rails/archive/v3.2.2.tar.gz -> sprockets-rails-3.2.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4001aad630e2bd46665e5f4c0b9a9bd2 diff --git a/metadata/md5-cache/dev-ruby/spy-1.0.0 b/metadata/md5-cache/dev-ruby/spy-1.0.0 index aeacee85ad06..2c9271c2e631 100644 --- a/metadata/md5-cache/dev-ruby/spy-1.0.0 +++ b/metadata/md5-cache/dev-ruby/spy-1.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/spy-1.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=54a9a9c476b554b6419c32f56be0a401 diff --git a/metadata/md5-cache/dev-ruby/spy-1.0.1 b/metadata/md5-cache/dev-ruby/spy-1.0.1 index 01f940a1ef16..92819ddbfa8b 100644 --- a/metadata/md5-cache/dev-ruby/spy-1.0.1 +++ b/metadata/md5-cache/dev-ruby/spy-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/spy-1.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8b78626073ab4d673a1873436ac69987 diff --git a/metadata/md5-cache/dev-ruby/sqlite3-1.3.13 b/metadata/md5-cache/dev-ruby/sqlite3-1.3.13 index 45783bbd723f..147cb1bc8428 100644 --- a/metadata/md5-cache/dev-ruby/sqlite3-1.3.13 +++ b/metadata/md5-cache/dev-ruby/sqlite3-1.3.13 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sqlite3-1.3.13.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=dcceb33e93352fc94e00a62dec8f89a7 diff --git a/metadata/md5-cache/dev-ruby/sqlite3-1.4.1 b/metadata/md5-cache/dev-ruby/sqlite3-1.4.1 index c7401c0ba2e4..3ccf59850064 100644 --- a/metadata/md5-cache/dev-ruby/sqlite3-1.4.1 +++ b/metadata/md5-cache/dev-ruby/sqlite3-1.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sqlite3-1.4.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=eb5c162147c6a7507f72ea542c3a420d diff --git a/metadata/md5-cache/dev-ruby/sqlite3-1.4.2 b/metadata/md5-cache/dev-ruby/sqlite3-1.4.2 index bb28db91ea60..d36afe0e69db 100644 --- a/metadata/md5-cache/dev-ruby/sqlite3-1.4.2 +++ b/metadata/md5-cache/dev-ruby/sqlite3-1.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sqlite3-1.4.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8883d2c44a6c031e5bd165e7dadbfeb5 diff --git a/metadata/md5-cache/dev-ruby/sshkey-2.0.0 b/metadata/md5-cache/dev-ruby/sshkey-2.0.0 index 3419ba1dbc23..05f8e315ed58 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c9908097a4fe20d34fff1d3e4ecb8687 diff --git a/metadata/md5-cache/dev-ruby/sshkit-1.20.0 b/metadata/md5-cache/dev-ruby/sshkit-1.20.0 index 969bf7356d10..41c65faaf81b 100644 --- a/metadata/md5-cache/dev-ruby/sshkit-1.20.0 +++ b/metadata/md5-cache/dev-ruby/sshkit-1.20.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sshkit-1.20.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3fe915394bf7b8fb2b37b28362a79bfe diff --git a/metadata/md5-cache/dev-ruby/sshkit-1.21.0 b/metadata/md5-cache/dev-ruby/sshkit-1.21.0 index 1bd36a6808a1..5a7d03d80dac 100644 --- a/metadata/md5-cache/dev-ruby/sshkit-1.21.0 +++ b/metadata/md5-cache/dev-ruby/sshkit-1.21.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/sshkit-1.21.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=141c9a1574b1f8781db99dad828f3909 diff --git a/metadata/md5-cache/dev-ruby/stamp-0.6.0 b/metadata/md5-cache/dev-ruby/stamp-0.6.0 index ca522ee6951a..65d09fe09ff6 100644 --- a/metadata/md5-cache/dev-ruby/stamp-0.6.0 +++ b/metadata/md5-cache/dev-ruby/stamp-0.6.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6f3084ed4dbe0d3c0966efd70cfc4bb0 diff --git a/metadata/md5-cache/dev-ruby/state_machine-1.2.0 b/metadata/md5-cache/dev-ruby/state_machine-1.2.0 index 20a7725f4b00..629d46ce151c 100644 --- a/metadata/md5-cache/dev-ruby/state_machine-1.2.0 +++ b/metadata/md5-cache/dev-ruby/state_machine-1.2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/state_machine-1.2.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=47967b9abbe5190830ecd3c7cae57af3 diff --git a/metadata/md5-cache/dev-ruby/stomp-1.4.10 b/metadata/md5-cache/dev-ruby/stomp-1.4.10 index af70cf614fc4..d450fb9526f2 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/stomp-1.4.10.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e6b3ad24f64afcdf29e2acbaa00a5116 diff --git a/metadata/md5-cache/dev-ruby/stomp-1.4.9 b/metadata/md5-cache/dev-ruby/stomp-1.4.9 index f077fb79f2e7..db185d66e6c0 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 4962233c49fb..fcbf02e8401a 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/stringex-2.8.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=49d8829bd0c67f4ee383e4d41c0a031c diff --git a/metadata/md5-cache/dev-ruby/strptime-0.2.3 b/metadata/md5-cache/dev-ruby/strptime-0.2.3 index d2f04cdedac8..b5ac4e002243 100644 --- a/metadata/md5-cache/dev-ruby/strptime-0.2.3 +++ b/metadata/md5-cache/dev-ruby/strptime-0.2.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nurse/strptime/archive/v0.2.3.tar.gz -> strptime-0.2.3.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6bc67ce407b1bde5c55f422a850b1e0d diff --git a/metadata/md5-cache/dev-ruby/strptime-0.2.4 b/metadata/md5-cache/dev-ruby/strptime-0.2.4 index 6e9f2e1c79dd..f247ba906e58 100644 --- a/metadata/md5-cache/dev-ruby/strptime-0.2.4 +++ b/metadata/md5-cache/dev-ruby/strptime-0.2.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nurse/strptime/archive/v0.2.4.tar.gz -> strptime-0.2.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6bc67ce407b1bde5c55f422a850b1e0d diff --git a/metadata/md5-cache/dev-ruby/strptime-0.2.5 b/metadata/md5-cache/dev-ruby/strptime-0.2.5 index 7ee3548a3674..cd203442c07c 100644 --- a/metadata/md5-cache/dev-ruby/strptime-0.2.5 +++ b/metadata/md5-cache/dev-ruby/strptime-0.2.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e37e4a1ca15efdb59bcfefb22dd5b0c8 diff --git a/metadata/md5-cache/dev-ruby/subexec-0.2.3-r1 b/metadata/md5-cache/dev-ruby/subexec-0.2.3-r1 index a64e5cb07cc7..fe7c8346e48b 100644 --- a/metadata/md5-cache/dev-ruby/subexec-0.2.3-r1 +++ b/metadata/md5-cache/dev-ruby/subexec-0.2.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1ef0fcab789da0a89018f3182ab6f202 diff --git a/metadata/md5-cache/dev-ruby/sync-0.5.0 b/metadata/md5-cache/dev-ruby/sync-0.5.0 index 373b2c4b0040..4eb1551f3543 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 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5f8d8957a33227af25389f7a0d56c222 diff --git a/metadata/md5-cache/dev-ruby/syntax-1.2.2 b/metadata/md5-cache/dev-ruby/syntax-1.2.2 index 0ca9f9d2af7c..4e0b2b766b6f 100644 --- a/metadata/md5-cache/dev-ruby/syntax-1.2.2 +++ b/metadata/md5-cache/dev-ruby/syntax-1.2.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3161833645afd571cfc00145d4972603 diff --git a/metadata/md5-cache/dev-ruby/sys-uname-1.2.1 b/metadata/md5-cache/dev-ruby/sys-uname-1.2.1 index 4d3e163ebf4c..2834fd3e9e7f 100644 --- a/metadata/md5-cache/dev-ruby/sys-uname-1.2.1 +++ b/metadata/md5-cache/dev-ruby/sys-uname-1.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/sys-uname-1.2.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3ec6d2dc095be5b9eff96f4b9986f834 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 55125a1983d5..c7ee8da5e59a 100644 --- a/metadata/md5-cache/dev-ruby/sys-uname-1.2.2 +++ b/metadata/md5-cache/dev-ruby/sys-uname-1.2.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/sys-uname-1.2.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=67db984bedc3ab788eb039db0f09e21f diff --git a/metadata/md5-cache/dev-ruby/syslogger-1.6.5 b/metadata/md5-cache/dev-ruby/syslogger-1.6.5 index a1d41c62783f..d3501e5e8f7a 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2f0ed2dad3d118c6fd9b48303d8ec1a5 diff --git a/metadata/md5-cache/dev-ruby/systemu-2.6.5 b/metadata/md5-cache/dev-ruby/systemu-2.6.5 index 236a373b2dc0..da200badb8ea 100644 --- a/metadata/md5-cache/dev-ruby/systemu-2.6.5 +++ b/metadata/md5-cache/dev-ruby/systemu-2.6.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/systemu-2.6.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e1f757167a33acad0b4a2ab88fbc3b61 diff --git a/metadata/md5-cache/dev-ruby/tdiff-0.3.4 b/metadata/md5-cache/dev-ruby/tdiff-0.3.4 index b5aca78f6f68..69aa2d9a6574 100644 --- a/metadata/md5-cache/dev-ruby/tdiff-0.3.4 +++ b/metadata/md5-cache/dev-ruby/tdiff-0.3.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tdiff-0.3.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8e1dad6e5b2e94ae671d3b06240fa44d diff --git a/metadata/md5-cache/dev-ruby/temple-0.8.2 b/metadata/md5-cache/dev-ruby/temple-0.8.2 index 85076a3d074b..ce346582cbbd 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=878fce08fbebd163eec49853f0a12214 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 515d2c1d89b5..875ef57a4258 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1be1f3b96b4c89f2f9a6ec58ed16d254 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 4612438af25a..bfaee8d8f96e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 698fd08f98e7..fb109920f96b 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d2d7c35e775a336621614288a946eb85 diff --git a/metadata/md5-cache/dev-ruby/test-unit-3.3.3 b/metadata/md5-cache/dev-ruby/test-unit-3.3.3 index e6dc6a280587..ca6e704b38fc 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-3.3.3 +++ b/metadata/md5-cache/dev-ruby/test-unit-3.3.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/test-unit-3.3.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=677ab2e7153ed08fdcb1db49a88e20df diff --git a/metadata/md5-cache/dev-ruby/test-unit-3.3.4 b/metadata/md5-cache/dev-ruby/test-unit-3.3.4 index b7da9dda0fb6..54fe0c4fb806 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-3.3.4 +++ b/metadata/md5-cache/dev-ruby/test-unit-3.3.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/test-unit-3.3.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9c10a75cd40eff6a9608b19f3c1c518c diff --git a/metadata/md5-cache/dev-ruby/test-unit-3.3.5 b/metadata/md5-cache/dev-ruby/test-unit-3.3.5 index 53bcfc29fbdf..909798ac380e 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-3.3.5 +++ b/metadata/md5-cache/dev-ruby/test-unit-3.3.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/test-unit-3.3.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9c10a75cd40eff6a9608b19f3c1c518c diff --git a/metadata/md5-cache/dev-ruby/test-unit-3.3.6 b/metadata/md5-cache/dev-ruby/test-unit-3.3.6 index c09675a1c535..cbfb680c7af8 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-3.3.6 +++ b/metadata/md5-cache/dev-ruby/test-unit-3.3.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/test-unit-3.3.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9c10a75cd40eff6a9608b19f3c1c518c diff --git a/metadata/md5-cache/dev-ruby/test-unit-3.3.7 b/metadata/md5-cache/dev-ruby/test-unit-3.3.7 new file mode 100644 index 000000000000..aaff20cd76c6 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/test-unit-3.3.7 @@ -0,0 +1,16 @@ +BDEPEND=test? ( ruby_targets_ruby25? ( dev-ruby/power_assert[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/power_assert[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/power_assert[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DESCRIPTION=An xUnit family unit testing framework for Ruby +EAPI=7 +HOMEPAGE=https://rubygems.org/gems/test-unit +IUSE=doc test test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( Ruby GPL-2 ) PSF-2 +RDEPEND=ruby_targets_ruby25? ( dev-ruby/power_assert[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/power_assert[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/power_assert[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=2 +SRC_URI=https://rubygems.org/gems/test-unit-3.3.7.gem +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=19605d6f64d4a8eee551c8e0c6e8b640 diff --git a/metadata/md5-cache/dev-ruby/test-unit-rr-1.0.5 b/metadata/md5-cache/dev-ruby/test-unit-rr-1.0.5 index 113154c0b300..bff55d6b175f 100644 --- a/metadata/md5-cache/dev-ruby/test-unit-rr-1.0.5 +++ b/metadata/md5-cache/dev-ruby/test-unit-rr-1.0.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/test-unit-rr-1.0.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=c0fcee9cae6fde77b3fb0a2572794f60 diff --git a/metadata/md5-cache/dev-ruby/test_construct-2.0.2 b/metadata/md5-cache/dev-ruby/test_construct-2.0.2 index 2a268ad8e9f1..c6cec75e2ac0 100644 --- a/metadata/md5-cache/dev-ruby/test_construct-2.0.2 +++ b/metadata/md5-cache/dev-ruby/test_construct-2.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/test_construct-2.0.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4af7a35357abedbb4719a1fe8adc0ae8 diff --git a/metadata/md5-cache/dev-ruby/test_declarative-0.0.6 b/metadata/md5-cache/dev-ruby/test_declarative-0.0.6 index d4de9feaf4e8..417f557172cc 100644 --- a/metadata/md5-cache/dev-ruby/test_declarative-0.0.6 +++ b/metadata/md5-cache/dev-ruby/test_declarative-0.0.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/svenfuchs/test_declarative/tarball/v0.0.6 -> test_declarative-0.0.6.tgz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f91f3dd9e437b02e4e76d3532b5f565c diff --git a/metadata/md5-cache/dev-ruby/text-1.3.1 b/metadata/md5-cache/dev-ruby/text-1.3.1 index c12b987017a9..906d17d496ab 100644 --- a/metadata/md5-cache/dev-ruby/text-1.3.1 +++ b/metadata/md5-cache/dev-ruby/text-1.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/text-1.3.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=28f20f8abfdefd40b25aa9e25e2a8451 diff --git a/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r2 b/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r2 index 7db3cf16d6a5..a5c3edd86405 100644 --- a/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r2 +++ b/metadata/md5-cache/dev-ruby/text-hyphen-1.4.1-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/text-hyphen-1.4.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=0eb12caaa1d00e7c2b52c54a08e1b960 diff --git a/metadata/md5-cache/dev-ruby/textpow-1.4.0 b/metadata/md5-cache/dev-ruby/textpow-1.4.0 index 45ceaf2cce42..f442ab9fca41 100644 --- a/metadata/md5-cache/dev-ruby/textpow-1.4.0 +++ b/metadata/md5-cache/dev-ruby/textpow-1.4.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=29205f5509c7cfb8731d9c63237873c5 diff --git a/metadata/md5-cache/dev-ruby/thor-0.20.3 b/metadata/md5-cache/dev-ruby/thor-0.20.3 index 27282e5c9034..19741d531ef1 100644 --- a/metadata/md5-cache/dev-ruby/thor-0.20.3 +++ b/metadata/md5-cache/dev-ruby/thor-0.20.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/erikhuda/thor/archive/v0.20.3.tar.gz -> thor-git-0.20.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=83a9f6758ca49940b19e7ee500d7c475 diff --git a/metadata/md5-cache/dev-ruby/thor-0.20.3-r1 b/metadata/md5-cache/dev-ruby/thor-0.20.3-r1 index e54d84ec3776..c7fdc78b9c05 100644 --- a/metadata/md5-cache/dev-ruby/thor-0.20.3-r1 +++ b/metadata/md5-cache/dev-ruby/thor-0.20.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/erikhuda/thor/archive/v0.20.3.tar.gz -> thor-git-0.20.3.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f88e17256afc431de5190eaea5c118e3 diff --git a/metadata/md5-cache/dev-ruby/thor-1.0.1 b/metadata/md5-cache/dev-ruby/thor-1.0.1 index b50fcdfe21fb..b2f74c8e9e56 100644 --- a/metadata/md5-cache/dev-ruby/thor-1.0.1 +++ b/metadata/md5-cache/dev-ruby/thor-1.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/erikhuda/thor/archive/v1.0.1.tar.gz -> thor-git-1.0.1.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f0e85bda83ea329b1799ea2b3b40899f 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 3b1cbc1677a8..f3896397fadf 100644 --- a/metadata/md5-cache/dev-ruby/thread_order-1.1.1 +++ b/metadata/md5-cache/dev-ruby/thread_order-1.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/thread_order-1.1.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cad173b766a23a87ed21c92374e49716 diff --git a/metadata/md5-cache/dev-ruby/thread_safe-0.3.6 b/metadata/md5-cache/dev-ruby/thread_safe-0.3.6 index d4d24322b24e..c5685a97c0f9 100644 --- a/metadata/md5-cache/dev-ruby/thread_safe-0.3.6 +++ b/metadata/md5-cache/dev-ruby/thread_safe-0.3.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/thread_safe-0.3.6.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=fc5aebe92a1ba7f51742d83a63e56168 diff --git a/metadata/md5-cache/dev-ruby/tidy-ext-0.1.14-r3 b/metadata/md5-cache/dev-ruby/tidy-ext-0.1.14-r3 index ea14e3809c8b..f4dddc402d05 100644 --- a/metadata/md5-cache/dev-ruby/tidy-ext-0.1.14-r3 +++ b/metadata/md5-cache/dev-ruby/tidy-ext-0.1.14-r3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=faa9b3c4a036be4c5a502fda8582031a diff --git a/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r4 b/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r4 index a7c66f784751..6d8b017bfdd5 100644 --- a/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r4 +++ b/metadata/md5-cache/dev-ruby/tidy_table-0.0.5-r4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tidy_table-0.0.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=9f70aea28df4d57ea6d549bb5e4a9a4b 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 232eee59720b..7c203ac50d0c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=947365c188e5dcc96923513fd24e99d1 diff --git a/metadata/md5-cache/dev-ruby/tilt-2.0.10 b/metadata/md5-cache/dev-ruby/tilt-2.0.10 index 8ecdfe391bbc..000374d50661 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1f2bb6ac03a60f6f11b0f81496b31c8d diff --git a/metadata/md5-cache/dev-ruby/tilt-2.0.9 b/metadata/md5-cache/dev-ruby/tilt-2.0.9 index 3b65aedcca56..cd55f2615341 100644 --- a/metadata/md5-cache/dev-ruby/tilt-2.0.9 +++ b/metadata/md5-cache/dev-ruby/tilt-2.0.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/tilt-2.0.9.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3113c6fc521beb2f73f30cb7bc82e6ff diff --git a/metadata/md5-cache/dev-ruby/timecop-0.9.1 b/metadata/md5-cache/dev-ruby/timecop-0.9.1 index 205f9a249388..e267ff1b3b54 100644 --- a/metadata/md5-cache/dev-ruby/timecop-0.9.1 +++ b/metadata/md5-cache/dev-ruby/timecop-0.9.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/timecop-0.9.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6c4fc2880022676a3c695644d9046374 diff --git a/metadata/md5-cache/dev-ruby/timecop-0.9.2 b/metadata/md5-cache/dev-ruby/timecop-0.9.2 index bf24723b301f..57daaafa9066 100644 --- a/metadata/md5-cache/dev-ruby/timecop-0.9.2 +++ b/metadata/md5-cache/dev-ruby/timecop-0.9.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/timecop-0.9.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fcf6d291ba4a52239539d21bbbce1683 diff --git a/metadata/md5-cache/dev-ruby/timers-4.3.0 b/metadata/md5-cache/dev-ruby/timers-4.3.0 index 0bfb31112148..0d8f3c598b79 100644 --- a/metadata/md5-cache/dev-ruby/timers-4.3.0 +++ b/metadata/md5-cache/dev-ruby/timers-4.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://rubygems.org/gems/timers-4.3.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ce2e77b6f14ea6c6337c50940390ab70 diff --git a/metadata/md5-cache/dev-ruby/timers-4.3.2 b/metadata/md5-cache/dev-ruby/timers-4.3.2 index 1d503c2c8ca5..132c7ca976dc 100644 --- a/metadata/md5-cache/dev-ruby/timers-4.3.2 +++ b/metadata/md5-cache/dev-ruby/timers-4.3.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/tarcieri/timers/archive/v4.3.2.tar.gz -> timers-4.3.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=852027f12c012057ec95d3c32bdbaa34 diff --git a/metadata/md5-cache/dev-ruby/tins-1.20.2 b/metadata/md5-cache/dev-ruby/tins-1.20.2 index 5a5f2d9944fb..c86d8650d2fb 100644 --- a/metadata/md5-cache/dev-ruby/tins-1.20.2 +++ b/metadata/md5-cache/dev-ruby/tins-1.20.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tins-1.20.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bee803ec5b6d9c3986718a8d58f3e55a diff --git a/metadata/md5-cache/dev-ruby/tins-1.22.2 b/metadata/md5-cache/dev-ruby/tins-1.22.2 index d0ca910be238..271678a31f96 100644 --- a/metadata/md5-cache/dev-ruby/tins-1.22.2 +++ b/metadata/md5-cache/dev-ruby/tins-1.22.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tins-1.22.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a083450feabbccd11c6acfb77edea0ec diff --git a/metadata/md5-cache/dev-ruby/tins-1.24.1 b/metadata/md5-cache/dev-ruby/tins-1.24.1 index 8aab1cf3d63c..cba505e377e5 100644 --- a/metadata/md5-cache/dev-ruby/tins-1.24.1 +++ b/metadata/md5-cache/dev-ruby/tins-1.24.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tins-1.24.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=928a286e72bd638d6402bb5824a1d67a diff --git a/metadata/md5-cache/dev-ruby/tins-1.25.0 b/metadata/md5-cache/dev-ruby/tins-1.25.0 index 9c233134bf29..a4b5d5c07cf6 100644 --- a/metadata/md5-cache/dev-ruby/tins-1.25.0 +++ b/metadata/md5-cache/dev-ruby/tins-1.25.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tins-1.25.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=470d799384dc9f2e33d8eec880d6728f diff --git a/metadata/md5-cache/dev-ruby/tins-1.26.0 b/metadata/md5-cache/dev-ruby/tins-1.26.0 index 9b0f17385a9a..949608c5d77b 100644 --- a/metadata/md5-cache/dev-ruby/tins-1.26.0 +++ b/metadata/md5-cache/dev-ruby/tins-1.26.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tins-1.26.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0b836655dade6ece3b009e95c06c1633 diff --git a/metadata/md5-cache/dev-ruby/tokyocabinet-1.32.0 b/metadata/md5-cache/dev-ruby/tokyocabinet-1.32.0 index 3191372a3609..352561277530 100644 --- a/metadata/md5-cache/dev-ruby/tokyocabinet-1.32.0 +++ b/metadata/md5-cache/dev-ruby/tokyocabinet-1.32.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tokyocabinet-1.32.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=39ade17f45b3095f8e82ee85449989db diff --git a/metadata/md5-cache/dev-ruby/tomlrb-1.2.8 b/metadata/md5-cache/dev-ruby/tomlrb-1.2.8 index e53240f7db20..2c6763d2fe80 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=60f572f8b2f211030aa99213dcb6d79d diff --git a/metadata/md5-cache/dev-ruby/totoridipjp-0.1.0 b/metadata/md5-cache/dev-ruby/totoridipjp-0.1.0 index f62f230be46c..5361bb17570c 100644 --- a/metadata/md5-cache/dev-ruby/totoridipjp-0.1.0 +++ b/metadata/md5-cache/dev-ruby/totoridipjp-0.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/totoridipjp-0.1.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e2fb896ad4bcd4089a7410c8b1845f46 diff --git a/metadata/md5-cache/dev-ruby/transaction-simple-1.4.0.2-r2 b/metadata/md5-cache/dev-ruby/transaction-simple-1.4.0.2-r2 index 509275b02bbc..2340d93d1c33 100644 --- a/metadata/md5-cache/dev-ruby/transaction-simple-1.4.0.2-r2 +++ b/metadata/md5-cache/dev-ruby/transaction-simple-1.4.0.2-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/transaction-simple-1.4.0.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=e833df6f1419d17b94068a0f3a7030e6 diff --git a/metadata/md5-cache/dev-ruby/travis-1.10.0 b/metadata/md5-cache/dev-ruby/travis-1.10.0 index 3b2cdd927672..559504749b2f 100644 --- a/metadata/md5-cache/dev-ruby/travis-1.10.0 +++ b/metadata/md5-cache/dev-ruby/travis-1.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4d4a8fa52ab67560aac69702a4f8719c diff --git a/metadata/md5-cache/dev-ruby/travis-1.9.1 b/metadata/md5-cache/dev-ruby/travis-1.9.1 index 6b871479aa9c..03ce4ca0d43d 100644 --- a/metadata/md5-cache/dev-ruby/travis-1.9.1 +++ b/metadata/md5-cache/dev-ruby/travis-1.9.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/travis-1.9.1.gem -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c2294c2c9b36d9bc2291851c70fa7138 diff --git a/metadata/md5-cache/dev-ruby/treetop-1.6.10 b/metadata/md5-cache/dev-ruby/treetop-1.6.10 index dfc01b74040c..1877e0875c12 100644 --- a/metadata/md5-cache/dev-ruby/treetop-1.6.10 +++ b/metadata/md5-cache/dev-ruby/treetop-1.6.10 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/treetop-1.6.10.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8572b69e1e01499922cd2ae2fb44b5e2 diff --git a/metadata/md5-cache/dev-ruby/treetop-1.6.11 b/metadata/md5-cache/dev-ruby/treetop-1.6.11 index 000467b2e28d..77ddddb575ce 100644 --- a/metadata/md5-cache/dev-ruby/treetop-1.6.11 +++ b/metadata/md5-cache/dev-ruby/treetop-1.6.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7f44f016a270e2216e36460dfead0c2d diff --git a/metadata/md5-cache/dev-ruby/trollop-2.1.3 b/metadata/md5-cache/dev-ruby/trollop-2.1.3 index 8d860778c4ed..3cfbc1135609 100644 --- a/metadata/md5-cache/dev-ruby/trollop-2.1.3 +++ b/metadata/md5-cache/dev-ruby/trollop-2.1.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/trollop-2.1.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e17fae21b16c3d391a30b002c8d3aa3f diff --git a/metadata/md5-cache/dev-ruby/trollop-2.9.10 b/metadata/md5-cache/dev-ruby/trollop-2.9.10 index a84243b3cd39..805c5e40b55c 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/trollop-2.9.10.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=81de443982c630729cfe3d2a2fbf7c84 diff --git a/metadata/md5-cache/dev-ruby/ttfunk-1.5.1 b/metadata/md5-cache/dev-ruby/ttfunk-1.5.1 index d4adc1422b55..9c2deab3d586 100644 --- a/metadata/md5-cache/dev-ruby/ttfunk-1.5.1 +++ b/metadata/md5-cache/dev-ruby/ttfunk-1.5.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1.5 SRC_URI=https://github.com/prawnpdf/ttfunk/archive/1.5.1.tar.gz -> ttfunk-1.5.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=58169e641ea11b51b26a701e3facaa51 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 476fb8fb1171..814517512f6f 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=268900a5b311b574c4a84882decf9365 diff --git a/metadata/md5-cache/dev-ruby/tty-color-0.4.3 b/metadata/md5-cache/dev-ruby/tty-color-0.4.3 index fb2d621f6b71..b9db81390688 100644 --- a/metadata/md5-cache/dev-ruby/tty-color-0.4.3 +++ b/metadata/md5-cache/dev-ruby/tty-color-0.4.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tty-color-0.4.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b225c4656742e9f6e31a1f0fdb2fdb23 diff --git a/metadata/md5-cache/dev-ruby/tty-color-0.5.2 b/metadata/md5-cache/dev-ruby/tty-color-0.5.2 index 0320625da2e9..c18711c94b72 100644 --- a/metadata/md5-cache/dev-ruby/tty-color-0.5.2 +++ b/metadata/md5-cache/dev-ruby/tty-color-0.5.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-color/archive/v0.5.2.tar.gz -> tty-color-0.5.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4a7ec4fe4d3ec53ffd57ca690b1f0cd2 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 b2c4525e059c..a6cf498ff8bd 100644 --- a/metadata/md5-cache/dev-ruby/tty-color-0.6.0 +++ b/metadata/md5-cache/dev-ruby/tty-color-0.6.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4a7ec4fe4d3ec53ffd57ca690b1f0cd2 diff --git a/metadata/md5-cache/dev-ruby/tty-command-0.10.0 b/metadata/md5-cache/dev-ruby/tty-command-0.10.0 index 049e0c9fc378..7f289d535301 100644 --- a/metadata/md5-cache/dev-ruby/tty-command-0.10.0 +++ b/metadata/md5-cache/dev-ruby/tty-command-0.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.0.tar.gz -> tty-command-0.10.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=10feb82fa263543a3d09270bb621ba57 diff --git a/metadata/md5-cache/dev-ruby/tty-command-0.9.0 b/metadata/md5-cache/dev-ruby/tty-command-0.9.0 index 726eeaa6ffd2..1b878a85ac2e 100644 --- a/metadata/md5-cache/dev-ruby/tty-command-0.9.0 +++ b/metadata/md5-cache/dev-ruby/tty-command-0.9.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-command/archive/v0.9.0.tar.gz -> tty-command-0.9.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=0bb41e2a73d14eb0dddcefb4f091a1a8 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 e57fc36ce96b..a213a7b40ca4 100644 --- a/metadata/md5-cache/dev-ruby/tty-cursor-0.7.1 +++ b/metadata/md5-cache/dev-ruby/tty-cursor-0.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=40d74d6c99bf9ade894faf31f990d8ff 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 2b09fee05ccd..ee04e125aa27 100644 --- a/metadata/md5-cache/dev-ruby/tty-file-0.10.0 +++ b/metadata/md5-cache/dev-ruby/tty-file-0.10.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f05692125cb5989a309e55a1b74b4738 diff --git a/metadata/md5-cache/dev-ruby/tty-file-0.7.0 b/metadata/md5-cache/dev-ruby/tty-file-0.7.0 index c85bfcb71d51..8d15c7115f1f 100644 --- a/metadata/md5-cache/dev-ruby/tty-file-0.7.0 +++ b/metadata/md5-cache/dev-ruby/tty-file-0.7.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-file/archive/v0.7.0.tar.gz -> tty-file-0.7.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e8c3798902e65221c450f8edc57fe4d2 diff --git a/metadata/md5-cache/dev-ruby/tty-platform-0.3.0 b/metadata/md5-cache/dev-ruby/tty-platform-0.3.0 index b3abed13821d..7c34aa59d80d 100644 --- a/metadata/md5-cache/dev-ruby/tty-platform-0.3.0 +++ b/metadata/md5-cache/dev-ruby/tty-platform-0.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f1500928a1017902c6e6f9acf81ed5ed diff --git a/metadata/md5-cache/dev-ruby/tty-prompt-0.20.0 b/metadata/md5-cache/dev-ruby/tty-prompt-0.20.0 index 87674b4df906..5a4a4a9800fe 100644 --- a/metadata/md5-cache/dev-ruby/tty-prompt-0.20.0 +++ b/metadata/md5-cache/dev-ruby/tty-prompt-0.20.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tty-prompt-0.20.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=dadb48e748f2f2c53f54aca17e756a18 diff --git a/metadata/md5-cache/dev-ruby/tty-prompt-0.21.0 b/metadata/md5-cache/dev-ruby/tty-prompt-0.21.0 index a5c73473b97d..1de52d1dcc05 100644 --- a/metadata/md5-cache/dev-ruby/tty-prompt-0.21.0 +++ b/metadata/md5-cache/dev-ruby/tty-prompt-0.21.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-prompt/archive/v0.21.0.tar.gz -> tty-prompt-0.21.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=190707f3b42749574bbb5305e45f446b diff --git a/metadata/md5-cache/dev-ruby/tty-prompt-0.22.0 b/metadata/md5-cache/dev-ruby/tty-prompt-0.22.0 index 8868902486ba..300fff642022 100644 --- a/metadata/md5-cache/dev-ruby/tty-prompt-0.22.0 +++ b/metadata/md5-cache/dev-ruby/tty-prompt-0.22.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-prompt/archive/v0.22.0.tar.gz -> tty-prompt-0.22.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=5ad2fe7e68d2cd4baf5dc9bd492abfd6 diff --git a/metadata/md5-cache/dev-ruby/tty-reader-0.7.0 b/metadata/md5-cache/dev-ruby/tty-reader-0.7.0 index 51145862fce0..086864e5fbd1 100644 --- a/metadata/md5-cache/dev-ruby/tty-reader-0.7.0 +++ b/metadata/md5-cache/dev-ruby/tty-reader-0.7.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tty-reader-0.7.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=adef741e00311dbee78d30cfa7bd2881 diff --git a/metadata/md5-cache/dev-ruby/tty-reader-0.8.0 b/metadata/md5-cache/dev-ruby/tty-reader-0.8.0 index 328a789a84a7..bb85d867e081 100644 --- a/metadata/md5-cache/dev-ruby/tty-reader-0.8.0 +++ b/metadata/md5-cache/dev-ruby/tty-reader-0.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/piotrmurach/tty-reader/archive/v0.8.0.tar.gz -> tty-reader-0.8.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e4f8edcd1039c033bf7a66d540e6d413 diff --git a/metadata/md5-cache/dev-ruby/tty-screen-0.7.1 b/metadata/md5-cache/dev-ruby/tty-screen-0.7.1 index 1a2dd1148d77..434144efc757 100644 --- a/metadata/md5-cache/dev-ruby/tty-screen-0.7.1 +++ b/metadata/md5-cache/dev-ruby/tty-screen-0.7.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 e8fb752a3e79..4b89d75e9758 100644 --- a/metadata/md5-cache/dev-ruby/tty-screen-0.8.1 +++ b/metadata/md5-cache/dev-ruby/tty-screen-0.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1fd38c4e696457157d62402b8f239ddc diff --git a/metadata/md5-cache/dev-ruby/tty-which-0.4.1 b/metadata/md5-cache/dev-ruby/tty-which-0.4.1 index ebec71c0965c..ce9c94456e44 100644 --- a/metadata/md5-cache/dev-ruby/tty-which-0.4.1 +++ b/metadata/md5-cache/dev-ruby/tty-which-0.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/tty-which-0.4.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3dcbabe1e8fb5988059de44d92dc2fb5 diff --git a/metadata/md5-cache/dev-ruby/tty-which-0.4.2 b/metadata/md5-cache/dev-ruby/tty-which-0.4.2 index 6a9dc0421ec2..1fc90c9f8c9e 100644 --- a/metadata/md5-cache/dev-ruby/tty-which-0.4.2 +++ b/metadata/md5-cache/dev-ruby/tty-which-0.4.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3e4f5d331ca315dbd00cc23bb5fc0f3d diff --git a/metadata/md5-cache/dev-ruby/turbolinks-5.2.1 b/metadata/md5-cache/dev-ruby/turbolinks-5.2.1 index 8d5f91b190f4..1ff11747b0dc 100644 --- a/metadata/md5-cache/dev-ruby/turbolinks-5.2.1 +++ b/metadata/md5-cache/dev-ruby/turbolinks-5.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/turbolinks-5.2.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ade34c76c0dc57c51f02a615c82ee5ad 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 18f264c8b814..4569328acd66 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3c3f60f8d399cf7f8e83e89d9de3c3f6 diff --git a/metadata/md5-cache/dev-ruby/twitter-7.0.0 b/metadata/md5-cache/dev-ruby/twitter-7.0.0 index 0ef0189a332b..99ea6b88c1ef 100644 --- a/metadata/md5-cache/dev-ruby/twitter-7.0.0 +++ b/metadata/md5-cache/dev-ruby/twitter-7.0.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1c5090d1f4019a6207019b0abab4c2e6 diff --git a/metadata/md5-cache/dev-ruby/twitter-text-3.1.0 b/metadata/md5-cache/dev-ruby/twitter-text-3.1.0 index 1413f3bb6119..b82e71a069f5 100644 --- a/metadata/md5-cache/dev-ruby/twitter-text-3.1.0 +++ b/metadata/md5-cache/dev-ruby/twitter-text-3.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3.1 SRC_URI=https://rubygems.org/gems/twitter-text-3.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6c241479d68733d7f73f6f6f858a58f4 diff --git a/metadata/md5-cache/dev-ruby/typed-array-0.1.2-r1 b/metadata/md5-cache/dev-ruby/typed-array-0.1.2-r1 index e7a692b82656..ad27d0d2d1fa 100644 --- a/metadata/md5-cache/dev-ruby/typed-array-0.1.2-r1 +++ b/metadata/md5-cache/dev-ruby/typed-array-0.1.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/typed-array-0.1.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=2ecbd4eeeff6446dde423ce9e83105f5 diff --git a/metadata/md5-cache/dev-ruby/typhoeus-0.6.9-r1 b/metadata/md5-cache/dev-ruby/typhoeus-0.6.9-r1 index f92fac07d476..542acc961dcc 100644 --- a/metadata/md5-cache/dev-ruby/typhoeus-0.6.9-r1 +++ b/metadata/md5-cache/dev-ruby/typhoeus-0.6.9-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/typhoeus-0.6.9.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f5ea099e3009310bb784c1321210be5d diff --git a/metadata/md5-cache/dev-ruby/typhoeus-1.3.1 b/metadata/md5-cache/dev-ruby/typhoeus-1.3.1 index 85f3095fb613..09edea4666b5 100644 --- a/metadata/md5-cache/dev-ruby/typhoeus-1.3.1 +++ b/metadata/md5-cache/dev-ruby/typhoeus-1.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/typhoeus-1.3.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=129bcc908bee9b3ef2184378dacb3302 diff --git a/metadata/md5-cache/dev-ruby/typhoeus-1.4.0 b/metadata/md5-cache/dev-ruby/typhoeus-1.4.0 index 04fcb53d5670..e8a732ca58af 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f656db08dae2b723db2552ef645b9895 diff --git a/metadata/md5-cache/dev-ruby/tzinfo-1.2.5 b/metadata/md5-cache/dev-ruby/tzinfo-1.2.5 index b2fecf942d29..708e222bfab7 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-1.2.5 +++ b/metadata/md5-cache/dev-ruby/tzinfo-1.2.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/tzinfo-1.2.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4117cf7296f96fa39e8150575b17f795 diff --git a/metadata/md5-cache/dev-ruby/tzinfo-1.2.7 b/metadata/md5-cache/dev-ruby/tzinfo-1.2.7 index 57b6128975eb..af092dd22c03 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-1.2.7 +++ b/metadata/md5-cache/dev-ruby/tzinfo-1.2.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/tzinfo-1.2.7.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6c0b335eccf7ae9cf478d9ce58f0ac4d diff --git a/metadata/md5-cache/dev-ruby/tzinfo-1.2.8 b/metadata/md5-cache/dev-ruby/tzinfo-1.2.8 index 56240f3e0cd1..d3a6ff9973d9 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=94556b36d66004fb7057f82dca151379 diff --git a/metadata/md5-cache/dev-ruby/tzinfo-2.0.2 b/metadata/md5-cache/dev-ruby/tzinfo-2.0.2 index 63400ca87861..91994da8bbdf 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-2.0.2 +++ b/metadata/md5-cache/dev-ruby/tzinfo-2.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/tzinfo/tzinfo/archive/v2.0.2.tar.gz -> tzinfo-2.0.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=748ce83dcf94ba9381a23eff36c62312 diff --git a/metadata/md5-cache/dev-ruby/tzinfo-2.0.3 b/metadata/md5-cache/dev-ruby/tzinfo-2.0.3 index c8a3d1c91631..bdf2af00fcb1 100644 --- a/metadata/md5-cache/dev-ruby/tzinfo-2.0.3 +++ b/metadata/md5-cache/dev-ruby/tzinfo-2.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/tzinfo/tzinfo/archive/v2.0.3.tar.gz -> tzinfo-2.0.3.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=702a16f89d4fec8683562b099accaab6 diff --git a/metadata/md5-cache/dev-ruby/uconv-0.6.1-r2 b/metadata/md5-cache/dev-ruby/uconv-0.6.1-r2 index c8e4033e7b6e..a592c59436cd 100644 --- a/metadata/md5-cache/dev-ruby/uconv-0.6.1-r2 +++ b/metadata/md5-cache/dev-ruby/uconv-0.6.1-r2 @@ -10,5 +10,5 @@ RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-la REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) SLOT=0 SRC_URI=http://www.yoshidam.net/uconv-0.6.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6e211bb950833ec6e336a2ce43b50139 diff --git a/metadata/md5-cache/dev-ruby/uglifier-4.2.0 b/metadata/md5-cache/dev-ruby/uglifier-4.2.0 index dd3d07193a5b..f89fb2bdaf9a 100644 --- a/metadata/md5-cache/dev-ruby/uglifier-4.2.0 +++ b/metadata/md5-cache/dev-ruby/uglifier-4.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bc0d081ffa6674b5d8fe11852a0bf8d8 diff --git a/metadata/md5-cache/dev-ruby/ultraviolet-1.0.1 b/metadata/md5-cache/dev-ruby/ultraviolet-1.0.1 index 3da0485f871e..00e155c974c0 100644 --- a/metadata/md5-cache/dev-ruby/ultraviolet-1.0.1 +++ b/metadata/md5-cache/dev-ruby/ultraviolet-1.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/ultraviolet-1.0.1.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=8d39a8730a24d8bdae062601ca3e3d71 diff --git a/metadata/md5-cache/dev-ruby/unf-0.1.4 b/metadata/md5-cache/dev-ruby/unf-0.1.4 index ebdb87385e1a..fccfc6e0f2a2 100644 --- a/metadata/md5-cache/dev-ruby/unf-0.1.4 +++ b/metadata/md5-cache/dev-ruby/unf-0.1.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unf-0.1.4.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d1d2a722bd72be1f7c6d10f32f812134 diff --git a/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.5 b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.5 index 746c76389f2a..60318525a82b 100644 --- a/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.5 +++ b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unf_ext-0.0.7.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9dbaba8ecebfdda4e07820339cc927ca diff --git a/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.6 b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.6 index 5d207cf1cd3c..27e87498c557 100644 --- a/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.6 +++ b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unf_ext-0.0.7.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3780b05b71f60e5277a399acce20df65 diff --git a/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.7 b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.7 index 5a52d4003e4f..34651fd32c8c 100644 --- a/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.7 +++ b/metadata/md5-cache/dev-ruby/unf_ext-0.0.7.7 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unf_ext-0.0.7.7.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=52cc0f69f16c37c5ebc32533017a9baf 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 86815ce5ed1e..2e723d120b96 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=27c62c6e71f8fd8d1b594e7f66d69519 diff --git a/metadata/md5-cache/dev-ruby/unindent-1.0 b/metadata/md5-cache/dev-ruby/unindent-1.0 index 978bc205269f..576bac0ef6a8 100644 --- a/metadata/md5-cache/dev-ruby/unindent-1.0 +++ b/metadata/md5-cache/dev-ruby/unindent-1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/unindent-1.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=f10bace7eddbd1116dee076586643fb1 diff --git a/metadata/md5-cache/dev-ruby/uuidtools-2.1.5-r1 b/metadata/md5-cache/dev-ruby/uuidtools-2.1.5-r1 index 0cc219ac83ab..5c61e6db527d 100644 --- a/metadata/md5-cache/dev-ruby/uuidtools-2.1.5-r1 +++ b/metadata/md5-cache/dev-ruby/uuidtools-2.1.5-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/uuidtools-2.1.5.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=d5f3dc9d774d3d340d18753b3f493e2a diff --git a/metadata/md5-cache/dev-ruby/uuidtools-2.2.0 b/metadata/md5-cache/dev-ruby/uuidtools-2.2.0 index 02de92d110a4..cb43e3c82c3a 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/uuidtools-2.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fe70723ffba1c49d818e069723fdab0e 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 5f581d70ac35..a99b08a13cc5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=24c85ccd9422c1337ae317921eb27fb2 diff --git a/metadata/md5-cache/dev-ruby/vcard-0.2.16 b/metadata/md5-cache/dev-ruby/vcard-0.2.16 index bd087d0c0268..d3f4175dc83a 100644 --- a/metadata/md5-cache/dev-ruby/vcard-0.2.16 +++ b/metadata/md5-cache/dev-ruby/vcard-0.2.16 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/vcard-0.2.16.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=6364a17329983da1392dda44c9f5f4b3 diff --git a/metadata/md5-cache/dev-ruby/vcard-0.3.0 b/metadata/md5-cache/dev-ruby/vcard-0.3.0 new file mode 100644 index 000000000000..510d924f4359 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/vcard-0.3.0 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DESCRIPTION=Ruby vcard support extracted from Vpim +EAPI=6 +HOMEPAGE=https://github.com/qoobaa/vcard +IUSE=ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 test +KEYWORDS=~amd64 +LICENSE=GPL-3 +RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://rubygems.org/gems/vcard-0.3.0.gem +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=a034657c02551445be09e4599cf7881b diff --git a/metadata/md5-cache/dev-ruby/vcr-4.0.0 b/metadata/md5-cache/dev-ruby/vcr-4.0.0 index ab04bb9cabbf..e65de99d048e 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 b283414d9ad8..dc3361681173 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _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 217b78180e7e..d83f910dac79 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c3b7edd497a52a1f44011f4913fd1d5f diff --git a/metadata/md5-cache/dev-ruby/virtus-1.0.5 b/metadata/md5-cache/dev-ruby/virtus-1.0.5 index f9e26dabafe3..5b1367762754 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/virtus-1.0.5.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=579e5fd77e3f6aeb636679954633b8a6 diff --git a/metadata/md5-cache/dev-ruby/vlad-2.7.0 b/metadata/md5-cache/dev-ruby/vlad-2.7.0 index 9eea0bea0b7c..442eb38c5752 100644 --- a/metadata/md5-cache/dev-ruby/vlad-2.7.0 +++ b/metadata/md5-cache/dev-ruby/vlad-2.7.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/vlad-2.7.0.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=4fd37b8ceb6bc2164e3b9bee398f93f3 diff --git a/metadata/md5-cache/dev-ruby/warden-1.2.9 b/metadata/md5-cache/dev-ruby/warden-1.2.9 index b12a87fcd304..8df06848746f 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=adc112a27d299b7fc7db9ac8f7c7bfb4 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 31bd2589ddd4..43697598a05f 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ed558ba797cbccafc3e792eb3ac6feae diff --git a/metadata/md5-cache/dev-ruby/web-console-4.0.1 b/metadata/md5-cache/dev-ruby/web-console-4.0.1 index 6e4ae6ce8828..19c87a296711 100644 --- a/metadata/md5-cache/dev-ruby/web-console-4.0.1 +++ b/metadata/md5-cache/dev-ruby/web-console-4.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rails/web-console/archive/v4.0.1.tar.gz -> web-console-4.0.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e0d7a20ad128555b3c36d4cabcd9a5e6 diff --git a/metadata/md5-cache/dev-ruby/web-console-4.0.4 b/metadata/md5-cache/dev-ruby/web-console-4.0.4 index fab2012b307f..ea3466170e6a 100644 --- a/metadata/md5-cache/dev-ruby/web-console-4.0.4 +++ b/metadata/md5-cache/dev-ruby/web-console-4.0.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=4 SRC_URI=https://github.com/rails/web-console/archive/v4.0.4.tar.gz -> web-console-4.0.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=97debbb2e46b22727e889e486c00c364 diff --git a/metadata/md5-cache/dev-ruby/webmock-3.7.6 b/metadata/md5-cache/dev-ruby/webmock-3.7.6 index 2e15709d7812..04c025fa7e51 100644 --- a/metadata/md5-cache/dev-ruby/webmock-3.7.6 +++ b/metadata/md5-cache/dev-ruby/webmock-3.7.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/webmock-3.7.6.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8815f7f32d120faf9c75abc0f585a2fd diff --git a/metadata/md5-cache/dev-ruby/webmock-3.8.1 b/metadata/md5-cache/dev-ruby/webmock-3.8.1 index 34df5f77d0ba..10330fc30290 100644 --- a/metadata/md5-cache/dev-ruby/webmock-3.8.1 +++ b/metadata/md5-cache/dev-ruby/webmock-3.8.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/webmock-3.8.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=19f3af18707bb3244669c7d64bf24e9d diff --git a/metadata/md5-cache/dev-ruby/webmock-3.8.2 b/metadata/md5-cache/dev-ruby/webmock-3.8.2 index 51ff6b90d525..1d4e628e2aab 100644 --- a/metadata/md5-cache/dev-ruby/webmock-3.8.2 +++ b/metadata/md5-cache/dev-ruby/webmock-3.8.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/webmock-3.8.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=19f3af18707bb3244669c7d64bf24e9d diff --git a/metadata/md5-cache/dev-ruby/webmock-3.8.3 b/metadata/md5-cache/dev-ruby/webmock-3.8.3 index ca4077643262..1411d8d34ee8 100644 --- a/metadata/md5-cache/dev-ruby/webmock-3.8.3 +++ b/metadata/md5-cache/dev-ruby/webmock-3.8.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/webmock-3.8.3.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=002da10093b7bd4657fdfa4b8aa817e8 diff --git a/metadata/md5-cache/dev-ruby/webrobots-0.1.2-r1 b/metadata/md5-cache/dev-ruby/webrobots-0.1.2-r1 index 57d0b8dd0ea3..dd1d46deb810 100644 --- a/metadata/md5-cache/dev-ruby/webrobots-0.1.2-r1 +++ b/metadata/md5-cache/dev-ruby/webrobots-0.1.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/webrobots-0.1.2.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=93edc20d158e362c05cf1ef9784602fa diff --git a/metadata/md5-cache/dev-ruby/websocket-1.2.8 b/metadata/md5-cache/dev-ruby/websocket-1.2.8 index 86e62895deb5..8041b1c9e759 100644 --- a/metadata/md5-cache/dev-ruby/websocket-1.2.8 +++ b/metadata/md5-cache/dev-ruby/websocket-1.2.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/websocket-1.2.8.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=da4a511359b4a5ed302da3595a0a8451 diff --git a/metadata/md5-cache/dev-ruby/websocket-driver-0.6.5 b/metadata/md5-cache/dev-ruby/websocket-driver-0.6.5 index 6c1e6373bed9..2ae551babdc6 100644 --- a/metadata/md5-cache/dev-ruby/websocket-driver-0.6.5 +++ b/metadata/md5-cache/dev-ruby/websocket-driver-0.6.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=976bd45c3d91138b7fe07fc1ba90d443 diff --git a/metadata/md5-cache/dev-ruby/websocket-driver-0.7.2 b/metadata/md5-cache/dev-ruby/websocket-driver-0.7.2 index 57b49547b13b..1287b8d7162a 100644 --- a/metadata/md5-cache/dev-ruby/websocket-driver-0.7.2 +++ b/metadata/md5-cache/dev-ruby/websocket-driver-0.7.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.7 SRC_URI=https://github.com/faye/websocket-driver-ruby/archive/0.7.2.tar.gz -> websocket-driver-0.7.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=337d8c728018511b401a7aed7e141b32 diff --git a/metadata/md5-cache/dev-ruby/websocket-driver-0.7.3 b/metadata/md5-cache/dev-ruby/websocket-driver-0.7.3 index 2a7038f36395..fcee43b77c17 100644 --- a/metadata/md5-cache/dev-ruby/websocket-driver-0.7.3 +++ b/metadata/md5-cache/dev-ruby/websocket-driver-0.7.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0.7 SRC_URI=https://github.com/faye/websocket-driver-ruby/archive/0.7.3.tar.gz -> websocket-driver-0.7.3.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=be8adc4207302d4dd39f3e0e75decdd3 diff --git a/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.4 b/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.4 index be2fa8660db6..9a9e849011b2 100644 --- a/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.4 +++ b/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/faye/websocket-extensions-ruby/archive/0.1.4.tar.gz -> websocket-extensions-0.1.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=56785cd5c57ba1b57c028d8439ff9b0c diff --git a/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.5 b/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.5 index 1f73ff307535..1146eced80d0 100644 --- a/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.5 +++ b/metadata/md5-cache/dev-ruby/websocket-extensions-0.1.5 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) 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.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=eddda92eb51eb6f5896fcebb808359d5 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 f7d2fa8be1b4..5b77469fcf1f 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/whole_history_rating-0.1.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=7a32304a19065fa2059b5a9a35ca7739 diff --git a/metadata/md5-cache/dev-ruby/will_paginate-3.3.0 b/metadata/md5-cache/dev-ruby/will_paginate-3.3.0 index 46d70e2f7cb5..1524656f2122 100644 --- a/metadata/md5-cache/dev-ruby/will_paginate-3.3.0 +++ b/metadata/md5-cache/dev-ruby/will_paginate-3.3.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/will_paginate-3.3.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1f100d0d04e6ff6aef18f0e5a63525c1 diff --git a/metadata/md5-cache/dev-ruby/windows_error-0.1.2 b/metadata/md5-cache/dev-ruby/windows_error-0.1.2 index ef4c023e6e20..5cd9badd6026 100644 --- a/metadata/md5-cache/dev-ruby/windows_error-0.1.2 +++ b/metadata/md5-cache/dev-ruby/windows_error-0.1.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0.1 SRC_URI=https://rubygems.org/gems/windows_error-0.1.2.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d _md5_=54afd1fddf94385f22c94c259ec8f7a9 diff --git a/metadata/md5-cache/dev-ruby/wirble-0.1.3-r4 b/metadata/md5-cache/dev-ruby/wirble-0.1.3-r4 index 1a0c7e12a1f6..e20825abdba9 100644 --- a/metadata/md5-cache/dev-ruby/wirble-0.1.3-r4 +++ b/metadata/md5-cache/dev-ruby/wirble-0.1.3-r4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/wirble-0.1.3.gem -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ee952fd297ca74cd70ba1a83715b605e diff --git a/metadata/md5-cache/dev-ruby/wisper-2.0.1 b/metadata/md5-cache/dev-ruby/wisper-2.0.1 index 14ac95d3b794..95c212f92fe4 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/wisper-2.0.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d9611c7b72d08c1b2ebacc599ad405ee diff --git a/metadata/md5-cache/dev-ruby/x25519-1.0.8 b/metadata/md5-cache/dev-ruby/x25519-1.0.8 index 7cc63649070e..c3245c7f53a7 100644 --- a/metadata/md5-cache/dev-ruby/x25519-1.0.8 +++ b/metadata/md5-cache/dev-ruby/x25519-1.0.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=1 SRC_URI=https://github.com/crypto-rb/x25519/archive/v1.0.8.tar.gz -> x25519-1.0.8.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f489bffa31d38648bce42c824697498b diff --git a/metadata/md5-cache/dev-ruby/xdr-3.0.1 b/metadata/md5-cache/dev-ruby/xdr-3.0.1 index 35fd82c82d9e..56554db327cc 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4e2501bdbd886988207bbc9a9e57d5f2 diff --git a/metadata/md5-cache/dev-ruby/xml-simple-1.1.5 b/metadata/md5-cache/dev-ruby/xml-simple-1.1.5 index 6a02a12aeff4..5870765084b6 100644 --- a/metadata/md5-cache/dev-ruby/xml-simple-1.1.5 +++ b/metadata/md5-cache/dev-ruby/xml-simple-1.1.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/maik/xml-simple/archive/v1.1.5.tar.gz -> xml-simple-1.1.5.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=58a26806488a331a7c8c21faa701e5db diff --git a/metadata/md5-cache/dev-ruby/xmlrpc-0.3.0 b/metadata/md5-cache/dev-ruby/xmlrpc-0.3.0 index b729d4095d3b..fc81eaaff53f 100644 --- a/metadata/md5-cache/dev-ruby/xmlrpc-0.3.0 +++ b/metadata/md5-cache/dev-ruby/xmlrpc-0.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/ruby/xmlrpc/archive/v0.3.0.tar.gz -> xmlrpc-0.3.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=97115f84b817c1acc2033fbbbb71f9c2 diff --git a/metadata/md5-cache/dev-ruby/xpath-3.2.0 b/metadata/md5-cache/dev-ruby/xpath-3.2.0 index 122e7a2b7f88..9765d5df07d3 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_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/xpath-3.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ec65c31a81e587cd39ca3dc10fcf04ec diff --git a/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.1 b/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.1 index 82ec3937e635..8c1fb9fb1f4b 100644 --- a/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.1 +++ b/metadata/md5-cache/dev-ruby/yajl-ruby-1.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/yajl-ruby-1.4.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9e64f0433c39801a5a65f18c7b2cf232 diff --git a/metadata/md5-cache/dev-ruby/yard-0.9.20 b/metadata/md5-cache/dev-ruby/yard-0.9.20 index 0cfe843f11b4..5ec0b8ae5064 100644 --- a/metadata/md5-cache/dev-ruby/yard-0.9.20 +++ b/metadata/md5-cache/dev-ruby/yard-0.9.20 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/lsegal/yard/archive/v0.9.20.tar.gz -> yard-0.9.20-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c29711486d462f732a634cff121f00b0 diff --git a/metadata/md5-cache/dev-ruby/yard-0.9.25 b/metadata/md5-cache/dev-ruby/yard-0.9.25 index 28fa82f7c088..09d8a3d7e1a6 100644 --- a/metadata/md5-cache/dev-ruby/yard-0.9.25 +++ b/metadata/md5-cache/dev-ruby/yard-0.9.25 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/lsegal/yard/archive/v0.9.25.tar.gz -> yard-0.9.25-git.tgz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d457e2228a074d3ea03e0ff9080ccc63 diff --git a/metadata/md5-cache/dev-ruby/zeitwerk-2.3.1 b/metadata/md5-cache/dev-ruby/zeitwerk-2.3.1 index 6dec68125fef..fb24bc3c9ec9 100644 --- a/metadata/md5-cache/dev-ruby/zeitwerk-2.3.1 +++ b/metadata/md5-cache/dev-ruby/zeitwerk-2.3.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/fxn/zeitwerk/archive/v2.3.1.tar.gz -> zeitwerk-2.3.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9597854c2018b209449ec5bf6b21b294 diff --git a/metadata/md5-cache/dev-ruby/zeitwerk-2.4.0 b/metadata/md5-cache/dev-ruby/zeitwerk-2.4.0 index 5b3d3572a0ef..2469ec3f91b6 100644 --- a/metadata/md5-cache/dev-ruby/zeitwerk-2.4.0 +++ b/metadata/md5-cache/dev-ruby/zeitwerk-2.4.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/fxn/zeitwerk/archive/v2.4.0.tar.gz -> zeitwerk-2.4.0.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9597854c2018b209449ec5bf6b21b294 diff --git a/metadata/md5-cache/dev-ruby/zeitwerk-2.4.1 b/metadata/md5-cache/dev-ruby/zeitwerk-2.4.1 index 1278d327579e..33f6161b62ad 100644 --- a/metadata/md5-cache/dev-ruby/zeitwerk-2.4.1 +++ b/metadata/md5-cache/dev-ruby/zeitwerk-2.4.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=2 SRC_URI=https://github.com/fxn/zeitwerk/archive/v2.4.1.tar.gz -> zeitwerk-2.4.1.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=9597854c2018b209449ec5bf6b21b294 diff --git a/metadata/md5-cache/dev-ruby/zentest-4.12.0 b/metadata/md5-cache/dev-ruby/zentest-4.12.0 index 94ec7b75a041..29e6314e1f72 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=bd5c686a09a78f4b94d52e2bf1b6fd68 diff --git a/metadata/md5-cache/dev-tcltk/Manifest.gz b/metadata/md5-cache/dev-tcltk/Manifest.gz index 75b935be3a42..d90968e6ba06 100644 Binary files a/metadata/md5-cache/dev-tcltk/Manifest.gz and b/metadata/md5-cache/dev-tcltk/Manifest.gz differ diff --git a/metadata/md5-cache/dev-tcltk/tls-1.7.22 b/metadata/md5-cache/dev-tcltk/tls-1.7.22 new file mode 100644 index 000000000000..94e746b1267b --- /dev/null +++ b/metadata/md5-cache/dev-tcltk/tls-1.7.22 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install +DEPEND=dev-lang/tcl:0= dev-libs/openssl:0= tk? ( dev-lang/tk:0= ) +DESCRIPTION=TLS OpenSSL extension to Tcl +EAPI=6 +HOMEPAGE=http://tls.sourceforge.net/ +IUSE=tk +KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=BSD +RDEPEND=dev-lang/tcl:0= dev-libs/openssl:0= tk? ( dev-lang/tk:0= ) +RESTRICT=test +SLOT=0 +SRC_URI=https://core.tcl.tk/tcltls/uv/tcltls-1.7.22.tar.gz +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=3786e657bc5bc4cf7ab0830c1a03f11d diff --git a/metadata/md5-cache/dev-util/Manifest.gz b/metadata/md5-cache/dev-util/Manifest.gz index fc78e1d0e990..c2455b182d24 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/abi-dumper-1.2 b/metadata/md5-cache/dev-util/abi-dumper-1.2 new file mode 100644 index 000000000000..3d95cf34a251 --- /dev/null +++ b/metadata/md5-cache/dev-util/abi-dumper-1.2 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install +DEPEND=dev-lang/perl +DESCRIPTION=Dump ABI of an ELF object containing DWARF debug info +EAPI=6 +HOMEPAGE=https://github.com/lvc/abi-dumper +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-lang/perl dev-libs/elfutils dev-util/vtable-dumper +SLOT=0 +SRC_URI=https://github.com/lvc/abi-dumper/archive/1.2.tar.gz -> abi-dumper-1.2.tar.gz +_md5_=3fc39bbfea49a5e6c980cb5292b872a0 diff --git a/metadata/md5-cache/dev-util/aruba-0.14.14 b/metadata/md5-cache/dev-util/aruba-0.14.14 index 2018bc8b69f0..f30ce10a3d25 100644 --- a/metadata/md5-cache/dev-util/aruba-0.14.14 +++ b/metadata/md5-cache/dev-util/aruba-0.14.14 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/aruba-0.14.14.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=05affe18ebb4e3a20efb0803fed03627 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 908d6197fafd..7a609fd3fc59 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2c961241a41c9f4cfceb1c9d1c37df48 diff --git a/metadata/md5-cache/dev-util/aruba-1.0.2 b/metadata/md5-cache/dev-util/aruba-1.0.2 index f3db7790d89e..0de9a9629b7c 100644 --- a/metadata/md5-cache/dev-util/aruba-1.0.2 +++ b/metadata/md5-cache/dev-util/aruba-1.0.2 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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.2.tar.gz -> aruba-1.0.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a79538a220dee4031a2e61a6d7233932 diff --git a/metadata/md5-cache/dev-util/aruba-1.0.3 b/metadata/md5-cache/dev-util/aruba-1.0.3 index f7ef9a9d9a5c..6cb79035ecc9 100644 --- a/metadata/md5-cache/dev-util/aruba-1.0.3 +++ b/metadata/md5-cache/dev-util/aruba-1.0.3 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ade7cb512b45765f520b7d93da452c7f 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 9e442c400053..b715fd370568 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=2a126f2a8e8292c9bc0ab538ede616d0 diff --git a/metadata/md5-cache/dev-util/ccache-4.1 b/metadata/md5-cache/dev-util/ccache-4.1 new file mode 100644 index 000000000000..a1791c6b890e --- /dev/null +++ b/metadata/md5-cache/dev-util/ccache-4.1 @@ -0,0 +1,15 @@ +BDEPEND=app-text/asciidoc dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install postinst prepare prerm test +DEPEND=test? ( dev-libs/elfutils ) +DESCRIPTION=fast compiler cache +EAPI=7 +HOMEPAGE=https://ccache.dev/ +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-3 LGPL-3 +RDEPEND=dev-util/shadowman sys-apps/gentoo-functions +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/ccache/ccache/releases/download/v4.1/ccache-4.1.tar.xz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=6352cdc0fcf510f54c9da684fddb4024 diff --git a/metadata/md5-cache/dev-util/clazy-1.7-r1 b/metadata/md5-cache/dev-util/clazy-1.7-r1 index 113a76926f6c..86948449566d 100644 --- a/metadata/md5-cache/dev-util/clazy-1.7-r1 +++ b/metadata/md5-cache/dev-util/clazy-1.7-r1 @@ -4,10 +4,10 @@ DEPEND=>=sys-devel/clang-5.0:= >=sys-devel/llvm-5.0:= DESCRIPTION=Compiler plugin which allows clang to understand Qt semantics EAPI=7 HOMEPAGE=https://apps.kde.org/en/clazy -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 ~x86 LICENSE=LGPL-2+ RDEPEND=>=sys-devel/clang-5.0:= >=sys-devel/llvm-5.0:= SLOT=0 SRC_URI=mirror://kde/stable/clazy/1.7/src/clazy-1.7.tar.xz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5d8c0dc8e2e7a0ff6ad1b0d80851b674 +_md5_=aebb3604e3e9e5b60b7fd4e82c462e7e diff --git a/metadata/md5-cache/dev-util/clinfo-3.0.20.11.20 b/metadata/md5-cache/dev-util/clinfo-3.0.20.11.20 new file mode 100644 index 000000000000..998de2238bd0 --- /dev/null +++ b/metadata/md5-cache/dev-util/clinfo-3.0.20.11.20 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install +DEPEND=>=virtual/opencl-3 +DESCRIPTION=A tool to display info about the system's OpenCL capabilities +EAPI=6 +HOMEPAGE=https://github.com/Oblomov/clinfo +KEYWORDS=~amd64 +LICENSE=CC0-1.0 +RDEPEND=>=virtual/opencl-3 +SLOT=0 +SRC_URI=https://github.com/Oblomov/clinfo/archive/3.0.20.11.20.tar.gz -> clinfo-3.0.20.11.20.tar.gz +_md5_=f9647840c25b86a19bb4e231b0c915a8 diff --git a/metadata/md5-cache/dev-util/cucumber-3.1.2 b/metadata/md5-cache/dev-util/cucumber-3.1.2 index ba958ff83649..b152843b2001 100644 --- a/metadata/md5-cache/dev-util/cucumber-3.1.2 +++ b/metadata/md5-cache/dev-util/cucumber-3.1.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/cucumber/cucumber-ruby/archive/v3.1.2.tar.gz -> cucumber-3.1.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c5c86a2b35da38f2e11ae29ba4317ead diff --git a/metadata/md5-cache/dev-util/cucumber-3.2.0 b/metadata/md5-cache/dev-util/cucumber-3.2.0 index fda767e95deb..ad52a7c0cb99 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=f5fa2e3af415610bcf8efeac70d1b8c1 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 71d1981d9eac..30c894896165 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_ruby25 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 f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4381ae2ac6865585b08a4b67fb87d467 diff --git a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.2.0 b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.2.0 index 5bb5dda34a40..c26c744b19f4 100644 --- a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.2.0 +++ b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=10 SRC_URI=https://rubygems.org/gems/cucumber-cucumber-expressions-10.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=3dc382400b0c5124c925e97734ab4336 diff --git a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.2.1 b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.2.1 index 6820faedc8be..eb4b986a761f 100644 --- a/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.2.1 +++ b/metadata/md5-cache/dev-util/cucumber-cucumber-expressions-10.2.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=10 SRC_URI=https://rubygems.org/gems/cucumber-cucumber-expressions-10.2.1.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1eee106df6d300c6474fa877888623cb 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 a19e1f2667a3..9681e06f9b2c 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1eee106df6d300c6474fa877888623cb 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 61c16b0d6932..45a1ec1edebc 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=347eccb8869777109edba8529101946a diff --git a/metadata/md5-cache/dev-util/cucumber-messages-13.1.0 b/metadata/md5-cache/dev-util/cucumber-messages-13.1.0 index 28dd3cfc5b32..c5627fb007ba 100644 --- a/metadata/md5-cache/dev-util/cucumber-messages-13.1.0 +++ b/metadata/md5-cache/dev-util/cucumber-messages-13.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=13 SRC_URI=https://rubygems.org/gems/cucumber-messages-13.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=167ff8887cfee1aed80359757d8b00ae diff --git a/metadata/md5-cache/dev-util/cucumber-messages-13.2.0 b/metadata/md5-cache/dev-util/cucumber-messages-13.2.0 index 55d0babe30dc..fb8e4765cdb0 100644 --- a/metadata/md5-cache/dev-util/cucumber-messages-13.2.0 +++ b/metadata/md5-cache/dev-util/cucumber-messages-13.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=13 SRC_URI=https://rubygems.org/gems/cucumber-messages-13.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=da2288094b511d0ebd73d072060fa99f diff --git a/metadata/md5-cache/dev-util/cucumber-rails-1.8.0 b/metadata/md5-cache/dev-util/cucumber-rails-1.8.0 index 13fde20bbd5a..afbfe6a0fb84 100644 --- a/metadata/md5-cache/dev-util/cucumber-rails-1.8.0 +++ b/metadata/md5-cache/dev-util/cucumber-rails-1.8.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=1 SRC_URI=https://rubygems.org/gems/cucumber-rails-1.8.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e84ccb5bfa3f8a05051cb903f383adf1 diff --git a/metadata/md5-cache/dev-util/cucumber-rails-2.0.0-r1 b/metadata/md5-cache/dev-util/cucumber-rails-2.0.0-r1 index 41dfd4f9825e..e7639732004a 100644 --- a/metadata/md5-cache/dev-util/cucumber-rails-2.0.0-r1 +++ b/metadata/md5-cache/dev-util/cucumber-rails-2.0.0-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/cucumber-rails-2.0.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=584190992a728685355cd21690afd05d diff --git a/metadata/md5-cache/dev-util/cucumber-rails-2.1.0 b/metadata/md5-cache/dev-util/cucumber-rails-2.1.0 index 148e53136a7c..e70b0f13903b 100644 --- a/metadata/md5-cache/dev-util/cucumber-rails-2.1.0 +++ b/metadata/md5-cache/dev-util/cucumber-rails-2.1.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/cucumber-rails-2.1.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=22ddc2be9434fceab47614540f16d6b8 diff --git a/metadata/md5-cache/dev-util/cucumber-rails-2.2.0 b/metadata/md5-cache/dev-util/cucumber-rails-2.2.0 index 88bce117e8a4..92b0b26e7ec0 100644 --- a/metadata/md5-cache/dev-util/cucumber-rails-2.2.0 +++ b/metadata/md5-cache/dev-util/cucumber-rails-2.2.0 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=test !test? ( test ) SLOT=2 SRC_URI=https://rubygems.org/gems/cucumber-rails-2.2.0.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c6e2e0f2407a73b496d306d2b3044c67 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 cc36e8ae88ab..621fc77d2394 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=25367fdc7ae5452e6615e85f52831f2c 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 9090675f62b8..c3b1878d39d5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=48a0ab6027d82b8cb09e259faf5878f0 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 3d9e6305f5a5..22b051227ee6 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fb19f698ead7b626c81f08a0fcf24f49 diff --git a/metadata/md5-cache/dev-util/debugedit-4.15.1 b/metadata/md5-cache/dev-util/debugedit-4.15.1 deleted file mode 100644 index 02471c0125f0..000000000000 --- a/metadata/md5-cache/dev-util/debugedit-4.15.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-libs/zlib:= >=dev-libs/popt-1.7 >=dev-libs/elfutils-0.176-r1 dev-libs/nss virtual/pkgconfig -DESCRIPTION=Stand-alone debugedit from RPM -EAPI=7 -HOMEPAGE=https://rpm.org https://github.com/rpm-software-management/rpm -KEYWORDS=amd64 ~arm64 hppa ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux -LICENSE=GPL-2+ LGPL-2+ -RDEPEND=sys-libs/zlib:= >=dev-libs/popt-1.7 >=dev-libs/elfutils-0.176-r1 dev-libs/nss -SLOT=0 -SRC_URI=http://ftp.rpm.org/releases/rpm-4.15.x/rpm-4.15.1.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=61fdec8768e61290bebbbb78ca915be8 diff --git a/metadata/md5-cache/dev-util/debugedit-4.16.0 b/metadata/md5-cache/dev-util/debugedit-4.16.0 index 5f84797e4bf1..2df60617cbef 100644 --- a/metadata/md5-cache/dev-util/debugedit-4.16.0 +++ b/metadata/md5-cache/dev-util/debugedit-4.16.0 @@ -3,10 +3,10 @@ DEPEND=sys-libs/zlib:= >=dev-libs/popt-1.7 >=dev-libs/elfutils-0.176-r1 dev-libs DESCRIPTION=Stand-alone debugedit from RPM EAPI=7 HOMEPAGE=https://rpm.org https://github.com/rpm-software-management/rpm -KEYWORDS=amd64 ~arm64 ~hppa ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 hppa ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux LICENSE=GPL-2+ LGPL-2+ RDEPEND=sys-libs/zlib:= >=dev-libs/popt-1.7 >=dev-libs/elfutils-0.176-r1 dev-libs/nss SLOT=0 SRC_URI=http://ftp.rpm.org/releases/rpm-4.16.x/rpm-4.16.0.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bbbfaf90dc89ec4e7b461eeb60c265b9 +_md5_=61fdec8768e61290bebbbb78ca915be8 diff --git a/metadata/md5-cache/dev-util/include-what-you-use-11.0 b/metadata/md5-cache/dev-util/include-what-you-use-11.0 new file mode 100644 index 000000000000..bd5594c63c92 --- /dev/null +++ b/metadata/md5-cache/dev-util/include-what-you-use-11.0 @@ -0,0 +1,15 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=sys-devel/llvm:11 sys-devel/clang:11 python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) !!sys-devel/llvm:0 +DESCRIPTION=Find unused include directives in C/C++ programs +EAPI=7 +HOMEPAGE=https://include-what-you-use.org/ +IUSE=python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=sys-devel/llvm:11 sys-devel/clang:11 python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) +REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) +SLOT=0 +SRC_URI=https://github.com/include-what-you-use/include-what-you-use/archive/0.15.tar.gz -> include-what-you-use-11.0.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e llvm 21d8c0949a2693d7109cc6a25fabfcaf multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=e4fe670278ca619ad556bacf434ffe13 diff --git a/metadata/md5-cache/dev-util/protobuf-cucumber-3.10.8 b/metadata/md5-cache/dev-util/protobuf-cucumber-3.10.8 index 8e79646b8f33..17e62a3bcb9c 100644 --- a/metadata/md5-cache/dev-util/protobuf-cucumber-3.10.8 +++ b/metadata/md5-cache/dev-util/protobuf-cucumber-3.10.8 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://rubygems.org/gems/protobuf-cucumber-3.10.8.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=21c529beffb21c7693e6c826ce86ffb6 diff --git a/metadata/md5-cache/dev-vcs/Manifest.gz b/metadata/md5-cache/dev-vcs/Manifest.gz index 43c51c9b5808..60d88b2f4e7b 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-num-2.0.1 b/metadata/md5-cache/dev-vcs/git-num-2.0.1 index 9910627979b0..2eaf36c87574 100644 --- a/metadata/md5-cache/dev-vcs/git-num-2.0.1 +++ b/metadata/md5-cache/dev-vcs/git-num-2.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/schreifels/git-num/archive/v2.0.1.tar.gz -> git-num-2.0.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=ccec9011a85c73310013a96c1f5c3c74 diff --git a/metadata/md5-cache/dev-vcs/gitsh-0.11.2 b/metadata/md5-cache/dev-vcs/gitsh-0.11.2 index b82659d1fd71..569945f58114 100644 --- a/metadata/md5-cache/dev-vcs/gitsh-0.11.2 +++ b/metadata/md5-cache/dev-vcs/gitsh-0.11.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/thoughtbot/gitsh/archive/v0.11.2.tar.gz -> gitsh-0.11.2.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b458ef64b882b4d5581ea810e50aa943 diff --git a/metadata/md5-cache/dev-vcs/subversion-1.14.0-r1 b/metadata/md5-cache/dev-vcs/subversion-1.14.0-r1 index 1e3ab95450e6..ffdf45788a76 100644 --- a/metadata/md5-cache/dev-vcs/subversion-1.14.0-r1 +++ b/metadata/md5-cache/dev-vcs/subversion-1.14.0-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test -DEPEND=app-arch/bzip2 app-arch/lz4 >=dev-db/sqlite-3.7.12 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-libs/expat dev-libs/libutf8proc:= >=net-libs/serf-1.3.4 sys-apps/file sys-libs/zlib berkdb? ( >=sys-libs/db-4.0.14:= ) gnome-keyring? ( dev-libs/glib:2 app-crypt/libsecret sys-apps/dbus ) kwallet? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kwallet:5 sys-apps/dbus ) perl? ( dev-lang/perl:= ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) sasl? ( dev-libs/cyrus-sasl ) virtual/pkgconfig !!=virtual/jdk-1.8 ) kwallet? ( kde-frameworks/kdelibs4support:5 virtual/pkgconfig ) nls? ( sys-devel/gettext ) perl? ( dev-lang/swig ) ruby? ( dev-lang/swig ) test? ( || ( dev-lang/python:3.8 dev-lang/python:3.7 ) ) apache2? ( =www-servers/apache-2* ) >=app-portage/elt-patches-20170815 sys-devel/automake >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) +DEPEND=app-arch/bzip2 app-arch/lz4 >=dev-db/sqlite-3.7.12 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-libs/expat dev-libs/libutf8proc:= >=net-libs/serf-1.3.4 sys-apps/file sys-libs/zlib berkdb? ( >=sys-libs/db-4.0.14:= ) gnome-keyring? ( dev-libs/glib:2 app-crypt/libsecret sys-apps/dbus ) kwallet? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kwallet:5 sys-apps/dbus ) perl? ( dev-lang/perl:= ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) sasl? ( dev-libs/cyrus-sasl ) virtual/pkgconfig !!=virtual/jdk-1.8 ) kwallet? ( kde-frameworks/kdelibs4support:5 virtual/pkgconfig ) nls? ( sys-devel/gettext ) perl? ( dev-lang/swig ) ruby? ( dev-lang/swig ) test? ( || ( dev-lang/python:3.8 dev-lang/python:3.7 ) ) apache2? ( =www-servers/apache-2* ) >=app-portage/elt-patches-20170815 sys-devel/automake >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) DESCRIPTION=Advanced version control system EAPI=6 HOMEPAGE=https://subversion.apache.org/ IUSE=apache2 berkdb debug doc extras gnome-keyring java kwallet nls perl ruby sasl test apache2 elibc_FreeBSD java KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 BSD MIT BSD-2 FSFAP unicode -RDEPEND=app-arch/bzip2 app-arch/lz4 >=dev-db/sqlite-3.7.12 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-libs/expat dev-libs/libutf8proc:= >=net-libs/serf-1.3.4 sys-apps/file sys-libs/zlib berkdb? ( >=sys-libs/db-4.0.14:= ) gnome-keyring? ( dev-libs/glib:2 app-crypt/libsecret sys-apps/dbus ) kwallet? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kwallet:5 sys-apps/dbus ) perl? ( dev-lang/perl:= ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) sasl? ( dev-libs/cyrus-sasl ) apache2? ( acct-group/apache acct-user/apache www-servers/apache[apache2_modules_dav] ) !apache2? ( acct-group/svnusers acct-user/svn ) java? ( >=virtual/jre-1.8 ) nls? ( virtual/libintl ) perl? ( dev-perl/URI ) apache2? ( =www-servers/apache-2* ) java? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=app-arch/bzip2 app-arch/lz4 >=dev-db/sqlite-3.7.12 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-libs/expat dev-libs/libutf8proc:= >=net-libs/serf-1.3.4 sys-apps/file sys-libs/zlib berkdb? ( >=sys-libs/db-4.0.14:= ) gnome-keyring? ( dev-libs/glib:2 app-crypt/libsecret sys-apps/dbus ) kwallet? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 kde-frameworks/kcoreaddons:5 kde-frameworks/ki18n:5 kde-frameworks/kwallet:5 sys-apps/dbus ) perl? ( dev-lang/perl:= ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) sasl? ( dev-libs/cyrus-sasl ) apache2? ( acct-group/apache acct-user/apache www-servers/apache[apache2_modules_dav] ) !apache2? ( acct-group/svnusers acct-user/svn ) java? ( >=virtual/jre-1.8 ) nls? ( virtual/libintl ) perl? ( dev-perl/URI ) apache2? ( =www-servers/apache-2* ) java? ( >=dev-java/java-config-2.2.0-r3 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://apache/subversion/subversion-1.14.0.tar.bz2 https://dev.gentoo.org/~polynomial-c/subversion-1.10.0_rc1-patches-1.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef db-use 501a5d0963e0d17f30260023f292ae8e depend.apache 94458fe4e9466f4803360408e60e11fd desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef db-use 501a5d0963e0d17f30260023f292ae8e depend.apache 94458fe4e9466f4803360408e60e11fd desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b perl-module 97206c028d9bdc9f248e022ac5c9fc83 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=4c9edb428780ac1e9b84b9bb8acd2c62 diff --git a/metadata/md5-cache/games-action/0verkill-0.16-r4 b/metadata/md5-cache/games-action/0verkill-0.16-r4 index a8ddcf450c40..51466f3e0ae8 100644 --- a/metadata/md5-cache/games-action/0verkill-0.16-r4 +++ b/metadata/md5-cache/games-action/0verkill-0.16-r4 @@ -1,7 +1,8 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install prepare -DEPEND=X? ( x11-libs/libXpm ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=X? ( x11-libs/libXpm ) DESCRIPTION=A bloody 2D action deathmatch-like game in ASCII-ART -EAPI=6 +EAPI=7 HOMEPAGE=http://freshmeat.sourceforge.net/projects/0verkill IUSE=X KEYWORDS=~amd64 ~x86 @@ -10,4 +11,4 @@ RDEPEND=X? ( x11-libs/libXpm ) SLOT=0 SRC_URI=http://artax.karlin.mff.cuni.cz/~brain/0verkill/release/0verkill-0.16.tgz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3961ac1b4e9532f1f8c6336166cf01c8 +_md5_=d7455b6ed385605e41c69f4016b5a6b9 diff --git a/metadata/md5-cache/games-action/Manifest.gz b/metadata/md5-cache/games-action/Manifest.gz index d0f550415dc7..2deec447cfdd 100644 Binary files a/metadata/md5-cache/games-action/Manifest.gz and b/metadata/md5-cache/games-action/Manifest.gz differ diff --git a/metadata/md5-cache/games-action/luola-1.3.2-r1 b/metadata/md5-cache/games-action/luola-1.3.2-r1 index 7853aced3127..8a848a77013f 100644 --- a/metadata/md5-cache/games-action/luola-1.3.2-r1 +++ b/metadata/md5-cache/games-action/luola-1.3.2-r1 @@ -1,12 +1,13 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install postinst postrm preinst prepare -DEPEND=media-libs/libsdl[X,sound,joystick,video] media-libs/sdl-gfx media-libs/sdl-image[jpeg,png] media-libs/sdl-mixer media-libs/sdl-ttf >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=media-libs/libsdl[X,sound,joystick,video] media-libs/sdl-gfx media-libs/sdl-image[jpeg,png] media-libs/sdl-mixer media-libs/sdl-ttf dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=A 2D multiplayer arcade game resembling V-Wing -EAPI=6 +EAPI=7 HOMEPAGE=http://freshmeat.sourceforge.net/projects/luola KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=media-libs/libsdl[X,sound,joystick,video] media-libs/sdl-gfx media-libs/sdl-image[jpeg,png] media-libs/sdl-mixer media-libs/sdl-ttf SLOT=0 SRC_URI=mirror://gentoo/luola-1.3.2.tar.gz mirror://gentoo/stdlevels-6.0.tar.gz mirror://gentoo/nostalgia-1.2.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4d79112a39746721b4303e8e3af832a3 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=e1f3feed9c03b70bd05b9b1cd1f56d04 diff --git a/metadata/md5-cache/games-arcade/Manifest.gz b/metadata/md5-cache/games-arcade/Manifest.gz index 445c91cee6d2..f2838231aa24 100644 Binary files a/metadata/md5-cache/games-arcade/Manifest.gz and b/metadata/md5-cache/games-arcade/Manifest.gz differ diff --git a/metadata/md5-cache/games-arcade/primateplunge-1.1-r2 b/metadata/md5-cache/games-arcade/primateplunge-1.1-r2 index 82efa54bb940..4e33fc590650 100644 --- a/metadata/md5-cache/games-arcade/primateplunge-1.1-r2 +++ b/metadata/md5-cache/games-arcade/primateplunge-1.1-r2 @@ -1,7 +1,8 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=install prepare -DEPEND=media-libs/libsdl[sound,video] media-libs/sdl-mixer >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=media-libs/libsdl[sound,video] media-libs/sdl-mixer DESCRIPTION=Help poor Monkey navigate his way down through treacherous areas -EAPI=6 +EAPI=7 HOMEPAGE=https://www.aelius.com/primateplunge/ KEYWORDS=~amd64 ~x86 LICENSE=Primate-Plunge @@ -10,4 +11,4 @@ RESTRICT=mirror bindist SLOT=0 SRC_URI=https://www.aelius.com/primateplunge/primateplunge-1.1.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=040a6c3b2de5ffed2cfa1dc53efd7a90 +_md5_=5e5cd2bfeccf062696c73b3fc8cc0757 diff --git a/metadata/md5-cache/games-arcade/sdlroids-1.3.4-r4 b/metadata/md5-cache/games-arcade/sdlroids-1.3.4-r4 index a2db47d8edce..c7ed1fca8e23 100644 --- a/metadata/md5-cache/games-arcade/sdlroids-1.3.4-r4 +++ b/metadata/md5-cache/games-arcade/sdlroids-1.3.4-r4 @@ -1,12 +1,13 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=install prepare DEPEND=media-libs/libsdl media-libs/sdl-mixer DESCRIPTION=Asteroids Clone for X using SDL -EAPI=6 +EAPI=7 HOMEPAGE=http://david.hedbor.org/projects/sdlroids/ KEYWORDS=~alpha ~amd64 ~x86 LICENSE=GPL-2 RDEPEND=media-libs/libsdl media-libs/sdl-mixer SLOT=0 SRC_URI=mirror://sourceforge/sdlroids/sdlroids-1.3.4.tar.bz2 -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 -_md5_=b2017687efd3c11ecbcc503ea5ce0173 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=721586f9bcde3aa9dd6811502e7f4420 diff --git a/metadata/md5-cache/games-arcade/spout-1.3-r1 b/metadata/md5-cache/games-arcade/spout-1.3-r1 index 559b5e37661d..c9fb54dee086 100644 --- a/metadata/md5-cache/games-arcade/spout-1.3-r1 +++ b/metadata/md5-cache/games-arcade/spout-1.3-r1 @@ -1,7 +1,7 @@ DEFINED_PHASES=install postinst DEPEND=>=media-libs/libsdl-1.2.6 DESCRIPTION=Abstract Japanese caveflier / shooter -EAPI=6 +EAPI=7 HOMEPAGE=http://freshmeat.net/projects/spout/ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2 @@ -9,4 +9,4 @@ RDEPEND=>=media-libs/libsdl-1.2.6 SLOT=0 SRC_URI=http://rohanpm.net/files/old/spout-unix-1.3.tar.bz2 _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 -_md5_=f134bbdf1af31eb881a152c284592720 +_md5_=1046a4e0cded08a22b969a360e502332 diff --git a/metadata/md5-cache/games-arcade/xrick-021212-r2 b/metadata/md5-cache/games-arcade/xrick-021212-r2 index 28e2477074c8..ced940275eab 100644 --- a/metadata/md5-cache/games-arcade/xrick-021212-r2 +++ b/metadata/md5-cache/games-arcade/xrick-021212-r2 @@ -1,7 +1,7 @@ -DEFINED_PHASES=install prepare unpack +DEFINED_PHASES=configure install prepare unpack DEPEND=media-libs/libsdl[video] DESCRIPTION=Clone of the Rick Dangerous adventure game from the 80's -EAPI=6 +EAPI=7 HOMEPAGE=http://www.bigorno.net/xrick/ KEYWORDS=~amd64 ~ppc64 ~x86 LICENSE=GPL-1+ xrick @@ -9,5 +9,5 @@ RDEPEND=media-libs/libsdl[video] RESTRICT=mirror bindist SLOT=0 SRC_URI=http://www.bigorno.net/xrick/xrick-021212.tgz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 -_md5_=bb44166079e2cf56e6e6f624dd8ec3e1 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=c060422276a1837fb71a107e54b95f3e diff --git a/metadata/md5-cache/games-board/Manifest.gz b/metadata/md5-cache/games-board/Manifest.gz index 1c8d499fee61..08995366bee2 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/tali-3.38.2 b/metadata/md5-cache/games-board/tali-3.38.2 new file mode 100644 index 000000000000..c0fe6906ffa4 --- /dev/null +++ b/metadata/md5-cache/games-board/tali-3.38.2 @@ -0,0 +1,13 @@ +BDEPEND=app-arch/xz-utils >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-libs/appstream-glib dev-util/itstool >=sys-devel/gettext-0.19.8 virtual/pkgconfig dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=Beat the odds in a poker-style dice game +EAPI=7 +HOMEPAGE=https://wiki.gnome.org/Apps/Tali +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=GPL-2+ FDL-1.1+ +RDEPEND=dev-libs/glib:2 >=x11-libs/gtk+-3.16:3 dev-libs/libgnome-games-support:1= >=gnome-base/librsvg-2.32:2 +SLOT=0 +SRC_URI=mirror://gnome/sources/tali/3.38/tali-3.38.2.tar.xz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=a3eff1c39c1e627492f8772d81cad61a diff --git a/metadata/md5-cache/games-emulation/Manifest.gz b/metadata/md5-cache/games-emulation/Manifest.gz index 1c4ef0dc4a41..8a3f8c6c473e 100644 Binary files a/metadata/md5-cache/games-emulation/Manifest.gz and b/metadata/md5-cache/games-emulation/Manifest.gz differ diff --git a/metadata/md5-cache/games-emulation/advancemame-3.9 b/metadata/md5-cache/games-emulation/advancemame-3.9 index 6db5618f2d08..d1f2721cd9b0 100644 --- a/metadata/md5-cache/games-emulation/advancemame-3.9 +++ b/metadata/md5-cache/games-emulation/advancemame-3.9 @@ -11,4 +11,4 @@ RDEPEND=dev-libs/expat media-libs/libsdl2[video] sys-libs/zlib alsa? ( media-lib SLOT=0 SRC_URI=https://github.com/amadvance/advancemame/releases/download/v3.9/advancemame-3.9.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=50596edb35868b8602be31ff4ddd8914 +_md5_=5fe19a6643e8ef875d95676cf4333e6f diff --git a/metadata/md5-cache/games-emulation/gens-2.15.5-r1 b/metadata/md5-cache/games-emulation/gens-2.15.5-r1 deleted file mode 100644 index 422894dacd7d..000000000000 --- a/metadata/md5-cache/games-emulation/gens-2.15.5-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=virtual/opengl >=media-libs/libsdl-1.2[joystick,video] x11-libs/gtk+:2 >=dev-lang/nasm-0.98 -DESCRIPTION=A Sega Genesis/CD/32X emulator -EAPI=6 -HOMEPAGE=https://sourceforge.net/projects/gens/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=virtual/opengl >=media-libs/libsdl-1.2[joystick,video] x11-libs/gtk+:2 -SLOT=0 -SRC_URI=mirror://sourceforge/gens/gens-2.15.5.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=afdb1cd8583e7641c267594bff9b0313 diff --git a/metadata/md5-cache/games-emulation/gens-2.15.5-r2 b/metadata/md5-cache/games-emulation/gens-2.15.5-r2 new file mode 100644 index 000000000000..af45318efe89 --- /dev/null +++ b/metadata/md5-cache/games-emulation/gens-2.15.5-r2 @@ -0,0 +1,15 @@ +BDEPEND=>=dev-lang/nasm-0.98 +DEFINED_PHASES=configure install +DEPEND=media-libs/libsdl[abi_x86_32(-)?,joystick,video] sys-libs/zlib[abi_x86_32(-)?] virtual/opengl[abi_x86_32(-)?] x11-libs/gtk+:2[abi_x86_32(-)?] +DESCRIPTION=A Sega Genesis/CD/32X emulator +EAPI=7 +HOMEPAGE=https://sourceforge.net/projects/gens/ +IUSE=abi_x86_32 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=media-libs/libsdl[abi_x86_32(-)?,joystick,video] sys-libs/zlib[abi_x86_32(-)?] virtual/opengl[abi_x86_32(-)?] x11-libs/gtk+:2[abi_x86_32(-)?] +REQUIRED_USE=|| ( abi_x86_32 ) +SLOT=0 +SRC_URI=mirror://sourceforge/gens/gens-2.15.5.tar.gz +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=7338d0a0bf8577aba56aa15d6fb99af3 diff --git a/metadata/md5-cache/games-fps/Manifest.gz b/metadata/md5-cache/games-fps/Manifest.gz index 27c3bbf22bd6..3ab21a203dc4 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/doomsday-2.1.1-r1 b/metadata/md5-cache/games-fps/doomsday-2.1.1-r1 index 419be2f0ea4e..f088251dd63f 100644 --- a/metadata/md5-cache/games-fps/doomsday-2.1.1-r1 +++ b/metadata/md5-cache/games-fps/doomsday-2.1.1-r1 @@ -11,5 +11,5 @@ PDEPEND=demo? ( games-fps/doom-data ) freedoom? ( games-fps/freedoom ) RDEPEND=dev-qt/qtcore:5= dev-qt/qtgui:5=[-gles2-only] dev-qt/qtnetwork:5= dev-qt/qtopengl:5= dev-qt/qtwidgets:5= dev-qt/qtx11extras:5= media-libs/assimp net-misc/curl sys-libs/zlib fmod? ( media-libs/fmod:1 ) fluidsynth? ( media-sound/fluidsynth:= ) openal? ( media-libs/openal ) tools? ( sys-libs/ncurses:0= ) SLOT=0 SRC_URI=https://downloads.sourceforge.net/project/deng/Doomsday%20Engine/2.1.1/doomsday-2.1.1.tar.gz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=156a7fc3733220945b33f7549a247abb +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=59ac075dd30ea7da93277dcbc5719c07 diff --git a/metadata/md5-cache/games-misc/Manifest.gz b/metadata/md5-cache/games-misc/Manifest.gz index 8cbfbf0f0788..838f103a2e10 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 b/metadata/md5-cache/games-misc/lolcat-100.0.1 index 8f76a2f47d14..144a2291947a 100644 --- a/metadata/md5-cache/games-misc/lolcat-100.0.1 +++ b/metadata/md5-cache/games-misc/lolcat-100.0.1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a49e65a49cf01acf57a54fa51fe97dc3 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 2a89416779fe..e6372156fcd0 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=639783101ac74595f280afc0b7a9cbad diff --git a/metadata/md5-cache/games-misc/lolcat-90.8.8-r1 b/metadata/md5-cache/games-misc/lolcat-90.8.8-r1 index f0e18b57d72f..0d88c31e520d 100644 --- a/metadata/md5-cache/games-misc/lolcat-90.8.8-r1 +++ b/metadata/md5-cache/games-misc/lolcat-90.8.8-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/lolcat-90.8.8.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=806343c39f3ffd1b2e991b41a49b5c5c diff --git a/metadata/md5-cache/games-rpg/Manifest.gz b/metadata/md5-cache/games-rpg/Manifest.gz index 0e9d8efe2ec4..5625bff4444b 100644 Binary files a/metadata/md5-cache/games-rpg/Manifest.gz and b/metadata/md5-cache/games-rpg/Manifest.gz differ diff --git a/metadata/md5-cache/games-rpg/daimonin-client-0.10.8 b/metadata/md5-cache/games-rpg/daimonin-client-0.10.8 index c3b1f98cbec4..d44c309fb5d0 100644 --- a/metadata/md5-cache/games-rpg/daimonin-client-0.10.8 +++ b/metadata/md5-cache/games-rpg/daimonin-client-0.10.8 @@ -1,7 +1,8 @@ +BDEPEND=app-arch/unzip >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install prepare unpack -DEPEND=dev-games/physfs media-libs/libsdl[sound,video] media-libs/sdl-image[png] media-libs/sdl-mixer[vorbis] net-misc/curl sys-libs/zlib:= app-arch/unzip >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=dev-games/physfs media-libs/libsdl[sound,video] media-libs/sdl-image[png] media-libs/sdl-mixer[vorbis] net-misc/curl sys-libs/zlib:= DESCRIPTION=A graphical 2D tile-based MMORPG -EAPI=6 +EAPI=7 HOMEPAGE=http://daimonin.sourceforge.net/ IUSE=debug music KEYWORDS=~amd64 ~x86 @@ -9,5 +10,5 @@ LICENSE=GPL-2 RDEPEND=dev-games/physfs media-libs/libsdl[sound,video] media-libs/sdl-image[png] media-libs/sdl-mixer[vorbis] net-misc/curl sys-libs/zlib:= SLOT=0 SRC_URI=https://dev.gentoo.org/~soap/distfiles/daimonin-client-0.10.8.zip music? ( mirror://sourceforge/daimonin/daimoninMusicLQ20100827.zip ) -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bea47b5cf9149467e07298144f07bb94 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=eff1917f256ab3dc0427637defab2a04 diff --git a/metadata/md5-cache/games-sports/Manifest.gz b/metadata/md5-cache/games-sports/Manifest.gz index 606ab7e9a736..28d40ca1dfcb 100644 Binary files a/metadata/md5-cache/games-sports/Manifest.gz and b/metadata/md5-cache/games-sports/Manifest.gz differ diff --git a/metadata/md5-cache/games-sports/bygfoot-2.3.2-r1 b/metadata/md5-cache/games-sports/bygfoot-2.3.2-r1 index c71e1891ca39..06c9da382021 100644 --- a/metadata/md5-cache/games-sports/bygfoot-2.3.2-r1 +++ b/metadata/md5-cache/games-sports/bygfoot-2.3.2-r1 @@ -1,12 +1,13 @@ -DEFINED_PHASES=configure install prepare -DEPEND=app-arch/zip media-libs/freetype:2 x11-libs/gtk+:2 virtual/libintl sys-devel/gettext virtual/pkgconfig +BDEPEND=sys-devel/gettext virtual/pkgconfig +DEFINED_PHASES=configure install +DEPEND=app-arch/zip media-libs/freetype:2 x11-libs/gtk+:2 virtual/libintl DESCRIPTION=GTK+2 Soccer Management Game -EAPI=6 +EAPI=7 HOMEPAGE=http://bygfoot.sourceforge.net/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=app-arch/zip media-libs/freetype:2 x11-libs/gtk+:2 virtual/libintl SLOT=0 SRC_URI=mirror://sourceforge/bygfoot/bygfoot-2.3.2.tar.bz2 -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=2251917ef90d2151eb75fddfd2227812 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf +_md5_=7dc1178ca3d754850be44891415bf592 diff --git a/metadata/md5-cache/games-strategy/Manifest.gz b/metadata/md5-cache/games-strategy/Manifest.gz index a2e87f1d8da8..d21e7244b942 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/freeciv-2.6.2 b/metadata/md5-cache/games-strategy/freeciv-2.6.2 index 72604576f2e4..8f94e1eaf9aa 100644 --- a/metadata/md5-cache/games-strategy/freeciv-2.6.2 +++ b/metadata/md5-cache/games-strategy/freeciv-2.6.2 @@ -5,10 +5,10 @@ DESCRIPTION=multiplayer strategy game (Civilization Clone) EAPI=7 HOMEPAGE=http://www.freeciv.org/ IUSE=aimodules auth dedicated +gtk ipv6 mapimg modpack mysql nls qt5 readline sdl +server +sound sqlite system-lua -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~ppc64 ~x86 LICENSE=GPL-2+ RDEPEND=app-arch/bzip2 app-arch/xz-utils net-misc/curl sys-libs/zlib auth? ( !mysql? ( ( !sqlite? ( dev-db/mysql-connector-c:0= ) ) ) mysql? ( dev-db/mysql-connector-c:0= ) sqlite? ( dev-db/sqlite:3 ) ) dedicated? ( aimodules? ( dev-libs/libltdl:0 ) ) !dedicated? ( media-libs/libpng:0 gtk? ( x11-libs/gtk+:2 ) mapimg? ( media-gfx/imagemagick:= ) modpack? ( x11-libs/gtk+:2 ) nls? ( virtual/libintl ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 ) !sdl? ( !gtk? ( x11-libs/gtk+:2 ) ) sdl? ( media-libs/libsdl2[video] media-libs/sdl2-gfx media-libs/sdl2-image[png] media-libs/sdl2-ttf ) server? ( aimodules? ( sys-devel/libtool:2 ) ) sound? ( media-libs/libsdl2[sound] media-libs/sdl2-mixer[vorbis] ) ) readline? ( sys-libs/readline:0= ) system-lua? ( >=dev-lang/lua-5.3:= ) SLOT=0 SRC_URI=mirror://sourceforge/freeciv/freeciv-2.6.2.tar.bz2 _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7e34edeadf212ed907602ab6259af0e9 +_md5_=3744f4fb55a1c6dd27908eb6dc60de7f diff --git a/metadata/md5-cache/games-util/Manifest.gz b/metadata/md5-cache/games-util/Manifest.gz index e6c02b70ca76..21261b45b762 100644 Binary files a/metadata/md5-cache/games-util/Manifest.gz and b/metadata/md5-cache/games-util/Manifest.gz differ diff --git a/metadata/md5-cache/games-util/etswitch-0.1.14-r1 b/metadata/md5-cache/games-util/etswitch-0.1.14-r1 index e0e8dcf86a66..cbef795665af 100644 --- a/metadata/md5-cache/games-util/etswitch-0.1.14-r1 +++ b/metadata/md5-cache/games-util/etswitch-0.1.14-r1 @@ -1,11 +1,11 @@ -DEFINED_PHASES=configure +DEFINED_PHASES=- DEPEND=x11-libs/libX11 x11-libs/libXxf86vm x11-libs/libXmu x11-libs/libXpm x11-libs/libXt x11-base/xorg-proto DESCRIPTION=*nix minimizer for a few games -EAPI=6 +EAPI=7 HOMEPAGE=http://hem.bredband.net/b400150/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=x11-libs/libX11 x11-libs/libXxf86vm x11-libs/libXmu x11-libs/libXpm SLOT=0 SRC_URI=http://hem.bredband.net/b400150/etswitch/etswitch-0.1.14.tar.gz -_md5_=4407ff455dbc7a77b085ffc520162f93 +_md5_=cca01eb164251cd7bf9743b947d95961 diff --git a/metadata/md5-cache/games-util/fteqcc-2501 b/metadata/md5-cache/games-util/fteqcc-2501 index 1bcc8195f8ff..62dafc8d682c 100644 --- a/metadata/md5-cache/games-util/fteqcc-2501 +++ b/metadata/md5-cache/games-util/fteqcc-2501 @@ -1,12 +1,12 @@ -DEFINED_PHASES=compile install prepare -DEPEND=app-arch/unzip +BDEPEND=app-arch/unzip +DEFINED_PHASES=configure install prepare DESCRIPTION=QC compiler -EAPI=5 +EAPI=7 HOMEPAGE=http://fteqw.sourceforge.net/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/fteqw/qclibsrc2501.zip -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e40540f454381fbaa0779714847cb542 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=f66843623a05c7fd29098bdde2f1e927 diff --git a/metadata/md5-cache/games-util/game-device-udev-rules-20201025 b/metadata/md5-cache/games-util/game-device-udev-rules-20201121 similarity index 80% rename from metadata/md5-cache/games-util/game-device-udev-rules-20201025 rename to metadata/md5-cache/games-util/game-device-udev-rules-20201121 index 11ee29eef668..bc2f02be56f5 100644 --- a/metadata/md5-cache/games-util/game-device-udev-rules-20201025 +++ b/metadata/md5-cache/games-util/game-device-udev-rules-20201121 @@ -9,6 +9,6 @@ LICENSE=MIT RDEPEND=acl? ( elogind? ( sys-auth/elogind[acl] ) systemd? ( sys-apps/systemd[acl] ) ) !acl? ( acct-group/input ) virtual/udev REQUIRED_USE=acl? ( || ( elogind systemd ) ) SLOT=0 -SRC_URI=https://github.com/ValveSoftware/steam-devices/archive/46bd9ae69542577c0db44a4bd664585c03eaad9d.tar.gz -> steam-devices-46bd9ae69542577c0db44a4bd664585c03eaad9d.tar.gz +SRC_URI=https://github.com/ValveSoftware/steam-devices/archive/442b412ae2c1e20d6aa09f04f0245f9281788a71.tar.gz -> steam-devices-442b412ae2c1e20d6aa09f04f0245f9281788a71.tar.gz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=8c2be0c164abe5626faa0007a32e1e8e +_md5_=4125331a9c8048fddac10400264a72ec diff --git a/metadata/md5-cache/games-util/xqf-1.0.6.2 b/metadata/md5-cache/games-util/xqf-1.0.6.2 index b4bfe250886a..07fbf6dbafd0 100644 --- a/metadata/md5-cache/games-util/xqf-1.0.6.2 +++ b/metadata/md5-cache/games-util/xqf-1.0.6.2 @@ -1,13 +1,14 @@ +BDEPEND=virtual/pkgconfig nls? ( sys-devel/gettext ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure prepare -DEPEND=x11-libs/gtk+:2 >=games-util/qstat-2.11 nls? ( virtual/libintl ) geoip? ( dev-libs/geoip ) bzip2? ( app-arch/bzip2 ) virtual/pkgconfig nls? ( sys-devel/gettext ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=x11-libs/gdk-pixbuf-xlib x11-libs/gtk+:2 >=games-util/qstat-2.11 nls? ( virtual/libintl ) geoip? ( dev-libs/geoip ) bzip2? ( app-arch/bzip2 ) DESCRIPTION=A server browser for many FPS games (frontend for qstat) -EAPI=5 +EAPI=7 HOMEPAGE=http://xqf.github.io/en/ IUSE=bzip2 geoip nls KEYWORDS=~amd64 ~hppa ~x86 LICENSE=GPL-2 -RDEPEND=x11-libs/gtk+:2 >=games-util/qstat-2.11 nls? ( virtual/libintl ) geoip? ( dev-libs/geoip ) bzip2? ( app-arch/bzip2 ) +RDEPEND=x11-libs/gdk-pixbuf-xlib x11-libs/gtk+:2 >=games-util/qstat-2.11 nls? ( virtual/libintl ) geoip? ( dev-libs/geoip ) bzip2? ( app-arch/bzip2 ) SLOT=0 SRC_URI=https://github.com/XQF/xqf/archive/xqf-1.0.6.2.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=955cad181902ef80fef47f6634fd89e0 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=d5049d8c83f8fdd6c184d1876f814040 diff --git a/metadata/md5-cache/gnome-base/Manifest.gz b/metadata/md5-cache/gnome-base/Manifest.gz index 76325205cd50..de31431a7b1e 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-shell-3.36.5 b/metadata/md5-cache/gnome-base/gnome-shell-3.36.5 deleted file mode 100644 index 900a144ee121..000000000000 --- a/metadata/md5-cache/gnome-base/gnome-shell-3.36.5 +++ /dev/null @@ -1,17 +0,0 @@ -BDEPEND=dev-lang/sassc dev-libs/libxslt app-text/asciidoc >=dev-util/gdbus-codegen-2.45.3 dev-util/glib-utils gtk-doc? ( >=dev-util/gtk-doc-1.17 app-text/docbook-xml-dtd:4.3 ) >=sys-devel/gettext-0.19.8 virtual/pkgconfig app-arch/xz-utils >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=>=gnome-extra/evolution-data-server-3.33.1:= >=app-crypt/gcr-3.7.5[introspection] >=dev-libs/glib-2.57.2:2 >=dev-libs/gobject-introspection-1.49.1:= >=dev-libs/gjs-1.63.2 >=x11-libs/gtk+-3.15.0:3[introspection] >=x11-wm/mutter-3.36.0:0/6[introspection] >=sys-auth/polkit-0.100[introspection] >=gnome-base/gsettings-desktop-schemas-3.33.1 >=x11-libs/startup-notification-0.11 >=app-i18n/ibus-1.5.2 >=gnome-base/gnome-desktop-3.35.90:3=[introspection] bluetooth? ( >=net-wireless/gnome-bluetooth-3.9[introspection] ) >=media-libs/gstreamer-0.11.92:1.0 media-libs/gst-plugins-base:1.0 networkmanager? ( >=net-misc/networkmanager-1.10.4:=[introspection] net-libs/libnma[introspection] >=app-crypt/libsecret-0.18 dev-libs/dbus-glib ) systemd? ( >=sys-apps/systemd-31 >=gnome-base/gnome-desktop-3.34.2:3=[systemd] ) elogind? ( >=sys-auth/elogind-237 ) app-arch/gnome-autoar dev-libs/json-glib >=app-accessibility/at-spi2-atk-2.5.3 x11-libs/gdk-pixbuf:2[introspection] dev-libs/libxml2:2 x11-libs/libX11 >=media-sound/pulseaudio-2[glib] >=dev-libs/atk-2[introspection] dev-libs/libical:= >=x11-libs/libXfixes-5.0 python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_6? ( dev-python/pygobject:3[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pygobject:3[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) media-libs/mesa[X(+)] dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=Provides core UI functions for the GNOME 3 desktop -EAPI=7 -HOMEPAGE=https://wiki.gnome.org/Projects/GnomeShell -IUSE=+bluetooth +browser-extension elogind gtk-doc +ibus +networkmanager systemd telepathy python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 test -KEYWORDS=amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86 -LICENSE=GPL-2+ LGPL-2+ -PDEPEND=>=gnome-base/gdm-3.5[introspection] >=gnome-base/gnome-control-center-3.26[bluetooth(+)?,networkmanager(+)?] browser-extension? ( gnome-extra/chrome-gnome-shell ) -RDEPEND=>=gnome-extra/evolution-data-server-3.33.1:= >=app-crypt/gcr-3.7.5[introspection] >=dev-libs/glib-2.57.2:2 >=dev-libs/gobject-introspection-1.49.1:= >=dev-libs/gjs-1.63.2 >=x11-libs/gtk+-3.15.0:3[introspection] >=x11-wm/mutter-3.36.0:0/6[introspection] >=sys-auth/polkit-0.100[introspection] >=gnome-base/gsettings-desktop-schemas-3.33.1 >=x11-libs/startup-notification-0.11 >=app-i18n/ibus-1.5.2 >=gnome-base/gnome-desktop-3.35.90:3=[introspection] bluetooth? ( >=net-wireless/gnome-bluetooth-3.9[introspection] ) >=media-libs/gstreamer-0.11.92:1.0 media-libs/gst-plugins-base:1.0 networkmanager? ( >=net-misc/networkmanager-1.10.4:=[introspection] net-libs/libnma[introspection] >=app-crypt/libsecret-0.18 dev-libs/dbus-glib ) systemd? ( >=sys-apps/systemd-31 >=gnome-base/gnome-desktop-3.34.2:3=[systemd] ) elogind? ( >=sys-auth/elogind-237 ) app-arch/gnome-autoar dev-libs/json-glib >=app-accessibility/at-spi2-atk-2.5.3 x11-libs/gdk-pixbuf:2[introspection] dev-libs/libxml2:2 x11-libs/libX11 >=media-sound/pulseaudio-2[glib] >=dev-libs/atk-2[introspection] dev-libs/libical:= >=x11-libs/libXfixes-5.0 python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_6? ( dev-python/pygobject:3[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pygobject:3[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) media-libs/mesa[X(+)] >=sys-apps/accountsservice-0.6.14[introspection] app-accessibility/at-spi2-core:2[introspection] app-misc/geoclue[introspection] >=dev-libs/libgweather-3.26:2[introspection] >=sys-power/upower-0.99:=[introspection] x11-libs/pango[introspection] gnome-base/librsvg:2[introspection] >=gnome-base/gnome-session-2.91.91 >=gnome-base/gnome-settings-daemon-3.8.3 x11-misc/xdg-utils >=x11-themes/adwaita-icon-theme-3.26 networkmanager? ( net-misc/mobile-broadband-provider-info sys-libs/timezone-data ) ibus? ( >=app-i18n/ibus-1.4.99[dconf(+),gtk,introspection] ) telepathy? ( >=net-im/telepathy-logger-0.2.4[introspection] >=net-libs/telepathy-glib-0.19[introspection] ) media-fonts/cantarell -REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ?? ( elogind systemd ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://gnome/sources/gnome-shell/3.36/gnome-shell-3.36.5.tar.xz https://dev.gentoo.org/~leio/distfiles/gnome-shell-3.36.5-patchset.tar.xz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cc29526e72793cd09c60bdaf4c97a309 diff --git a/metadata/md5-cache/gnome-base/gnome-shell-3.36.7 b/metadata/md5-cache/gnome-base/gnome-shell-3.36.7 index b76328d8845a..6004678c5c6e 100644 --- a/metadata/md5-cache/gnome-base/gnome-shell-3.36.7 +++ b/metadata/md5-cache/gnome-base/gnome-shell-3.36.7 @@ -5,7 +5,7 @@ DESCRIPTION=Provides core UI functions for the GNOME 3 desktop EAPI=7 HOMEPAGE=https://wiki.gnome.org/Projects/GnomeShell IUSE=+bluetooth +browser-extension elogind gtk-doc +ibus +networkmanager systemd telepathy python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 test -KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 x86 LICENSE=GPL-2+ LGPL-2+ PDEPEND=>=gnome-base/gdm-3.5[introspection] >=gnome-base/gnome-control-center-3.26[bluetooth(+)?,networkmanager(+)?] browser-extension? ( gnome-extra/chrome-gnome-shell ) RDEPEND=>=gnome-extra/evolution-data-server-3.33.1:= >=app-crypt/gcr-3.7.5[introspection] >=dev-libs/glib-2.57.2:2 >=dev-libs/gobject-introspection-1.49.1:= >=dev-libs/gjs-1.63.2 >=x11-libs/gtk+-3.15.0:3[introspection] >=x11-wm/mutter-3.36.0:0/6[introspection] >=sys-auth/polkit-0.100[introspection] >=gnome-base/gsettings-desktop-schemas-3.33.1 >=x11-libs/startup-notification-0.11 >=app-i18n/ibus-1.5.2 >=gnome-base/gnome-desktop-3.35.90:3=[introspection] bluetooth? ( >=net-wireless/gnome-bluetooth-3.9[introspection] ) >=media-libs/gstreamer-0.11.92:1.0 media-libs/gst-plugins-base:1.0 networkmanager? ( >=net-misc/networkmanager-1.10.4:=[introspection] net-libs/libnma[introspection] >=app-crypt/libsecret-0.18 dev-libs/dbus-glib ) systemd? ( >=sys-apps/systemd-31 >=gnome-base/gnome-desktop-3.34.2:3=[systemd] ) elogind? ( >=sys-auth/elogind-237 ) app-arch/gnome-autoar dev-libs/json-glib >=app-accessibility/at-spi2-atk-2.5.3 x11-libs/gdk-pixbuf:2[introspection] dev-libs/libxml2:2 x11-libs/libX11 >=media-sound/pulseaudio-12.99.3[glib] >=dev-libs/atk-2[introspection] dev-libs/libical:= >=x11-libs/libXfixes-5.0 python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_6? ( dev-python/pygobject:3[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pygobject:3[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pygobject:3[python_targets_python3_8(-)] ) media-libs/mesa[X(+)] >=sys-apps/accountsservice-0.6.14[introspection] app-accessibility/at-spi2-core:2[introspection] app-misc/geoclue[introspection] >=dev-libs/libgweather-3.26:2[introspection] >=sys-power/upower-0.99:=[introspection] x11-libs/pango[introspection] gnome-base/librsvg:2[introspection] >=gnome-base/gnome-session-2.91.91 >=gnome-base/gnome-settings-daemon-3.8.3 x11-misc/xdg-utils >=x11-themes/adwaita-icon-theme-3.26 networkmanager? ( net-misc/mobile-broadband-provider-info sys-libs/timezone-data ) ibus? ( >=app-i18n/ibus-1.4.99[dconf(+),gtk,introspection] ) telepathy? ( >=net-im/telepathy-logger-0.2.4[introspection] >=net-libs/telepathy-glib-0.19[introspection] ) media-fonts/cantarell @@ -14,4 +14,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/gnome-shell/3.36/gnome-shell-3.36.7.tar.xz https://dev.gentoo.org/~leio/distfiles/gnome-shell-3.36.7-patchset.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1b698fc402c939f6a3440082f825ae02 +_md5_=d1958765622c3d0349d39f6240c9d35c diff --git a/metadata/md5-cache/gnome-extra/Manifest.gz b/metadata/md5-cache/gnome-extra/Manifest.gz index df068869da79..663ab18cc958 100644 Binary files a/metadata/md5-cache/gnome-extra/Manifest.gz and b/metadata/md5-cache/gnome-extra/Manifest.gz differ diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extensions-3.36.3 b/metadata/md5-cache/gnome-extra/gnome-shell-extensions-3.36.3 deleted file mode 100644 index 4bb866be3314..000000000000 --- a/metadata/md5-cache/gnome-extra/gnome-shell-extensions-3.36.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=>=dev-libs/glib-2.26:2 >=gnome-base/libgtop-2.28.3[introspection] >=app-eselect/eselect-gnome-shell-extensions-20111211 dev-lang/sassc >=sys-devel/gettext-0.19.8 virtual/pkgconfig test? ( dev-lang/spidermonkey:68 ) app-arch/xz-utils >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=JavaScript extensions for GNOME Shell -EAPI=6 -HOMEPAGE=https://wiki.gnome.org/Projects/GnomeShell/Extensions -IUSE=test -KEYWORDS=amd64 x86 -LICENSE=GPL-2+ -RDEPEND=>=dev-libs/glib-2.26:2 >=gnome-base/libgtop-2.28.3[introspection] >=app-eselect/eselect-gnome-shell-extensions-20111211 >=dev-libs/gjs-1.29 dev-libs/gobject-introspection:= dev-libs/atk[introspection] gnome-base/gnome-menus:3[introspection] =gnome-base/gnome-shell-3.36* media-libs/clutter:1.0[introspection] net-libs/telepathy-glib[introspection] x11-libs/gdk-pixbuf:2[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] x11-themes/adwaita-icon-theme >=x11-wm/mutter-3.32[introspection] -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=mirror://gnome/sources/gnome-shell-extensions/3.36/gnome-shell-extensions-3.36.3.tar.xz -_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 gnome.org 532d56d07b9eace4831aaa817d2b756a meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=7f1755d15ab0481228e316cf6f35af5c diff --git a/metadata/md5-cache/gnome-extra/gnome-shell-extensions-3.36.7 b/metadata/md5-cache/gnome-extra/gnome-shell-extensions-3.36.7 index 877dbd17e1d0..b6f06c6d21e4 100644 --- a/metadata/md5-cache/gnome-extra/gnome-shell-extensions-3.36.7 +++ b/metadata/md5-cache/gnome-extra/gnome-shell-extensions-3.36.7 @@ -4,11 +4,11 @@ DESCRIPTION=JavaScript extensions for GNOME Shell EAPI=6 HOMEPAGE=https://wiki.gnome.org/Projects/GnomeShell/Extensions IUSE=test -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2+ RDEPEND=>=dev-libs/glib-2.26:2 >=gnome-base/libgtop-2.28.3[introspection] >=app-eselect/eselect-gnome-shell-extensions-20111211 >=dev-libs/gjs-1.29 dev-libs/gobject-introspection:= dev-libs/atk[introspection] gnome-base/gnome-menus:3[introspection] =gnome-base/gnome-shell-3.36* media-libs/clutter:1.0[introspection] net-libs/telepathy-glib[introspection] x11-libs/gdk-pixbuf:2[introspection] x11-libs/gtk+:3[introspection] x11-libs/pango[introspection] x11-themes/adwaita-icon-theme >=x11-wm/mutter-3.32[introspection] RESTRICT=!test? ( test ) SLOT=0 SRC_URI=mirror://gnome/sources/gnome-shell-extensions/3.36/gnome-shell-extensions-3.36.7.tar.xz _eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 gnome.org 532d56d07b9eace4831aaa817d2b756a meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb versionator d3fb3ba33acc3bbbdc4d7970227c100d xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=bc322ff2c48bf84e9246283b4ec4719d +_md5_=7f1755d15ab0481228e316cf6f35af5c diff --git a/metadata/md5-cache/kde-apps/Manifest.gz b/metadata/md5-cache/kde-apps/Manifest.gz index af1bf159a16a..8a4ca53e42ac 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/kross-interpreters-20.04.3 b/metadata/md5-cache/kde-apps/kross-interpreters-20.04.3 index d22e6407947d..e0ba861a0759 100644 --- a/metadata/md5-cache/kde-apps/kross-interpreters-20.04.3 +++ b/metadata/md5-cache/kde-apps/kross-interpreters-20.04.3 @@ -1,15 +1,15 @@ BDEPEND=dev-util/ninja dev-util/cmake >=kde-frameworks/extra-cmake-modules-5.70.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-qt/qtgui-5.14.2:5 >=dev-qt/qtwidgets-5.14.2:5 >=kde-frameworks/kross-5.70.0:5 python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7] ) ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) dev-util/desktop-file-utils x11-misc/shared-mime-info dev-qt/qtcore:5 +DEPEND=>=dev-qt/qtgui-5.14.2:5 >=dev-qt/qtwidgets-5.14.2:5 >=kde-frameworks/kross-5.70.0:5 python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7] ) ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) dev-util/desktop-file-utils x11-misc/shared-mime-info dev-qt/qtcore:5 DESCRIPTION=Kross interpreter plugins for programming languages EAPI=7 HOMEPAGE=https://kde.org/ IUSE=+python ruby debug +python_single_target_python2_7 KEYWORDS=amd64 arm64 x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtgui-5.14.2:5 >=dev-qt/qtwidgets-5.14.2:5 >=kde-frameworks/kross-5.70.0:5 python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7] ) ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 +RDEPEND=>=dev-qt/qtgui-5.14.2:5 >=dev-qt/qtwidgets-5.14.2:5 >=kde-frameworks/kross-5.70.0:5 python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-exec-2:=[python_targets_python2_7] ) ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems ) || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 REQUIRED_USE=|| ( python ruby ) python? ( ^^ ( python_single_target_python2_7 ) ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/20.04.3/src/kross-interpreters-20.04.3.tar.xz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm f6ac7d31239fbaacf94ec10be0fb8066 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 16ab706e1b049cfaa65425a0c0e28cac l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm f6ac7d31239fbaacf94ec10be0fb8066 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 16ab706e1b049cfaa65425a0c0e28cac l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=08fd10f0699121456b1cc5fed78171d7 diff --git a/metadata/md5-cache/kde-apps/kross-interpreters-20.08.3 b/metadata/md5-cache/kde-apps/kross-interpreters-20.08.3 index 994341f1f44a..2c57b1a1ce37 100644 --- a/metadata/md5-cache/kde-apps/kross-interpreters-20.08.3 +++ b/metadata/md5-cache/kde-apps/kross-interpreters-20.08.3 @@ -1,14 +1,14 @@ BDEPEND=dev-util/ninja dev-util/cmake >=kde-frameworks/extra-cmake-modules-5.74.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtwidgets-5.15.1:5 >=kde-frameworks/kross-5.74.0:5 || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems dev-util/desktop-file-utils x11-misc/shared-mime-info dev-qt/qtcore:5 +DEPEND=>=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtwidgets-5.15.1:5 >=kde-frameworks/kross-5.74.0:5 || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems dev-util/desktop-file-utils x11-misc/shared-mime-info dev-qt/qtcore:5 DESCRIPTION=Kross interpreter plugins for programming languages EAPI=7 HOMEPAGE=https://kde.org/ IUSE=debug KEYWORDS=~amd64 ~arm64 ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtwidgets-5.15.1:5 >=kde-frameworks/kross-5.74.0:5 || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 +RDEPEND=>=dev-qt/qtgui-5.15.1:5 >=dev-qt/qtwidgets-5.15.1:5 >=kde-frameworks/kross-5.74.0:5 || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems || ( kde-frameworks/breeze-icons:* kde-frameworks/oxygen-icons:* ) >=kde-frameworks/kf-env-4 dev-qt/qtcore:5 SLOT=5 SRC_URI=mirror://kde/stable/release-service/20.08.3/src/kross-interpreters-20.08.3.tar.xz -_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm f6ac7d31239fbaacf94ec10be0fb8066 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 16ab706e1b049cfaa65425a0c0e28cac l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm f6ac7d31239fbaacf94ec10be0fb8066 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 16ab706e1b049cfaa65425a0c0e28cac l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=7b43768f6738f5840ae443602b0b2e2c diff --git a/metadata/md5-cache/kde-apps/umbrello-20.08.3 b/metadata/md5-cache/kde-apps/umbrello-20.08.3 index 8133463de9bc..88ec2648c6ca 100644 --- a/metadata/md5-cache/kde-apps/umbrello-20.08.3 +++ b/metadata/md5-cache/kde-apps/umbrello-20.08.3 @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) !test? ( test ) SLOT=5 SRC_URI=mirror://kde/stable/release-service/20.08.3/src/umbrello-20.08.3.tar.xz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm f6ac7d31239fbaacf94ec10be0fb8066 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 16ab706e1b049cfaa65425a0c0e28cac l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=70b98b873dd2ac4a84069c488aa02152 +_md5_=5bcf0c01206f99ae7dece72c452f54f3 diff --git a/metadata/md5-cache/kde-plasma/Manifest.gz b/metadata/md5-cache/kde-plasma/Manifest.gz index d0d56ba87355..f21e30d878a9 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-server-5.20.3 b/metadata/md5-cache/kde-plasma/kwayland-server-5.20.3 index f7e98c2a5d53..8e4ddc30f30b 100644 --- a/metadata/md5-cache/kde-plasma/kwayland-server-5.20.3 +++ b/metadata/md5-cache/kde-plasma/kwayland-server-5.20.3 @@ -1,6 +1,6 @@ BDEPEND=dev-util/ninja dev-util/cmake doc? ( >=app-doc/doxygen-1.8.13-r1 dev-qt/qthelp:5 ) >=kde-frameworks/extra-cmake-modules-5.74.0:5 DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-libs/wayland-1.18.0 >=dev-qt/qtconcurrent-5.15.1:5 >=dev-qt/qtgui-5.15.1:5[egl] >=dev-qt/qtwayland-5.15.1:5 >=kde-frameworks/kwayland-5.74.0:5 media-libs/mesa[egl] >=dev-libs/plasma-wayland-protocols-1.1.1 >=dev-libs/wayland-protocols-1.15 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 +DEPEND=>=dev-libs/wayland-1.18.0 >=dev-qt/qtconcurrent-5.15.1:5 >=dev-qt/qtgui-5.15.1:5[egl] >=dev-qt/qtwayland-5.15.1:5 >=kde-frameworks/kwayland-5.74.0:5 media-libs/mesa[egl] >=dev-libs/plasma-wayland-protocols-1.1.1 >=dev-libs/wayland-protocols-1.18 dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( dev-qt/qttest:5 ) doc? ( dev-qt/qt-docs:5 ) dev-qt/qtcore:5 DESCRIPTION=Wayland Server Components built on KDE Frameworks EAPI=7 HOMEPAGE=https://invent.kde.org/plasma/kwayland-server @@ -12,4 +12,4 @@ RESTRICT=!test? ( test ) test SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.20.3/kwayland-server-5.20.3.tar.xz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 ecm f6ac7d31239fbaacf94ec10be0fb8066 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kde.org 16ab706e1b049cfaa65425a0c0e28cac l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2cb27f23218068cbd429541d1edc77d3 +_md5_=ff5dcbc9489099fc2de508e234e79439 diff --git a/metadata/md5-cache/mail-client/Manifest.gz b/metadata/md5-cache/mail-client/Manifest.gz index 3f5632c3f42e..a89468823c82 100644 Binary files a/metadata/md5-cache/mail-client/Manifest.gz and b/metadata/md5-cache/mail-client/Manifest.gz differ diff --git a/metadata/md5-cache/mail-client/mutt-2.0.0 b/metadata/md5-cache/mail-client/mutt-2.0.2 similarity index 92% rename from metadata/md5-cache/mail-client/mutt-2.0.0 rename to metadata/md5-cache/mail-client/mutt-2.0.2 index a2a379ca2b5b..de4cf91bdf2e 100644 --- a/metadata/md5-cache/mail-client/mutt-2.0.0 +++ b/metadata/md5-cache/mail-client/mutt-2.0.2 @@ -9,6 +9,6 @@ LICENSE=GPL-2 RDEPEND=app-misc/mime-types virtual/libiconv berkdb? ( >=sys-libs/db-4:= ) gdbm? ( sys-libs/gdbm ) lmdb? ( dev-db/lmdb:= ) qdbm? ( dev-db/qdbm ) tokyocabinet? ( dev-db/tokyocabinet ) ssl? ( gnutls? ( >=net-libs/gnutls-1.0.17:= ) !gnutls? ( libressl? ( dev-libs/libressl:= ) !libressl? ( >=dev-libs/openssl-0.9.6:0= ) ) ) nls? ( virtual/libintl ) sasl? ( >=dev-libs/cyrus-sasl-2 ) kerberos? ( virtual/krb5 ) idn? ( net-dns/libidn2 ) gpgme? ( >=app-crypt/gpgme-0.9.0:= ) autocrypt? ( >=dev-db/sqlite-3 ) slang? ( sys-libs/slang ) !slang? ( >=sys-libs/ncurses-5.2:0= ) selinux? ( sec-policy/selinux-mutt ) smime-classic? ( || ( dev-libs/libressl >=dev-libs/openssl-0.9.6:0 ) ) pgp-classic? ( app-crypt/gnupg ) REQUIRED_USE=hcache? ( || ( berkdb gdbm lmdb qdbm tokyocabinet ) ) imap? ( ssl ) pop? ( ssl ) smime-classic? ( ssl !gnutls ) smtp? ( ssl sasl ) sasl? ( || ( imap pop smtp ) ) kerberos? ( || ( imap pop smtp ) ) autocrypt? ( gpgme ) SLOT=0 -SRC_URI=ftp://ftp.mutt.org/pub/mutt/mutt-2.0.0.tar.gz https://bitbucket.org/mutt/mutt/downloads/mutt-2.0.0.tar.gz https://dev.gentoo.org/~grobian/distfiles/mutt-gentoo-2.0.0-patches-r0.tar.xz +SRC_URI=ftp://ftp.mutt.org/pub/mutt/mutt-2.0.2.tar.gz https://bitbucket.org/mutt/mutt/downloads/mutt-2.0.2.tar.gz https://dev.gentoo.org/~grobian/distfiles/mutt-gentoo-2.0.2-patches-r0.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=67a61fba1eba8b4ce6b09fa44ffed089 +_md5_=7e1e1f65260555c7e9874510b003e462 diff --git a/metadata/md5-cache/mail-client/neomutt-20201120 b/metadata/md5-cache/mail-client/neomutt-20201120 new file mode 100644 index 000000000000..36676670cb95 --- /dev/null +++ b/metadata/md5-cache/mail-client/neomutt-20201120 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst test +DEPEND=app-misc/mime-types berkdb? ( || ( sys-libs/db:6.2 sys-libs/db:5.3 sys-libs/db:4.8 ) =net-libs/gnutls-1.0.17:= ) gpgme? ( >=app-crypt/gpgme-0.9.0:= ) idn? ( net-dns/libidn:= ) kerberos? ( virtual/krb5 ) notmuch? ( net-mail/notmuch:= ) sasl? ( >=dev-libs/cyrus-sasl-2 ) !slang? ( sys-libs/ncurses:0= ) slang? ( sys-libs/slang ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.2u:0= ) libressl? ( dev-libs/libressl:= ) ) dev-lang/tcl:= net-mail/mailbase doc? ( dev-libs/libxml2 dev-libs/libxslt app-text/docbook-xsl-stylesheets || ( www-client/lynx www-client/w3m www-client/elinks ) ) +DESCRIPTION=A small but very powerful text-based mail client +EAPI=7 +HOMEPAGE=https://neomutt.org/ +IUSE=berkdb doc gdbm gnutls gpgme idn kerberos kyotocabinet libressl lmdb nls notmuch pgp-classic qdbm sasl selinux slang smime-classic ssl tokyocabinet test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=app-misc/mime-types berkdb? ( || ( sys-libs/db:6.2 sys-libs/db:5.3 sys-libs/db:4.8 ) =net-libs/gnutls-1.0.17:= ) gpgme? ( >=app-crypt/gpgme-0.9.0:= ) idn? ( net-dns/libidn:= ) kerberos? ( virtual/krb5 ) notmuch? ( net-mail/notmuch:= ) sasl? ( >=dev-libs/cyrus-sasl-2 ) !slang? ( sys-libs/ncurses:0= ) slang? ( sys-libs/slang ) ssl? ( !libressl? ( >=dev-libs/openssl-1.0.2u:0= ) libressl? ( dev-libs/libressl:= ) ) selinux? ( sec-policy/selinux-mutt ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/neomutt/neomutt/archive/20201120.tar.gz -> neomutt-20201120.tar.gz test? ( https://github.com/neomutt/neomutt-test-files/archive/8629adab700a75c54e8e28bf05ad092503a98f75.tar.gz -> neomutt-test-files-8629adab700a75c54e8e28bf05ad092503a98f75.tar.gz ) +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=42d9a1b664e4df93884f40c1bd549f02 diff --git a/metadata/md5-cache/mail-filter/Manifest.gz b/metadata/md5-cache/mail-filter/Manifest.gz index 7d5041b491e5..ed70fde732a0 100644 Binary files a/metadata/md5-cache/mail-filter/Manifest.gz and b/metadata/md5-cache/mail-filter/Manifest.gz differ diff --git a/metadata/md5-cache/mail-filter/rspamd-2.5 b/metadata/md5-cache/mail-filter/rspamd-2.5-r1 similarity index 76% rename from metadata/md5-cache/mail-filter/rspamd-2.5 rename to metadata/md5-cache/mail-filter/rspamd-2.5-r1 index 8746c52edeac..788674729f49 100644 --- a/metadata/md5-cache/mail-filter/rspamd-2.5 +++ b/metadata/md5-cache/mail-filter/rspamd-2.5-r1 @@ -1,14 +1,14 @@ BDEPEND=dev-util/ragel virtual/pkgconfig dev-util/ninja dev-util/cmake virtual/pkgconfig DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( sci-libs/openblas ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 dev-lua/lpeg[luajit] ) !jit? ( dev-lang/lua:* dev-lua/lpeg[-luajit] dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) +DEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( sci-libs/openblas ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 ) !jit? ( dev-lang/lua:* dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) DESCRIPTION=Rapid spam filtering system EAPI=7 HOMEPAGE=https://rspamd.com https://github.com/rspamd/rspamd IUSE=blas cpu_flags_x86_ssse3 jemalloc +jit libressl pcre2 KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 Boost-1.0 BSD BSD-1 BSD-2 CC0-1.0 LGPL-3 MIT public-domain unicode ZLIB -RDEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( sci-libs/openblas ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 dev-lua/lpeg[luajit] ) !jit? ( dev-lang/lua:* dev-lua/lpeg[-luajit] dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) virtual/tmpfiles +RDEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( sci-libs/openblas ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 ) !jit? ( dev-lang/lua:* dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) virtual/tmpfiles SLOT=0 SRC_URI=https://github.com/rspamd/rspamd/archive/2.5.tar.gz -> rspamd-2.5.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 systemd 69be00334d73f9f50261554b94be0879 tmpfiles 6170dc7770585fb3f16efdee789a3218 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=553a5123aaa4295900d4fac6bf64385b +_md5_=9c80450afe11d05c7eb5907589c55c87 diff --git a/metadata/md5-cache/mail-filter/rspamd-2.6-r1 b/metadata/md5-cache/mail-filter/rspamd-2.6-r2 similarity index 76% rename from metadata/md5-cache/mail-filter/rspamd-2.6-r1 rename to metadata/md5-cache/mail-filter/rspamd-2.6-r2 index 1be23efa6fda..600ec1ec9c51 100644 --- a/metadata/md5-cache/mail-filter/rspamd-2.6-r1 +++ b/metadata/md5-cache/mail-filter/rspamd-2.6-r2 @@ -1,14 +1,14 @@ BDEPEND=dev-util/ragel virtual/pkgconfig dev-util/ninja dev-util/cmake virtual/pkgconfig DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 dev-lua/lpeg[luajit] ) !jit? ( dev-lang/lua:* dev-lua/lpeg[-luajit] dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) +DEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 ) !jit? ( dev-lang/lua:* dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) DESCRIPTION=Rapid spam filtering system EAPI=7 HOMEPAGE=https://rspamd.com https://github.com/rspamd/rspamd IUSE=blas cpu_flags_x86_ssse3 jemalloc +jit libressl pcre2 KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 Boost-1.0 BSD BSD-1 BSD-2 CC0-1.0 LGPL-3 MIT public-domain unicode ZLIB -RDEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 dev-lua/lpeg[luajit] ) !jit? ( dev-lang/lua:* dev-lua/lpeg[-luajit] dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) virtual/tmpfiles +RDEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 ) !jit? ( dev-lang/lua:* dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) virtual/tmpfiles SLOT=0 SRC_URI=https://github.com/rspamd/rspamd/archive/2.6.tar.gz -> rspamd-2.6.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 systemd 69be00334d73f9f50261554b94be0879 tmpfiles 6170dc7770585fb3f16efdee789a3218 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b7d90be4babfea912ea37c3aeb605adf +_md5_=e2a9006cf43b47eddc9554c717a19981 diff --git a/metadata/md5-cache/mail-filter/rspamd-9999 b/metadata/md5-cache/mail-filter/rspamd-9999 index b64fa978d3c6..0ce876fa0ea8 100644 --- a/metadata/md5-cache/mail-filter/rspamd-9999 +++ b/metadata/md5-cache/mail-filter/rspamd-9999 @@ -1,13 +1,13 @@ BDEPEND=dev-util/ragel virtual/pkgconfig dev-util/ninja dev-util/cmake virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 dev-lua/lpeg[luajit] ) !jit? ( dev-lang/lua:* dev-lua/lpeg[-luajit] dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) +DEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 ) !jit? ( dev-lang/lua:* dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) DESCRIPTION=Rapid spam filtering system EAPI=7 HOMEPAGE=https://rspamd.com https://github.com/rspamd/rspamd IUSE=blas cpu_flags_x86_ssse3 jemalloc +jit libressl pcre2 LICENSE=Apache-2.0 Boost-1.0 BSD BSD-1 BSD-2 CC0-1.0 LGPL-3 MIT public-domain unicode ZLIB PROPERTIES=live -RDEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 dev-lua/lpeg[luajit] ) !jit? ( dev-lang/lua:* dev-lua/lpeg[-luajit] dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) virtual/tmpfiles +RDEPEND=acct-group/rspamd acct-user/rspamd app-arch/zstd dev-db/sqlite:3 dev-libs/glib:2 dev-libs/icu:= dev-libs/libev dev-libs/libsodium dev-libs/snowball-stemmer net-libs/libnsl sys-apps/file blas? ( virtual/blas virtual/lapack ) cpu_flags_x86_ssse3? ( dev-libs/hyperscan ) jemalloc? ( dev-libs/jemalloc ) jit? ( dev-lang/luajit:2 ) !jit? ( dev-lang/lua:* dev-lua/LuaBitOp ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) pcre2? ( dev-libs/libpcre2[jit=] ) !pcre2? ( dev-libs/libpcre[jit=] ) virtual/tmpfiles SLOT=0 _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 systemd 69be00334d73f9f50261554b94be0879 tmpfiles 6170dc7770585fb3f16efdee789a3218 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b7d90be4babfea912ea37c3aeb605adf +_md5_=ebe6b54e4168e625a69a47b0869da649 diff --git a/metadata/md5-cache/media-gfx/Manifest.gz b/metadata/md5-cache/media-gfx/Manifest.gz index 01dcbc9e9fe3..5018642efe40 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/imagemagick-6.9.11.41 b/metadata/md5-cache/media-gfx/imagemagick-6.9.11.41 new file mode 100644 index 000000000000..b3244d3d3d97 --- /dev/null +++ b/metadata/md5-cache/media-gfx/imagemagick-6.9.11.41 @@ -0,0 +1,15 @@ +DEFINED_PHASES=configure install postinst prepare test +DEPEND=dev-libs/libltdl:0 bzip2? ( app-arch/bzip2 ) corefonts? ( media-fonts/corefonts ) djvu? ( app-text/djvu ) fftw? ( sci-libs/fftw:3.0 ) fontconfig? ( media-libs/fontconfig ) fpx? ( >=media-libs/libfpx-1.3.0-r1 ) graphviz? ( media-gfx/graphviz ) heif? ( media-libs/libheif:= ) jbig? ( >=media-libs/jbigkit-2:= ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) lcms? ( media-libs/lcms:2= ) lqr? ( media-libs/liblqr ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:0= ) pango? ( x11-libs/pango ) perl? ( >=dev-lang/perl-5.8.8:0= ) png? ( media-libs/libpng:0= ) postscript? ( app-text/ghostscript-gpl ) raw? ( media-libs/libraw:= ) svg? ( gnome-base/librsvg media-gfx/potrace ) tiff? ( media-libs/tiff:0= ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) webp? ( media-libs/libwebp:0= ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt ) xml? ( dev-libs/libxml2:= ) lzma? ( app-arch/xz-utils ) zlib? ( sys-libs/zlib:= ) !media-gfx/graphicsmagick[imagemagick] virtual/pkgconfig X? ( x11-base/xorg-proto ) >=app-portage/elt-patches-20170815 +DESCRIPTION=A collection of tools and libraries for many image formats +EAPI=6 +HOMEPAGE=https://www.imagemagick.org/ +IUSE=bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=imagemagick +RDEPEND=dev-libs/libltdl:0 bzip2? ( app-arch/bzip2 ) corefonts? ( media-fonts/corefonts ) djvu? ( app-text/djvu ) fftw? ( sci-libs/fftw:3.0 ) fontconfig? ( media-libs/fontconfig ) fpx? ( >=media-libs/libfpx-1.3.0-r1 ) graphviz? ( media-gfx/graphviz ) heif? ( media-libs/libheif:= ) jbig? ( >=media-libs/jbigkit-2:= ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) lcms? ( media-libs/lcms:2= ) lqr? ( media-libs/liblqr ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:0= ) pango? ( x11-libs/pango ) perl? ( >=dev-lang/perl-5.8.8:0= ) png? ( media-libs/libpng:0= ) postscript? ( app-text/ghostscript-gpl ) raw? ( media-libs/libraw:= ) svg? ( gnome-base/librsvg media-gfx/potrace ) tiff? ( media-libs/tiff:0= ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) webp? ( media-libs/libwebp:0= ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt ) xml? ( dev-libs/libxml2:= ) lzma? ( app-arch/xz-utils ) zlib? ( sys-libs/zlib:= ) +REQUIRED_USE=corefonts? ( truetype ) test? ( corefonts ) +RESTRICT=!test? ( test ) +SLOT=0/6.9.11 +SRC_URI=mirror://imagemagick/ImageMagick-6.9.11-41.tar.xz +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=b5a9b49039402c929eafafd549b05b38 diff --git a/metadata/md5-cache/media-gfx/imagemagick-7.0.10.41 b/metadata/md5-cache/media-gfx/imagemagick-7.0.10.41 new file mode 100644 index 000000000000..5750f9036822 --- /dev/null +++ b/metadata/md5-cache/media-gfx/imagemagick-7.0.10.41 @@ -0,0 +1,16 @@ +BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 +DEFINED_PHASES=configure install postinst prepare test +DEPEND=dev-libs/libltdl:0 bzip2? ( app-arch/bzip2 ) corefonts? ( media-fonts/corefonts ) djvu? ( app-text/djvu ) fftw? ( sci-libs/fftw:3.0 ) fontconfig? ( media-libs/fontconfig ) fpx? ( >=media-libs/libfpx-1.3.0-r1 ) graphviz? ( media-gfx/graphviz ) heif? ( media-libs/libheif:= ) jbig? ( >=media-libs/jbigkit-2:= ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) lcms? ( media-libs/lcms:2= ) lqr? ( media-libs/liblqr ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:0= ) pango? ( x11-libs/pango ) perl? ( >=dev-lang/perl-5.8.8:0= ) png? ( media-libs/libpng:0= ) postscript? ( app-text/ghostscript-gpl ) raw? ( media-libs/libraw:= ) svg? ( gnome-base/librsvg media-gfx/potrace ) tiff? ( media-libs/tiff:0= ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) webp? ( media-libs/libwebp:0= ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt ) xml? ( dev-libs/libxml2:= ) lzma? ( app-arch/xz-utils ) zlib? ( sys-libs/zlib:= ) !media-gfx/graphicsmagick[imagemagick] X? ( x11-base/xorg-proto ) +DESCRIPTION=A collection of tools and libraries for many image formats +EAPI=7 +HOMEPAGE=https://www.imagemagick.org/ +IUSE=bzip2 corefonts +cxx djvu fftw fontconfig fpx graphviz hdri heif jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=imagemagick +RDEPEND=dev-libs/libltdl:0 bzip2? ( app-arch/bzip2 ) corefonts? ( media-fonts/corefonts ) djvu? ( app-text/djvu ) fftw? ( sci-libs/fftw:3.0 ) fontconfig? ( media-libs/fontconfig ) fpx? ( >=media-libs/libfpx-1.3.0-r1 ) graphviz? ( media-gfx/graphviz ) heif? ( media-libs/libheif:= ) jbig? ( >=media-libs/jbigkit-2:= ) jpeg? ( virtual/jpeg:0 ) jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 ) lcms? ( media-libs/lcms:2= ) lqr? ( media-libs/liblqr ) opencl? ( virtual/opencl ) openexr? ( media-libs/openexr:0= ) pango? ( x11-libs/pango ) perl? ( >=dev-lang/perl-5.8.8:0= ) png? ( media-libs/libpng:0= ) postscript? ( app-text/ghostscript-gpl ) raw? ( media-libs/libraw:= ) svg? ( gnome-base/librsvg media-gfx/potrace ) tiff? ( media-libs/tiff:0= ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) webp? ( media-libs/libwebp:0= ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libICE x11-libs/libSM x11-libs/libXext x11-libs/libXt ) xml? ( dev-libs/libxml2:= ) lzma? ( app-arch/xz-utils ) zlib? ( sys-libs/zlib:= ) +REQUIRED_USE=corefonts? ( truetype ) svg? ( xml ) test? ( corefonts ) +RESTRICT=!test? ( test ) +SLOT=0/7.0.10 +SRC_URI=mirror://imagemagick/ImageMagick-7.0.10-41.tar.xz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=967c8dd02fb7602a37a3a01c60fe9fe6 diff --git a/metadata/md5-cache/media-gfx/iscan-3.62.0 b/metadata/md5-cache/media-gfx/iscan-3.62.0 deleted file mode 100644 index dd1ceed73d0a..000000000000 --- a/metadata/md5-cache/media-gfx/iscan-3.62.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig -DEFINED_PHASES=configure install postinst postrm prepare -DEPEND=dev-libs/boost:= media-gfx/sane-backends media-libs/tiff virtual/jpeg virtual/libusb:1 graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) gui? ( dev-cpp/gtkmm:2.4 ) -DESCRIPTION=EPSON Image Scan v3 for Linux -EAPI=7 -HOMEPAGE=https://support.epson.net/linux/en/imagescanv3.php https://gitlab.com/utsushi/utsushi -IUSE=graphicsmagick gui -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3+ -RDEPEND=dev-libs/boost:= media-gfx/sane-backends media-libs/tiff virtual/jpeg virtual/libusb:1 graphicsmagick? ( media-gfx/graphicsmagick:=[cxx] ) !graphicsmagick? ( media-gfx/imagemagick:=[cxx] ) gui? ( dev-cpp/gtkmm:2.4 ) -SLOT=0 -SRC_URI=https://support.epson.net/linux/src/scanner/imagescanv3/common/imagescan_3.62.0.orig.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c3d66a23d4e0ec23a9b2a94afcad92fa diff --git a/metadata/md5-cache/media-gfx/openscad-2019.05-r2 b/metadata/md5-cache/media-gfx/openscad-2019.05-r2 deleted file mode 100644 index 8aa1d2abadef..000000000000 --- a/metadata/md5-cache/media-gfx/openscad-2019.05-r2 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=sys-devel/bison sys-devel/flex virtual/pkgconfig -DEFINED_PHASES=compile configure install postinst postrm preinst prepare -DEPEND=dev-cpp/eigen:3 dev-libs/boost:= dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/gmp:0= dev-libs/hidapi dev-libs/libspnav dev-libs/libzip:= dev-libs/mpfr:0= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[-gles2-only] dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 media-gfx/opencsg media-libs/fontconfig media-libs/freetype >=media-libs/glew-2.0.0:0= media-libs/harfbuzz:= sci-mathematics/cgal:= >=x11-libs/qscintilla-2.10.3:= emacs? ( >=app-editors/emacs-23.1:* ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=The Programmers Solid 3D CAD Modeller -EAPI=7 -HOMEPAGE=https://www.openscad.org/ -IUSE=emacs -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=dev-cpp/eigen:3 dev-libs/boost:= dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/gmp:0= dev-libs/hidapi dev-libs/libspnav dev-libs/libzip:= dev-libs/mpfr:0= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[-gles2-only] dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 media-gfx/opencsg media-libs/fontconfig media-libs/freetype >=media-libs/glew-2.0.0:0= media-libs/harfbuzz:= sci-mathematics/cgal:= >=x11-libs/qscintilla-2.10.3:= emacs? ( >=app-editors/emacs-23.1:* ) -SLOT=0 -SRC_URI=https://github.com/openscad/openscad/releases/download/openscad-2019.05/openscad-2019.05.src.tar.gz -> openscad-2019.05.tar.gz -_eclasses_=elisp-common 34cc2b6f6d8914019a353fe39cff43ce estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=63b14c58228e8e17d3d9807b9c45b5e3 diff --git a/metadata/md5-cache/media-gfx/openscad-2019.05-r3 b/metadata/md5-cache/media-gfx/openscad-2019.05-r3 index fa88b45bc72c..09a499c83cba 100644 --- a/metadata/md5-cache/media-gfx/openscad-2019.05-r3 +++ b/metadata/md5-cache/media-gfx/openscad-2019.05-r3 @@ -5,11 +5,11 @@ DESCRIPTION=The Programmers Solid 3D CAD Modeller EAPI=7 HOMEPAGE=https://www.openscad.org/ IUSE=ccache emacs -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=GPL-2 RDEPEND=dev-cpp/eigen:3 dev-libs/boost:= dev-libs/double-conversion:= dev-libs/glib:2 dev-libs/gmp:0= dev-libs/hidapi dev-libs/libspnav dev-libs/libzip:= dev-libs/mpfr:0= dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5[-gles2-only] dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtwidgets:5 media-gfx/opencsg media-libs/fontconfig media-libs/freetype >=media-libs/glew-2.0.0:0= media-libs/harfbuzz:= media-libs/lib3mf sci-mathematics/cgal:= >=x11-libs/qscintilla-2.10.3:= emacs? ( >=app-editors/emacs-23.1:* ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/openscad/openscad/releases/download/openscad-2019.05/openscad-2019.05.src.tar.gz -> openscad-2019.05.tar.gz _eclasses_=elisp-common 34cc2b6f6d8914019a353fe39cff43ce estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=0e74b1d02dde450c2c700fa5278d892e +_md5_=684050b0ac2e9140964c7e82a5264d0e diff --git a/metadata/md5-cache/media-gfx/xdot-1.2 b/metadata/md5-cache/media-gfx/xdot-1.2 new file mode 100644 index 000000000000..02da70e7334f --- /dev/null +++ b/metadata/md5-cache/media-gfx/xdot-1.2 @@ -0,0 +1,15 @@ +BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/pycairo[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pygobject:3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] media-gfx/graphviz +DESCRIPTION=Interactive viewer for Graphviz dot files +EAPI=7 +HOMEPAGE=https://github.com/jrfonseca/xdot.py +IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 +LICENSE=LGPL-2+ +RDEPEND=dev-python/pycairo[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pygobject:3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] media-gfx/graphviz python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +SLOT=0 +SRC_URI=https://github.com/jrfonseca/xdot.py/archive/1.2.tar.gz -> xdot-1.2.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=7c1884a7711b062816ce28103a75a6f1 diff --git a/metadata/md5-cache/media-gfx/xdot-9999 b/metadata/md5-cache/media-gfx/xdot-9999 index a27ee6e8e308..1f7f0db4beaf 100644 --- a/metadata/md5-cache/media-gfx/xdot-9999 +++ b/metadata/md5-cache/media-gfx/xdot-9999 @@ -1,14 +1,14 @@ BDEPEND=>=dev-vcs/git-1.8.2.1[curl] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=dev-python/pycairo[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pygobject:3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] media-gfx/graphviz +DEPEND=dev-python/pycairo[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pygobject:3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] media-gfx/graphviz DESCRIPTION=Interactive viewer for Graphviz dot files EAPI=7 HOMEPAGE=https://github.com/jrfonseca/xdot.py IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 LICENSE=LGPL-2+ PROPERTIES=live -RDEPEND=dev-python/pycairo[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pygobject:3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/setuptools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] media-gfx/graphviz python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +RDEPEND=dev-python/pycairo[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pygobject:3[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] media-gfx/graphviz python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) SLOT=0 _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e git-r3 3e7ec3d6619213460c85e2aa48398441 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=2f801afb7bed4db4b60aee5b9914bcb2 +_md5_=7c1884a7711b062816ce28103a75a6f1 diff --git a/metadata/md5-cache/media-libs/Manifest.gz b/metadata/md5-cache/media-libs/Manifest.gz index 0e5780bbf0ab..99ba1c5a3851 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/glm-0.9.9.8-r1 b/metadata/md5-cache/media-libs/glm-0.9.9.8-r1 index f2d10456eaa8..09a44cd9d52b 100644 --- a/metadata/md5-cache/media-libs/glm-0.9.9.8-r1 +++ b/metadata/md5-cache/media-libs/glm-0.9.9.8-r1 @@ -4,10 +4,10 @@ DESCRIPTION=OpenGL Mathematics EAPI=7 HOMEPAGE=http://glm.g-truc.net/ IUSE=test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx cpu_flags_x86_avx2 -KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=|| ( HappyBunny MIT ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/g-truc/glm/archive/0.9.9.8.tar.gz -> glm-0.9.9.8.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=dc58e9870ba5187e7aed112d8411ead8 +_md5_=becfdc9c02d91c01c71f99d8d57a4ea7 diff --git a/metadata/md5-cache/media-libs/harfbuzz-2.6.5 b/metadata/md5-cache/media-libs/harfbuzz-2.6.5 deleted file mode 100644 index 475302522463..000000000000 --- a/metadata/md5-cache/media-libs/harfbuzz-2.6.5 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-util/gtk-doc-am virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=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(-)?] ) test? ( || ( dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) ) -DESCRIPTION=An OpenType text shaping engine -EAPI=7 -HOMEPAGE=https://www.freedesktop.org/wiki/Software/HarfBuzz -IUSE=+cairo debug +glib +graphite icu +introspection static-libs 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 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-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 ) -RESTRICT=!test? ( test ) -SLOT=0/0.9.18 -SRC_URI=https://github.com/harfbuzz/harfbuzz/releases/download/2.6.5/harfbuzz-2.6.5.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=81c1e5fbbe0bd4ff3ac5a74ef616a9aa diff --git a/metadata/md5-cache/media-libs/harfbuzz-2.6.8 b/metadata/md5-cache/media-libs/harfbuzz-2.6.8 deleted file mode 100644 index 81a6b0f0f785..000000000000 --- a/metadata/md5-cache/media-libs/harfbuzz-2.6.8 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-util/gtk-doc-am virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=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(-)?] ) test? ( || ( dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) ) -DESCRIPTION=An OpenType text shaping engine -EAPI=7 -HOMEPAGE=https://www.freedesktop.org/wiki/Software/HarfBuzz -IUSE=+cairo debug +glib +graphite icu +introspection static-libs 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 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-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 ) -RESTRICT=!test? ( test ) -SLOT=0/0.9.18 -SRC_URI=https://github.com/harfbuzz/harfbuzz/releases/download/2.6.8/harfbuzz-2.6.8.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1af36e669d6ce59569af748b7d6d7c3a diff --git a/metadata/md5-cache/media-libs/harfbuzz-2.7.1 b/metadata/md5-cache/media-libs/harfbuzz-2.7.1 deleted file mode 100644 index f512e48aab08..000000000000 --- a/metadata/md5-cache/media-libs/harfbuzz-2.7.1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=virtual/pkgconfig doc? ( dev-util/gtk-doc ) introspection? ( dev-util/glib-utils ) >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 -DEFINED_PHASES=compile configure install prepare setup test -DEPEND=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(-)?] ) >=dev-libs/gobject-introspection-common-1.34 test? ( || ( dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) ) -DESCRIPTION=An OpenType text shaping engine -EAPI=7 -HOMEPAGE=https://www.freedesktop.org/wiki/Software/HarfBuzz -IUSE=+cairo debug doc +glib +graphite icu +introspection static-libs 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 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-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 ) -RESTRICT=!test? ( test ) -SLOT=0/0.9.18 -SRC_URI=https://github.com/harfbuzz/harfbuzz/archive/2.7.1.tar.gz -> harfbuzz-2.7.1.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e meson 71d293a701d6362387e1214da368c848 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=abd6eb3142b68500b9000be57bb43fc0 diff --git a/metadata/md5-cache/media-libs/lib3mf-1.8.1 b/metadata/md5-cache/media-libs/lib3mf-1.8.1 index e70dc871a9f0..0a6e46d7e4a0 100644 --- a/metadata/md5-cache/media-libs/lib3mf-1.8.1 +++ b/metadata/md5-cache/media-libs/lib3mf-1.8.1 @@ -5,11 +5,11 @@ DESCRIPTION=Implementation of the 3D Manufacturing Format file standard EAPI=7 HOMEPAGE=https://3mf.io/ IUSE=doc test -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=BSD RDEPEND=dev-libs/libzip:= sys-apps/util-linux sys-libs/zlib RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/3MFConsortium/lib3mf/archive/v1.8.1.tar.gz -> lib3mf-1.8.1.tar.gz _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=b628c9711651857c9a41107c8febe700 +_md5_=8688e5fd426fcd1f7a408d6079e90ec1 diff --git a/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r1 b/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r1 index d6e2e864987c..3b23da6be861 100644 --- a/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r1 +++ b/metadata/md5-cache/media-libs/libcaca-0.99_beta19-r1 @@ -10,5 +10,5 @@ RDEPEND=imlib? ( >=media-libs/imlib2-1.4.6-r2[abi_x86_32(-)?,abi_x86_64(-)?,abi_ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://libcaca.zoy.org/files/libcaca/libcaca-0.99.beta19.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa mono-env 1f24c032c78290b0d9a07d5b343051a7 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=1a0689160f15eb8ba5cbf37a66569690 diff --git a/metadata/md5-cache/media-libs/libdvdnav-6.1.0 b/metadata/md5-cache/media-libs/libdvdnav-6.1.0 index 3e317c8a77c4..2b71d5f8e42e 100644 --- a/metadata/md5-cache/media-libs/libdvdnav-6.1.0 +++ b/metadata/md5-cache/media-libs/libdvdnav-6.1.0 @@ -5,10 +5,10 @@ DESCRIPTION=Library for DVD navigation tools EAPI=7 HOMEPAGE=https://www.videolan.org/developers/libdvdnav.html IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=>=media-libs/libdvdread-6.0.0:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=https://downloads.videolan.org/pub/videolan/libdvdnav/6.1.0/libdvdnav-6.1.0.tar.bz2 _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=307833343411fe0d8281559e2afd8e28 +_md5_=868a73de0d74f0c60a65ca77cc964219 diff --git a/metadata/md5-cache/media-libs/libexif-0.6.22_p20201105 b/metadata/md5-cache/media-libs/libexif-0.6.22_p20201105 index a74da82f1c9a..4d1cc34ff9c0 100644 --- a/metadata/md5-cache/media-libs/libexif-0.6.22_p20201105 +++ b/metadata/md5-cache/media-libs/libexif-0.6.22_p20201105 @@ -5,10 +5,10 @@ DESCRIPTION=Library for parsing, editing, and saving EXIF data EAPI=7 HOMEPAGE=https://libexif.github.io/ https://github.com/libexif/libexif IUSE=doc nls static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=LGPL-2+ RDEPEND=nls? ( virtual/libintl ) SLOT=0 SRC_URI=https://github.com/libexif/libexif/archive/9266d14b5ca4e29b970fa03272318e5f99386e06.tar.gz -> libexif-0.6.22_p20201105.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=9f14551e3c101892ad58728e568f75d3 +_md5_=d6f02587757dfcff9d3f0c7e7b37769c diff --git a/metadata/md5-cache/media-libs/sdl2-gfx-1.0.4 b/metadata/md5-cache/media-libs/sdl2-gfx-1.0.4 index 1508d7976aa9..2c048c441fcf 100644 --- a/metadata/md5-cache/media-libs/sdl2-gfx-1.0.4 +++ b/metadata/md5-cache/media-libs/sdl2-gfx-1.0.4 @@ -4,10 +4,10 @@ DESCRIPTION=Graphics drawing primitives library for SDL2 EAPI=6 HOMEPAGE=http://www.ferzkopp.net/joomla/content/view/19/14/ IUSE=doc cpu_flags_x86_mmx static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=amd64 x86 +KEYWORDS=amd64 ~ppc64 x86 LICENSE=ZLIB RDEPEND=>=media-libs/libsdl2-2.0.1-r1[video,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] SLOT=0 SRC_URI=http://www.ferzkopp.net/Software/SDL2_gfx/SDL2_gfx-1.0.4.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=def06cc371b303ab041192009ea12238 +_md5_=8970e2b3ee5ecd816913c4e29b83a9c0 diff --git a/metadata/md5-cache/media-libs/webvfx-1.2.0 b/metadata/md5-cache/media-libs/webvfx-1.2.0 deleted file mode 100644 index 8c0e6b097512..000000000000 --- a/metadata/md5-cache/media-libs/webvfx-1.2.0 +++ /dev/null @@ -1,14 +0,0 @@ -BDEPEND=doc? ( app-doc/doxygen ) -DEFINED_PHASES=compile configure install prepare -DEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtquickcontrols:5[widgets] dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 >=media-libs/mlt-6.20.0 virtual/opengl dev-qt/qtnetwork:5 -DESCRIPTION=Video effects library based on web technologies -EAPI=7 -HOMEPAGE=https://github.com/mltframework/webvfx/ -IUSE=doc -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtquickcontrols:5[widgets] dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 >=media-libs/mlt-6.20.0 virtual/opengl -SLOT=0 -SRC_URI=https://github.com/mltframework/webvfx/releases/download/1.2.0/webvfx-1.2.0.txz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=523868a4f424cdc51f6ddb15be9333c0 diff --git a/metadata/md5-cache/media-plugins/Manifest.gz b/metadata/md5-cache/media-plugins/Manifest.gz index 10dc377debd9..1f5426fdfc61 100644 Binary files a/metadata/md5-cache/media-plugins/Manifest.gz and b/metadata/md5-cache/media-plugins/Manifest.gz differ diff --git a/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.2.0 b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.2.0 new file mode 100644 index 000000000000..ef795718e4af --- /dev/null +++ b/metadata/md5-cache/media-plugins/kodi-pvr-mythtv-7.2.0 @@ -0,0 +1,13 @@ +BDEPEND=dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DEPEND=sys-libs/zlib =media-tv/kodi-19* +DESCRIPTION=MythTV PVR for Kodi +EAPI=7 +HOMEPAGE=https://github.com/janbar/pvr.mythtv +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=sys-libs/zlib =media-tv/kodi-19* +SLOT=0 +SRC_URI=https://github.com/janbar/pvr.mythtv/archive/7.2.0-Matrix.tar.gz -> kodi-pvr-mythtv-7.2.0.tar.gz +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 kodi-addon 1be83fd24fef6d1c905c588b9a2c22de l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=88349025c79c8158983c04bfd55229ab diff --git a/metadata/md5-cache/media-sound/Manifest.gz b/metadata/md5-cache/media-sound/Manifest.gz index a936e7da57f0..267cb94e97a6 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/upmpdcli-1.5.0 b/metadata/md5-cache/media-sound/upmpdcli-1.5.0 new file mode 100644 index 000000000000..6d0b49a27441 --- /dev/null +++ b/metadata/md5-cache/media-sound/upmpdcli-1.5.0 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=install postinst +DEPEND=dev-libs/jsoncpp media-libs/libmpdclient net-libs/libmicrohttpd >=net-libs/libupnpp-0.19.0 +DESCRIPTION=UPnP Media Renderer front-end for MPD, the Music Player Daemon +EAPI=7 +HOMEPAGE=https://www.lesbonscomptes.com/upmpdcli/index.html +IUSE=thirdparty +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=dev-libs/jsoncpp media-libs/libmpdclient net-libs/libmicrohttpd >=net-libs/libupnpp-0.19.0 acct-group/upmpdcli acct-user/upmpdcli app-misc/recoll thirdparty? ( dev-python/requests ) +SLOT=0 +SRC_URI=https://www.lesbonscomptes.com/upmpdcli/downloads/upmpdcli-1.5.0.tar.gz +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=3dcbae6d8f75ad03e29ce6f98c8adb4d diff --git a/metadata/md5-cache/media-sound/upmpdcli-1.5.0-r1 b/metadata/md5-cache/media-sound/upmpdcli-1.5.0-r1 new file mode 100644 index 000000000000..262e56db2859 --- /dev/null +++ b/metadata/md5-cache/media-sound/upmpdcli-1.5.0-r1 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=install postinst +DEPEND=dev-libs/jsoncpp media-libs/libmpdclient net-libs/libmicrohttpd >=net-libs/libupnpp-0.20.0-r1 +DESCRIPTION=UPnP Media Renderer front-end for MPD, the Music Player Daemon +EAPI=7 +HOMEPAGE=https://www.lesbonscomptes.com/upmpdcli/index.html +IUSE=thirdparty +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/jsoncpp media-libs/libmpdclient net-libs/libmicrohttpd >=net-libs/libupnpp-0.20.0-r1 acct-group/upmpdcli acct-user/upmpdcli app-misc/recoll thirdparty? ( dev-python/requests ) +SLOT=0 +SRC_URI=https://www.lesbonscomptes.com/upmpdcli/downloads/upmpdcli-1.5.0.tar.gz +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=fc4fdda68e61ccd0a15e6d8e500bac20 diff --git a/metadata/md5-cache/media-sound/xmms2-0.8_p20161122-r8 b/metadata/md5-cache/media-sound/xmms2-0.8_p20161122-r8 index 9ace1d64a19d..243447049622 100644 --- a/metadata/md5-cache/media-sound/xmms2-0.8_p20161122-r8 +++ b/metadata/md5-cache/media-sound/xmms2-0.8_p20161122-r8 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=server? ( >=dev-db/sqlite-3.3.4 aac? ( >=media-libs/faad2-2.0 ) airplay? ( dev-libs/openssl:0= ) alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) cdda? ( dev-libs/libcdio-paranoia >=media-libs/libdiscid-0.1.1 >=media-sound/cdparanoia-3.9.8 ) curl? ( >=net-misc/curl-7.15.1 ) ffmpeg? ( media-video/ffmpeg ) flac? ( media-libs/flac ) fluidsynth? ( media-sound/fluidsynth ) ices? ( media-libs/libogg media-libs/libshout media-libs/libvorbis ) jack? ( virtual/jack ) mac? ( media-sound/mac ) mms? ( media-video/ffmpeg >=media-libs/libmms-0.3 ) modplug? ( media-libs/libmodplug ) mad? ( media-libs/libmad ) mp3? ( >=media-sound/mpg123-1.5.1 ) musepack? ( media-sound/musepack-tools ) ofa? ( media-libs/libofa ) opus? ( media-libs/opus media-libs/opusfile ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-4.2 ) sid? ( media-sound/sidplay media-libs/resid ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/libogg ) vorbis? ( media-libs/libvorbis ) vocoder? ( sci-libs/fftw:3.0= media-libs/libsamplerate ) wavpack? ( media-sound/wavpack ) xml? ( dev-libs/libxml2 ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) ) >=dev-libs/glib-2.12.9 cxx? ( >=dev-libs/boost-1.32 ) perl? ( >=dev-lang/perl-5.8.8 ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) dev-lang/python virtual/pkgconfig perl? ( dev-perl/Module-Build virtual/perl-Module-Metadata ) python? ( >=dev-python/cython-0.15.1 ) test? ( dev-util/cunit valgrind? ( dev-util/valgrind ) ) +DEPEND=server? ( >=dev-db/sqlite-3.3.4 aac? ( >=media-libs/faad2-2.0 ) airplay? ( dev-libs/openssl:0= ) alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) cdda? ( dev-libs/libcdio-paranoia >=media-libs/libdiscid-0.1.1 >=media-sound/cdparanoia-3.9.8 ) curl? ( >=net-misc/curl-7.15.1 ) ffmpeg? ( media-video/ffmpeg ) flac? ( media-libs/flac ) fluidsynth? ( media-sound/fluidsynth ) ices? ( media-libs/libogg media-libs/libshout media-libs/libvorbis ) jack? ( virtual/jack ) mac? ( media-sound/mac ) mms? ( media-video/ffmpeg >=media-libs/libmms-0.3 ) modplug? ( media-libs/libmodplug ) mad? ( media-libs/libmad ) mp3? ( >=media-sound/mpg123-1.5.1 ) musepack? ( media-sound/musepack-tools ) ofa? ( media-libs/libofa ) opus? ( media-libs/opus media-libs/opusfile ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-4.2 ) sid? ( media-sound/sidplay media-libs/resid ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/libogg ) vorbis? ( media-libs/libvorbis ) vocoder? ( sci-libs/fftw:3.0= media-libs/libsamplerate ) wavpack? ( media-sound/wavpack ) xml? ( dev-libs/libxml2 ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) ) >=dev-libs/glib-2.12.9 cxx? ( >=dev-libs/boost-1.32 ) perl? ( >=dev-lang/perl-5.8.8 ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) dev-lang/python virtual/pkgconfig perl? ( dev-perl/Module-Build virtual/perl-Module-Metadata ) python? ( >=dev-python/cython-0.15.1 ) test? ( dev-util/cunit valgrind? ( dev-util/valgrind ) ) DESCRIPTION=X(cross)platform Music Multiplexing System. Next generation of the XMMS player EAPI=7 HOMEPAGE=https://xmms2.org/wiki/Main_Page IUSE=aac airplay +alsa ao asf cdda curl cxx ffmpeg flac fluidsynth ices jack mac mlib-update mms +mad modplug mp3 mp4 musepack ofa opus oss perl phonehome pulseaudio python ruby samba +server sid sndfile speex test valgrind +vorbis vocoder wavpack xml zeroconf python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 KEYWORDS=~alpha amd64 ~arm ppc x86 LICENSE=GPL-2 LGPL-2.1 -RDEPEND=server? ( >=dev-db/sqlite-3.3.4 aac? ( >=media-libs/faad2-2.0 ) airplay? ( dev-libs/openssl:0= ) alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) cdda? ( dev-libs/libcdio-paranoia >=media-libs/libdiscid-0.1.1 >=media-sound/cdparanoia-3.9.8 ) curl? ( >=net-misc/curl-7.15.1 ) ffmpeg? ( media-video/ffmpeg ) flac? ( media-libs/flac ) fluidsynth? ( media-sound/fluidsynth ) ices? ( media-libs/libogg media-libs/libshout media-libs/libvorbis ) jack? ( virtual/jack ) mac? ( media-sound/mac ) mms? ( media-video/ffmpeg >=media-libs/libmms-0.3 ) modplug? ( media-libs/libmodplug ) mad? ( media-libs/libmad ) mp3? ( >=media-sound/mpg123-1.5.1 ) musepack? ( media-sound/musepack-tools ) ofa? ( media-libs/libofa ) opus? ( media-libs/opus media-libs/opusfile ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-4.2 ) sid? ( media-sound/sidplay media-libs/resid ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/libogg ) vorbis? ( media-libs/libvorbis ) vocoder? ( sci-libs/fftw:3.0= media-libs/libsamplerate ) wavpack? ( media-sound/wavpack ) xml? ( dev-libs/libxml2 ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) ) >=dev-libs/glib-2.12.9 cxx? ( >=dev-libs/boost-1.32 ) perl? ( >=dev-lang/perl-5.8.8 ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) +RDEPEND=server? ( >=dev-db/sqlite-3.3.4 aac? ( >=media-libs/faad2-2.0 ) airplay? ( dev-libs/openssl:0= ) alsa? ( media-libs/alsa-lib ) ao? ( media-libs/libao ) cdda? ( dev-libs/libcdio-paranoia >=media-libs/libdiscid-0.1.1 >=media-sound/cdparanoia-3.9.8 ) curl? ( >=net-misc/curl-7.15.1 ) ffmpeg? ( media-video/ffmpeg ) flac? ( media-libs/flac ) fluidsynth? ( media-sound/fluidsynth ) ices? ( media-libs/libogg media-libs/libshout media-libs/libvorbis ) jack? ( virtual/jack ) mac? ( media-sound/mac ) mms? ( media-video/ffmpeg >=media-libs/libmms-0.3 ) modplug? ( media-libs/libmodplug ) mad? ( media-libs/libmad ) mp3? ( >=media-sound/mpg123-1.5.1 ) musepack? ( media-sound/musepack-tools ) ofa? ( media-libs/libofa ) opus? ( media-libs/opus media-libs/opusfile ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-4.2 ) sid? ( media-sound/sidplay media-libs/resid ) sndfile? ( media-libs/libsndfile ) speex? ( media-libs/speex media-libs/libogg ) vorbis? ( media-libs/libvorbis ) vocoder? ( sci-libs/fftw:3.0= media-libs/libsamplerate ) wavpack? ( media-sound/wavpack ) xml? ( dev-libs/libxml2 ) zeroconf? ( net-dns/avahi[mdnsresponder-compat] ) ) >=dev-libs/glib-2.12.9 cxx? ( >=dev-libs/boost-1.32 ) perl? ( >=dev-lang/perl-5.8.8 ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dev.gentoo.org/~slyfox/distfiles/xmms2-0.8DrO_o-949-gca15e830.tar.bz2 https://waf.io/waf-2.0.19.tar.bz2 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 perl-functions 6ec4c4d8fc8324200f1c14e8d158c59b python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7146a8c4de4ad2137f5e837bd0e7a87e diff --git a/metadata/md5-cache/media-tv/Manifest.gz b/metadata/md5-cache/media-tv/Manifest.gz index 430c3cbb8832..923dcae86027 100644 Binary files a/metadata/md5-cache/media-tv/Manifest.gz and b/metadata/md5-cache/media-tv/Manifest.gz differ diff --git a/metadata/md5-cache/media-tv/kodi-19.0_alpha3_p20201109 b/metadata/md5-cache/media-tv/kodi-19.0_alpha3_p20201109 deleted file mode 100644 index 2ccc954e86b5..000000000000 --- a/metadata/md5-cache/media-tv/kodi-19.0_alpha3_p20201109 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 dev-util/ninja dev-util/cmake -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.1.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite dev-libs/expat >=dev-libs/flatbuffers-1.11.0 >=dev-libs/fribidi-1.0.5 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/libinput-1.10.5 >=dev-libs/libxml2-2.9.4 >=dev-libs/lzo-2.04 >=dev-libs/spdlog-1.5.0:= dev-libs/tinyxml[stl] python_single_target_python3_6? ( dev-python/pillow[python_targets_python3_6(-)] dev-python/pycryptodome[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pillow[python_targets_python3_7(-)] dev-python/pycryptodome[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pillow[python_targets_python3_8(-)] dev-python/pycryptodome[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pillow[python_targets_python3_9(-)] dev-python/pycryptodome[python_targets_python3_9(-)] ) >=dev-libs/libcdio-2.1.0 >=dev-libs/libfmt-6.1.2 dev-libs/libfstrcmp gbm? ( media-libs/mesa[gbm] ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto media-libs/dav1d >=media-libs/fontconfig-2.13.1 >=media-libs/freetype-2.10.1 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.3.1:=[dav1d,encode,postproc] libressl? ( media-video/ffmpeg[libressl,-openssl] ) !libressl? ( media-video/ffmpeg[-libressl,openssl] ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.68.0[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) opengl? ( media-libs/glu ) !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= ) raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udf? ( >=dev-libs/libudfread-1.0.0 ) udev? ( virtual/udev ) vaapi? ( x11-libs/libva:= opengl? ( x11-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) vdpau? ( x11-libs/libva[vdpau] ) wayland? ( x11-libs/libva[wayland] ) X? ( x11-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( media-libs/mesa[X] x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm >=x11-libs/libxkbcommon-0.4.1 xslt? ( dev-libs/libxslt ) zeroconf? ( net-dns/avahi[dbus] ) app-arch/bzip2 app-arch/xz-utils dev-lang/swig dev-libs/crossguid dev-libs/rapidjson dev-util/cmake dev-util/gperf media-libs/giflib >=media-libs/libjpeg-turbo-2.0.4:= >=media-libs/libpng-1.6.26:0= test? ( >=dev-cpp/gtest-1.10.0 ) virtual/pkgconfig virtual/jre x86? ( dev-lang/nasm ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A free and open source media-player and entertainment hub -EAPI=7 -HOMEPAGE=https://kodi.tv/ https://kodi.wiki/ -IUSE=airplay alsa bluetooth bluray caps cec +css dbus dvd gbm gles lcms libressl libusb lirc mariadb mysql nfs +opengl pulseaudio raspberry-pi samba systemd +system-ffmpeg test udf udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf kernel_linux python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 -LICENSE=GPL-2+ -RDEPEND=python_single_target_python3_6? ( dev-lang/python:3.6[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[libressl?,sqlite,ssl] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) airplay? ( >=app-pda/libplist-2.0.0 net-libs/shairplay ) alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) bluetooth? ( net-wireless/bluez ) bluray? ( >=media-libs/libbluray-1.1.2 ) caps? ( sys-libs/libcap ) dbus? ( sys-apps/dbus ) dev-db/sqlite dev-libs/expat >=dev-libs/flatbuffers-1.11.0 >=dev-libs/fribidi-1.0.5 cec? ( >=dev-libs/libcec-4.0[raspberry-pi?] ) dev-libs/libpcre[cxx] >=dev-libs/libinput-1.10.5 >=dev-libs/libxml2-2.9.4 >=dev-libs/lzo-2.04 >=dev-libs/spdlog-1.5.0:= dev-libs/tinyxml[stl] python_single_target_python3_6? ( dev-python/pillow[python_targets_python3_6(-)] dev-python/pycryptodome[python_targets_python3_6(-)] ) python_single_target_python3_7? ( dev-python/pillow[python_targets_python3_7(-)] dev-python/pycryptodome[python_targets_python3_7(-)] ) python_single_target_python3_8? ( dev-python/pillow[python_targets_python3_8(-)] dev-python/pycryptodome[python_targets_python3_8(-)] ) python_single_target_python3_9? ( dev-python/pillow[python_targets_python3_9(-)] dev-python/pycryptodome[python_targets_python3_9(-)] ) >=dev-libs/libcdio-2.1.0 >=dev-libs/libfmt-6.1.2 dev-libs/libfstrcmp gbm? ( media-libs/mesa[gbm] ) gles? ( !raspberry-pi? ( media-libs/mesa[gles2] ) ) lcms? ( media-libs/lcms:2 ) libusb? ( virtual/libusb:1 ) virtual/ttf-fonts media-fonts/roboto media-libs/dav1d >=media-libs/fontconfig-2.13.1 >=media-libs/freetype-2.10.1 >=media-libs/libass-0.13.4 !raspberry-pi? ( media-libs/mesa[egl] ) >=media-libs/taglib-1.11.1 system-ffmpeg? ( >=media-video/ffmpeg-4.3.1:=[dav1d,encode,postproc] libressl? ( media-video/ffmpeg[libressl,-openssl] ) !libressl? ( media-video/ffmpeg[-libressl,openssl] ) ) mysql? ( dev-db/mysql-connector-c:= ) mariadb? ( dev-db/mariadb-connector-c:= ) >=net-misc/curl-7.68.0[http2] nfs? ( >=net-fs/libnfs-2.0.0:= ) opengl? ( media-libs/glu ) !libressl? ( >=dev-libs/openssl-1.0.2l:0= ) libressl? ( dev-libs/libressl:0= ) raspberry-pi? ( || ( media-libs/raspberrypi-userland media-libs/raspberrypi-userland-bin media-libs/mesa[egl,gles2,video_cards_vc4] ) ) pulseaudio? ( media-sound/pulseaudio ) samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) >=sys-libs/zlib-1.2.11 udf? ( >=dev-libs/libudfread-1.0.0 ) udev? ( virtual/udev ) vaapi? ( x11-libs/libva:= opengl? ( x11-libs/libva[opengl] ) system-ffmpeg? ( media-video/ffmpeg[vaapi] ) vdpau? ( x11-libs/libva[vdpau] ) wayland? ( x11-libs/libva[wayland] ) X? ( x11-libs/libva[X] ) ) virtual/libiconv vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) system-ffmpeg? ( media-video/ffmpeg[vdpau] ) ) wayland? ( >=dev-cpp/waylandpp-0.2.3:= media-libs/mesa[wayland] >=dev-libs/wayland-protocols-1.7 ) webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages(+)] ) X? ( media-libs/mesa[X] x11-libs/libX11 x11-libs/libXrandr x11-libs/libXrender system-ffmpeg? ( media-video/ffmpeg[X] ) ) x11-libs/libdrm >=x11-libs/libxkbcommon-0.4.1 xslt? ( dev-libs/libxslt ) zeroconf? ( net-dns/avahi[dbus] ) lirc? ( app-misc/lirc ) udisks? ( sys-fs/udisks:2 ) upower? ( sys-power/upower ) -REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) || ( gles opengl ) || ( gbm wayland X ) ?? ( mariadb mysql ) bluray? ( udf ) udev? ( !libusb ) udisks? ( dbus ) upower? ( dbus ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.3.1-Matrix-Alpha1-2.tar.gz -> ffmpeg-kodi-4.3.1-Matrix-Alpha1-2.tar.gz ) https://github.com/xbmc/xbmc/archive/5b06cdf3e64347085484435f2a4963e919edc8ec.tar.gz -> kodi-19.0_alpha3_p20201109.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a33f75ea8aa017293e681183d09f7ea8 diff --git a/metadata/md5-cache/media-tv/kodi-19.0_beta1 b/metadata/md5-cache/media-tv/kodi-19.0_beta1-r1 similarity index 99% rename from metadata/md5-cache/media-tv/kodi-19.0_beta1 rename to metadata/md5-cache/media-tv/kodi-19.0_beta1-r1 index c2a4ae137d4c..02c46beb9dbe 100644 --- a/metadata/md5-cache/media-tv/kodi-19.0_beta1 +++ b/metadata/md5-cache/media-tv/kodi-19.0_beta1-r1 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.3.1-Matrix-Beta1.tar.gz -> ffmpeg-kodi-4.3.1-Matrix-Beta1.tar.gz ) https://github.com/xbmc/xbmc/archive/19.0b1-Matrix.tar.gz -> kodi-19.0b1.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2c0afedf8de0522b34b121d93f683432 +_md5_=bbb64eed64adffa5b09f091a30b5fb01 diff --git a/metadata/md5-cache/media-tv/kodi-19.9999 b/metadata/md5-cache/media-tv/kodi-19.9999 index 587d34b5bf4e..e1acbcb20d3a 100644 --- a/metadata/md5-cache/media-tv/kodi-19.9999 +++ b/metadata/md5-cache/media-tv/kodi-19.9999 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.3.1-Matrix-Beta1.tar.gz -> ffmpeg-kodi-4.3.1-Matrix-Beta1.tar.gz ) _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2c0afedf8de0522b34b121d93f683432 +_md5_=bbb64eed64adffa5b09f091a30b5fb01 diff --git a/metadata/md5-cache/media-tv/kodi-9999 b/metadata/md5-cache/media-tv/kodi-9999 index 587d34b5bf4e..e1acbcb20d3a 100644 --- a/metadata/md5-cache/media-tv/kodi-9999 +++ b/metadata/md5-cache/media-tv/kodi-9999 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/xbmc/libdvdcss/archive/1.4.2-Leia-Beta-5.tar.gz -> libdvdcss-1.4.2-Leia-Beta-5.tar.gz https://github.com/xbmc/libdvdread/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdread-6.0.0-Leia-Alpha-3.tar.gz https://github.com/xbmc/libdvdnav/archive/6.0.0-Leia-Alpha-3.tar.gz -> libdvdnav-6.0.0-Leia-Alpha-3.tar.gz !system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/4.3.1-Matrix-Beta1.tar.gz -> ffmpeg-kodi-4.3.1-Matrix-Beta1.tar.gz ) _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=2c0afedf8de0522b34b121d93f683432 +_md5_=bbb64eed64adffa5b09f091a30b5fb01 diff --git a/metadata/md5-cache/media-video/Manifest.gz b/metadata/md5-cache/media-video/Manifest.gz index bd93f1879994..eb6d4e566754 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/mpv-0.32.0-r1 b/metadata/md5-cache/media-video/mpv-0.32.0-r2 similarity index 55% rename from metadata/md5-cache/media-video/mpv-0.32.0-r1 rename to metadata/md5-cache/media-video/mpv-0.32.0-r2 index 1d3f7e9fe809..acd59acad2dc 100644 --- a/metadata/md5-cache/media-video/mpv-0.32.0-r1 +++ b/metadata/md5-cache/media-video/mpv-0.32.0-r2 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=!!app-shells/mpv-bash-completion >=media-video/ffmpeg-4.0:0=[encode,threads,vaapi?,vdpau?] alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.4.0:= ) bluray? ( >=media-libs/libbluray-0.3.0:= ) cdda? ( dev-libs/libcdio-paranoia dev-libs/libcdio:= ) drm? ( x11-libs/libdrm ) dvd? ( >=media-libs/libdvdnav-4.2.0:= >=media-libs/libdvdread-4.1.0:= ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) gamepad? ( media-libs/libsdl2 ) iconv? ( virtual/libiconv uchardet? ( app-i18n/uchardet ) ) jack? ( virtual/jack ) javascript? ( >=dev-lang/mujs-1.0.0 ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) libass? ( >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz] virtual/ttf-fonts ) libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( =media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) raspberry-pi? ( >=media-libs/raspberrypi-userland-0_pre20160305-r1 ) rubberband? ( >=media-libs/rubberband-1.8.0 ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl2[sound,threads,video] ) vaapi? ( x11-libs/libva:=[drm?,X?,wayland?] ) vdpau? ( x11-libs/libvdpau ) vulkan? ( media-libs/libplacebo:=[vulkan] media-libs/shaderc ) wayland? ( >=dev-libs/wayland-1.6.0 >=dev-libs/wayland-protocols-1.14 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr opengl? ( x11-libs/libXdamage virtual/opengl ) xv? ( x11-libs/libXv ) ) zlib? ( sys-libs/zlib ) zimg? ( >=media-libs/zimg-2.9.2 ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] virtual/pkgconfig dev-python/docutils cuda? ( >=media-libs/nv-codec-headers-8.2.15.7 ) dvb? ( virtual/linuxtv-dvb-headers ) test? ( >=dev-util/cmocka-1.0.0 ) +DEPEND=!!app-shells/mpv-bash-completion >=media-video/ffmpeg-4.0:0=[encode,threads,vaapi?,vdpau?] alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.4.0:= ) bluray? ( >=media-libs/libbluray-0.3.0:= ) cdda? ( dev-libs/libcdio-paranoia dev-libs/libcdio:= ) drm? ( x11-libs/libdrm ) dvd? ( >=media-libs/libdvdnav-4.2.0:= >=media-libs/libdvdread-4.1.0:= ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) gamepad? ( media-libs/libsdl2 ) iconv? ( virtual/libiconv uchardet? ( app-i18n/uchardet ) ) jack? ( virtual/jack ) javascript? ( >=dev-lang/mujs-1.0.0 ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) libass? ( >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz(+)] virtual/ttf-fonts ) libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( =media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) raspberry-pi? ( >=media-libs/raspberrypi-userland-0_pre20160305-r1 ) rubberband? ( >=media-libs/rubberband-1.8.0 ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl2[sound,threads,video] ) vaapi? ( x11-libs/libva:=[drm?,X?,wayland?] ) vdpau? ( x11-libs/libvdpau ) vulkan? ( media-libs/libplacebo:=[vulkan] media-libs/shaderc ) wayland? ( >=dev-libs/wayland-1.6.0 >=dev-libs/wayland-protocols-1.14 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr opengl? ( x11-libs/libXdamage virtual/opengl ) xv? ( x11-libs/libXv ) ) zlib? ( sys-libs/zlib ) zimg? ( >=media-libs/zimg-2.9.2 ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] virtual/pkgconfig dev-python/docutils cuda? ( >=media-libs/nv-codec-headers-8.2.15.7 ) dvb? ( virtual/linuxtv-dvb-headers ) test? ( >=dev-util/cmocka-1.0.0 ) DESCRIPTION=Media player based on MPlayer and mplayer2 EAPI=6 HOMEPAGE=https://mpv.io/ https://github.com/mpv-player/mpv IUSE=+alsa aqua archive bluray cdda +cli coreaudio cplugins cuda debug doc drm dvb dvd +egl gamepad gbm +iconv jack javascript jpeg lcms +libass libcaca libmpv +lua luajit openal +opengl oss pulseaudio raspberry-pi rubberband samba sdl selinux test tools +uchardet vaapi vdpau vulkan wayland +X +xv zlib zimg python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ppc ppc64 x86 ~amd64-linux LICENSE=LGPL-2.1+ GPL-2+ BSD ISC samba? ( GPL-3+ ) -RDEPEND=!!app-shells/mpv-bash-completion >=media-video/ffmpeg-4.0:0=[encode,threads,vaapi?,vdpau?] alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.4.0:= ) bluray? ( >=media-libs/libbluray-0.3.0:= ) cdda? ( dev-libs/libcdio-paranoia dev-libs/libcdio:= ) drm? ( x11-libs/libdrm ) dvd? ( >=media-libs/libdvdnav-4.2.0:= >=media-libs/libdvdread-4.1.0:= ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) gamepad? ( media-libs/libsdl2 ) iconv? ( virtual/libiconv uchardet? ( app-i18n/uchardet ) ) jack? ( virtual/jack ) javascript? ( >=dev-lang/mujs-1.0.0 ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) libass? ( >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz] virtual/ttf-fonts ) libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( =media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) raspberry-pi? ( >=media-libs/raspberrypi-userland-0_pre20160305-r1 ) rubberband? ( >=media-libs/rubberband-1.8.0 ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl2[sound,threads,video] ) vaapi? ( x11-libs/libva:=[drm?,X?,wayland?] ) vdpau? ( x11-libs/libvdpau ) vulkan? ( media-libs/libplacebo:=[vulkan] media-libs/shaderc ) wayland? ( >=dev-libs/wayland-1.6.0 >=dev-libs/wayland-protocols-1.14 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr opengl? ( x11-libs/libXdamage virtual/opengl ) xv? ( x11-libs/libXv ) ) zlib? ( sys-libs/zlib ) zimg? ( >=media-libs/zimg-2.9.2 ) cuda? ( x11-drivers/nvidia-drivers[X] ) selinux? ( sec-policy/selinux-mplayer ) tools? ( python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) +RDEPEND=!!app-shells/mpv-bash-completion >=media-video/ffmpeg-4.0:0=[encode,threads,vaapi?,vdpau?] alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.4.0:= ) bluray? ( >=media-libs/libbluray-0.3.0:= ) cdda? ( dev-libs/libcdio-paranoia dev-libs/libcdio:= ) drm? ( x11-libs/libdrm ) dvd? ( >=media-libs/libdvdnav-4.2.0:= >=media-libs/libdvdread-4.1.0:= ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) gamepad? ( media-libs/libsdl2 ) iconv? ( virtual/libiconv uchardet? ( app-i18n/uchardet ) ) jack? ( virtual/jack ) javascript? ( >=dev-lang/mujs-1.0.0 ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) libass? ( >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz(+)] virtual/ttf-fonts ) libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( =media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) raspberry-pi? ( >=media-libs/raspberrypi-userland-0_pre20160305-r1 ) rubberband? ( >=media-libs/rubberband-1.8.0 ) samba? ( net-fs/samba ) sdl? ( media-libs/libsdl2[sound,threads,video] ) vaapi? ( x11-libs/libva:=[drm?,X?,wayland?] ) vdpau? ( x11-libs/libvdpau ) vulkan? ( media-libs/libplacebo:=[vulkan] media-libs/shaderc ) wayland? ( >=dev-libs/wayland-1.6.0 >=dev-libs/wayland-protocols-1.14 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr opengl? ( x11-libs/libXdamage virtual/opengl ) xv? ( x11-libs/libXv ) ) zlib? ( sys-libs/zlib ) zimg? ( >=media-libs/zimg-2.9.2 ) cuda? ( x11-drivers/nvidia-drivers[X] ) selinux? ( sec-policy/selinux-mplayer ) tools? ( python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) REQUIRED_USE=|| ( cli libmpv ) aqua? ( opengl ) cuda? ( opengl ) egl? ( || ( gbm X wayland ) ) gamepad? ( sdl ) gbm? ( drm egl opengl ) lcms? ( opengl ) luajit? ( lua ) opengl? ( || ( aqua egl X raspberry-pi !cli ) ) raspberry-pi? ( opengl ) test? ( opengl ) tools? ( cli ) uchardet? ( iconv ) vaapi? ( || ( gbm X wayland ) ) vdpau? ( X ) vulkan? ( || ( X wayland ) ) wayland? ( egl ) X? ( egl? ( opengl ) ) xv? ( X ) || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/mpv-player/mpv/archive/v0.32.0.tar.gz -> mpv-0.32.0.tar.gz https://waf.io/waf-2.0.9 _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils a41d1fd1c111289ffa04490de6ee79d7 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf waf-utils cf9742c01975dc707eb982114a9d70fa wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=95b2e99f7e63a8f6ce00f27125ea7c74 +_md5_=642909803a129531c67aabacc2963de0 diff --git a/metadata/md5-cache/media-video/mpv-9999 b/metadata/md5-cache/media-video/mpv-9999 index bb3a3df3c004..15467ed018de 100644 --- a/metadata/md5-cache/media-video/mpv-9999 +++ b/metadata/md5-cache/media-video/mpv-9999 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack -DEPEND=!!app-shells/mpv-bash-completion >=media-video/ffmpeg-4.0:0=[encode,threads,vaapi?,vdpau?] alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.4.0:= ) bluray? ( >=media-libs/libbluray-0.3.0:= ) cdda? ( dev-libs/libcdio-paranoia dev-libs/libcdio:= ) drm? ( x11-libs/libdrm ) dvd? ( >=media-libs/libdvdnav-4.2.0:= >=media-libs/libdvdread-4.1.0:= ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) gamepad? ( media-libs/libsdl2 ) iconv? ( virtual/libiconv uchardet? ( app-i18n/uchardet ) ) jack? ( virtual/jack ) javascript? ( >=dev-lang/mujs-1.0.0 ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz] virtual/ttf-fonts libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( =media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) raspberry-pi? ( >=media-libs/raspberrypi-userland-0_pre20160305-r1 ) rubberband? ( >=media-libs/rubberband-1.8.0 ) sdl? ( media-libs/libsdl2[sound,threads,video] ) vaapi? ( x11-libs/libva:=[drm?,X?,wayland?] ) vdpau? ( x11-libs/libvdpau ) vulkan? ( media-libs/libplacebo:=[vulkan] media-libs/shaderc ) wayland? ( >=dev-libs/wayland-1.6.0 >=dev-libs/wayland-protocols-1.14 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr opengl? ( x11-libs/libXdamage virtual/opengl ) xv? ( x11-libs/libXv ) ) zlib? ( sys-libs/zlib ) zimg? ( >=media-libs/zimg-2.9.2 ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] virtual/pkgconfig dev-python/docutils cuda? ( >=media-libs/nv-codec-headers-8.2.15.7 ) dvb? ( virtual/linuxtv-dvb-headers ) test? ( >=dev-util/cmocka-1.0.0 ) >=dev-vcs/git-1.8.2.1[curl] +DEPEND=!!app-shells/mpv-bash-completion >=media-video/ffmpeg-4.0:0=[encode,threads,vaapi?,vdpau?] alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.4.0:= ) bluray? ( >=media-libs/libbluray-0.3.0:= ) cdda? ( dev-libs/libcdio-paranoia dev-libs/libcdio:= ) drm? ( x11-libs/libdrm ) dvd? ( >=media-libs/libdvdnav-4.2.0:= >=media-libs/libdvdread-4.1.0:= ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) gamepad? ( media-libs/libsdl2 ) iconv? ( virtual/libiconv uchardet? ( app-i18n/uchardet ) ) jack? ( virtual/jack ) javascript? ( >=dev-lang/mujs-1.0.0 ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz(+)] virtual/ttf-fonts libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( =media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) raspberry-pi? ( >=media-libs/raspberrypi-userland-0_pre20160305-r1 ) rubberband? ( >=media-libs/rubberband-1.8.0 ) sdl? ( media-libs/libsdl2[sound,threads,video] ) vaapi? ( x11-libs/libva:=[drm?,X?,wayland?] ) vdpau? ( x11-libs/libvdpau ) vulkan? ( media-libs/libplacebo:=[vulkan] media-libs/shaderc ) wayland? ( >=dev-libs/wayland-1.6.0 >=dev-libs/wayland-protocols-1.14 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr opengl? ( x11-libs/libXdamage virtual/opengl ) xv? ( x11-libs/libXv ) ) zlib? ( sys-libs/zlib ) zimg? ( >=media-libs/zimg-2.9.2 ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] virtual/pkgconfig dev-python/docutils cuda? ( >=media-libs/nv-codec-headers-8.2.15.7 ) dvb? ( virtual/linuxtv-dvb-headers ) test? ( >=dev-util/cmocka-1.0.0 ) >=dev-vcs/git-1.8.2.1[curl] DESCRIPTION=Media player based on MPlayer and mplayer2 EAPI=6 HOMEPAGE=https://mpv.io/ https://github.com/mpv-player/mpv IUSE=+alsa aqua archive bluray cdda +cli coreaudio cplugins cuda debug doc drm dvb dvd +egl gamepad gbm +iconv jack javascript jpeg lcms libcaca libmpv +lua luajit openal +opengl pulseaudio raspberry-pi rubberband sdl selinux test tools +uchardet vaapi vdpau vulkan wayland +X +xv zlib zimg python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 LICENSE=LGPL-2.1+ GPL-2+ BSD ISC PROPERTIES=live -RDEPEND=!!app-shells/mpv-bash-completion >=media-video/ffmpeg-4.0:0=[encode,threads,vaapi?,vdpau?] alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.4.0:= ) bluray? ( >=media-libs/libbluray-0.3.0:= ) cdda? ( dev-libs/libcdio-paranoia dev-libs/libcdio:= ) drm? ( x11-libs/libdrm ) dvd? ( >=media-libs/libdvdnav-4.2.0:= >=media-libs/libdvdread-4.1.0:= ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) gamepad? ( media-libs/libsdl2 ) iconv? ( virtual/libiconv uchardet? ( app-i18n/uchardet ) ) jack? ( virtual/jack ) javascript? ( >=dev-lang/mujs-1.0.0 ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz] virtual/ttf-fonts libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( =media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) raspberry-pi? ( >=media-libs/raspberrypi-userland-0_pre20160305-r1 ) rubberband? ( >=media-libs/rubberband-1.8.0 ) sdl? ( media-libs/libsdl2[sound,threads,video] ) vaapi? ( x11-libs/libva:=[drm?,X?,wayland?] ) vdpau? ( x11-libs/libvdpau ) vulkan? ( media-libs/libplacebo:=[vulkan] media-libs/shaderc ) wayland? ( >=dev-libs/wayland-1.6.0 >=dev-libs/wayland-protocols-1.14 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr opengl? ( x11-libs/libXdamage virtual/opengl ) xv? ( x11-libs/libXv ) ) zlib? ( sys-libs/zlib ) zimg? ( >=media-libs/zimg-2.9.2 ) cuda? ( x11-drivers/nvidia-drivers[X] ) selinux? ( sec-policy/selinux-mplayer ) tools? ( python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) +RDEPEND=!!app-shells/mpv-bash-completion >=media-video/ffmpeg-4.0:0=[encode,threads,vaapi?,vdpau?] alsa? ( >=media-libs/alsa-lib-1.0.18 ) archive? ( >=app-arch/libarchive-3.4.0:= ) bluray? ( >=media-libs/libbluray-0.3.0:= ) cdda? ( dev-libs/libcdio-paranoia dev-libs/libcdio:= ) drm? ( x11-libs/libdrm ) dvd? ( >=media-libs/libdvdnav-4.2.0:= >=media-libs/libdvdread-4.1.0:= ) egl? ( media-libs/mesa[egl,gbm(-)?,wayland(-)?] ) gamepad? ( media-libs/libsdl2 ) iconv? ( virtual/libiconv uchardet? ( app-i18n/uchardet ) ) jack? ( virtual/jack ) javascript? ( >=dev-lang/mujs-1.0.0 ) jpeg? ( virtual/jpeg:0 ) lcms? ( >=media-libs/lcms-2.6:2 ) >=media-libs/libass-0.12.1:=[fontconfig,harfbuzz(+)] virtual/ttf-fonts libcaca? ( >=media-libs/libcaca-0.99_beta18 ) lua? ( !luajit? ( =media-libs/openal-1.13 ) pulseaudio? ( media-sound/pulseaudio ) raspberry-pi? ( >=media-libs/raspberrypi-userland-0_pre20160305-r1 ) rubberband? ( >=media-libs/rubberband-1.8.0 ) sdl? ( media-libs/libsdl2[sound,threads,video] ) vaapi? ( x11-libs/libva:=[drm?,X?,wayland?] ) vdpau? ( x11-libs/libvdpau ) vulkan? ( media-libs/libplacebo:=[vulkan] media-libs/shaderc ) wayland? ( >=dev-libs/wayland-1.6.0 >=dev-libs/wayland-protocols-1.14 >=x11-libs/libxkbcommon-0.3.0 ) X? ( x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXext x11-libs/libXinerama x11-libs/libXrandr opengl? ( x11-libs/libXdamage virtual/opengl ) xv? ( x11-libs/libXv ) ) zlib? ( sys-libs/zlib ) zimg? ( >=media-libs/zimg-2.9.2 ) cuda? ( x11-drivers/nvidia-drivers[X] ) selinux? ( sec-policy/selinux-mplayer ) tools? ( python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) REQUIRED_USE=|| ( cli libmpv ) aqua? ( opengl ) cuda? ( opengl ) egl? ( || ( gbm X wayland ) ) gamepad? ( sdl ) gbm? ( drm egl opengl ) lcms? ( opengl ) luajit? ( lua ) opengl? ( || ( aqua egl X raspberry-pi !cli ) ) raspberry-pi? ( opengl ) test? ( opengl ) tools? ( cli ) uchardet? ( iconv ) vaapi? ( || ( gbm X wayland ) ) vdpau? ( X ) vulkan? ( || ( X wayland ) ) wayland? ( egl ) X? ( egl? ( opengl ) ) xv? ( X ) || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://waf.io/waf-2.0.9 _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 pax-utils a41d1fd1c111289ffa04490de6ee79d7 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf waf-utils cf9742c01975dc707eb982114a9d70fa wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1f2b39743d648be01962bae8ec916f75 +_md5_=f95d91c6f9f152956558b9c4588be332 diff --git a/metadata/md5-cache/media-video/shotcut-20.07.11 b/metadata/md5-cache/media-video/shotcut-20.07.11 deleted file mode 100644 index e0d07e74cb7d..000000000000 --- a/metadata/md5-cache/media-video/shotcut-20.07.11 +++ /dev/null @@ -1,13 +0,0 @@ -BDEPEND=dev-qt/linguist-tools:5 -DEFINED_PHASES=configure install postinst postrm preinst prepare -DEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5[widgets] dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtwebkit:5 dev-qt/qtwebsockets:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/mlt-6.18.0[ffmpeg,frei0r,jack,qt5,sdl,xml] media-libs/webvfx media-video/ffmpeg dev-qt/qtconcurrent:5 dev-qt/qtx11extras:5 dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A free, open source, cross-platform video editor -EAPI=7 -HOMEPAGE=https://www.shotcut.org/ https://github.com/mltframework/shotcut/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3+ -RDEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5[widgets] dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtwebkit:5 dev-qt/qtwebsockets:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/mlt-6.18.0[ffmpeg,frei0r,jack,qt5,sdl,xml] media-libs/webvfx media-video/ffmpeg dev-qt/qtgraphicaleffects:5 dev-qt/qtquickcontrols:5 virtual/jack -SLOT=0 -SRC_URI=https://github.com/mltframework/shotcut/archive/v20.07.11.tar.gz -> shotcut-20.07.11.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=74cb5af65f7e66d96f87fcd08f2db5c8 diff --git a/metadata/md5-cache/media-video/shotcut-20.10.31 b/metadata/md5-cache/media-video/shotcut-20.10.31 new file mode 100644 index 000000000000..2ac02cc50108 --- /dev/null +++ b/metadata/md5-cache/media-video/shotcut-20.10.31 @@ -0,0 +1,13 @@ +BDEPEND=dev-qt/linguist-tools:5 +DEFINED_PHASES=configure install postinst postrm preinst prepare +DEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5[widgets] dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtwebsockets:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/mlt-6.22.1[ffmpeg,frei0r,jack,melt(+),qt5,sdl,xml] media-video/ffmpeg dev-qt/qtconcurrent:5 dev-qt/qtx11extras:5 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=A free, open source, cross-platform video editor +EAPI=7 +HOMEPAGE=https://www.shotcut.org/ https://github.com/mltframework/shotcut/ +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=dev-qt/qtcore:5 dev-qt/qtdeclarative:5[widgets] dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtsql:5 dev-qt/qtwebsockets:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 >=media-libs/mlt-6.22.1[ffmpeg,frei0r,jack,melt(+),qt5,sdl,xml] media-video/ffmpeg dev-qt/qtgraphicaleffects:5 dev-qt/qtquickcontrols:5 virtual/jack +SLOT=0 +SRC_URI=https://github.com/mltframework/shotcut/archive/v20.10.31.tar.gz -> shotcut-20.10.31.tar.gz +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=bce3c51d931575b61c8b0ba2aef65e03 diff --git a/metadata/md5-cache/media-video/yle-dl-20200807 b/metadata/md5-cache/media-video/yle-dl-20200807 deleted file mode 100644 index 9d370f5c06e8..000000000000 --- a/metadata/md5-cache/media-video/yle-dl-20200807 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] test? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] media-video/ffmpeg net-misc/wget >=dev-python/attrs-18.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/configargparse-0.13.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/future[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/lxml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/progress[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/requests[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=test? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] media-video/ffmpeg net-misc/wget >=dev-python/attrs-18.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/configargparse-0.13.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/future[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/lxml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/progress[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/requests[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] media-video/ffmpeg[gnutls] dev-python/pytest[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) -DESCRIPTION=Download media files from Yle Areena -EAPI=7 -HOMEPAGE=https://aajanki.github.io/yle-dl/ https://github.com/aajanki/yle-dl -IUSE=test test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] media-video/ffmpeg net-misc/wget >=dev-python/attrs-18.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/configargparse-0.13.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/future[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/lxml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/progress[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/requests[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] -REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) -RESTRICT=test !test? ( test ) -SLOT=0 -SRC_URI=https://github.com/aajanki/yle-dl/archive/20200807.tar.gz -> yle-dl-20200807.tar.gz -_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=51b774118c508883ad0039404897bb4e diff --git a/metadata/md5-cache/media-video/yle-dl-20201022 b/metadata/md5-cache/media-video/yle-dl-20201022 index 76cae2f0a189..a09bcf9f369c 100644 --- a/metadata/md5-cache/media-video/yle-dl-20201022 +++ b/metadata/md5-cache/media-video/yle-dl-20201022 @@ -4,7 +4,7 @@ DESCRIPTION=Download media files from Yle Areena EAPI=7 HOMEPAGE=https://aajanki.github.io/yle-dl/ https://github.com/aajanki/yle-dl IUSE=test test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=media-video/ffmpeg net-misc/wget >=dev-python/attrs-18.1.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/configargparse-0.13.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/future[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/lxml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/progress[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/requests[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) @@ -12,4 +12,4 @@ RESTRICT=test !test? ( test ) SLOT=0 SRC_URI=https://github.com/aajanki/yle-dl/archive/20201022.tar.gz -> yle-dl-20201022.tar.gz _eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 optfeature 6c9aa35fc16df43d7142ef2660e00e25 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6ea392a3b3778fa9cf481ac7463c5a66 +_md5_=39177542d323795854ccf86b4a38f6b3 diff --git a/metadata/md5-cache/net-analyzer/Manifest.gz b/metadata/md5-cache/net-analyzer/Manifest.gz index 99b2f582b3ab..b3563eea4b38 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/fail2ban-0.11.1-r2 b/metadata/md5-cache/net-analyzer/fail2ban-0.11.1-r2 index 811605c74619..8833ee959ed7 100644 --- a/metadata/md5-cache/net-analyzer/fail2ban-0.11.1-r2 +++ b/metadata/md5-cache/net-analyzer/fail2ban-0.11.1-r2 @@ -4,7 +4,7 @@ DESCRIPTION=scans log files and bans IPs that show malicious signs EAPI=7 HOMEPAGE=https://www.fail2ban.org/ IUSE=selinux systemd python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=~alpha amd64 arm hppa ppc ppc64 sparc x86 +KEYWORDS=~alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86 LICENSE=GPL-2 RDEPEND=virtual/logger virtual/mta selinux? ( sec-policy/selinux-fail2ban ) systemd? ( python_single_target_python3_6? ( || ( dev-python/python-systemd[python_targets_python3_6(-)] sys-apps/systemd[python(-),python_targets_python3_6(-)] ) ) python_single_target_python3_7? ( || ( dev-python/python-systemd[python_targets_python3_7(-)] sys-apps/systemd[python(-),python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( || ( dev-python/python-systemd[python_targets_python3_8(-)] sys-apps/systemd[python(-),python_targets_python3_8(-)] ) ) ) python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/fail2ban/fail2ban/archive/0.11.1.tar.gz -> fail2ban-0.11.1.tar.gz _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef distutils-r1 409cd1220f9f980d21980293a50e2a8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=1812d8af742927929b1978a6b86d89fd +_md5_=06f86bf4ba201186969ad52bcec8be4d diff --git a/metadata/md5-cache/net-analyzer/goaccess-1.2 b/metadata/md5-cache/net-analyzer/goaccess-1.2 deleted file mode 100644 index f02f9b68d40f..000000000000 --- a/metadata/md5-cache/net-analyzer/goaccess-1.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure preinst -DEPEND=sys-libs/ncurses:0=[unicode?] geoip? ( !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) !tokyocabinet? ( dev-libs/glib:2 ) tokyocabinet? ( dev-db/tokyocabinet[bzip2?,zlib?] btree? ( bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) ) ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) virtual/pkgconfig -DESCRIPTION=A real-time web log analyzer and interactive viewer that runs in a terminal -EAPI=6 -HOMEPAGE=https://goaccess.io -IUSE=btree bzip2 debug geoip geoipv2 getline libressl tokyocabinet ssl unicode zlib -KEYWORDS=~amd64 ~x86 ~amd64-linux -LICENSE=MIT -RDEPEND=sys-libs/ncurses:0=[unicode?] geoip? ( !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) !tokyocabinet? ( dev-libs/glib:2 ) tokyocabinet? ( dev-db/tokyocabinet[bzip2?,zlib?] btree? ( bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) ) ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) -REQUIRED_USE=btree? ( tokyocabinet ) bzip2? ( btree ) geoipv2? ( geoip ) zlib? ( btree ) -SLOT=0 -SRC_URI=https://tar.goaccess.io/goaccess-1.2.tar.gz -_md5_=a591a736aff7c2da52464a2015307a08 diff --git a/metadata/md5-cache/net-analyzer/goaccess-1.4.2 b/metadata/md5-cache/net-analyzer/goaccess-1.4.2 new file mode 100644 index 000000000000..d518258a870a --- /dev/null +++ b/metadata/md5-cache/net-analyzer/goaccess-1.4.2 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure prepare +DEPEND=sys-libs/ncurses:0=[unicode?] geoip? ( !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) +DESCRIPTION=A real-time web log analyzer and interactive viewer that runs in a terminal +EAPI=7 +HOMEPAGE=https://goaccess.io +IUSE=debug geoip geoipv2 getline libressl ssl unicode +KEYWORDS=~amd64 ~x86 ~amd64-linux +LICENSE=MIT +RDEPEND=sys-libs/ncurses:0=[unicode?] geoip? ( !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) +REQUIRED_USE=geoipv2? ( geoip ) +SLOT=0 +SRC_URI=https://tar.goaccess.io/goaccess-1.4.2.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=8b0927674c832a4465a00783c79b2a63 diff --git a/metadata/md5-cache/net-analyzer/goaccess-9999 b/metadata/md5-cache/net-analyzer/goaccess-9999 index e3f4c86b1c5e..1a5b0bbf6082 100644 --- a/metadata/md5-cache/net-analyzer/goaccess-9999 +++ b/metadata/md5-cache/net-analyzer/goaccess-9999 @@ -1,14 +1,14 @@ BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=configure prepare unpack -DEPEND=sys-libs/ncurses:0=[unicode?] geoip? ( !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) !tokyocabinet? ( dev-libs/glib:2 ) tokyocabinet? ( dev-db/tokyocabinet[bzip2?,zlib?] btree? ( bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) ) ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) +DEPEND=sys-libs/ncurses:0=[unicode?] geoip? ( !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) DESCRIPTION=A real-time web log analyzer and interactive viewer that runs in a terminal EAPI=7 HOMEPAGE=https://goaccess.io -IUSE=btree bzip2 debug geoip geoipv2 getline libressl tokyocabinet ssl unicode zlib +IUSE=debug geoip geoipv2 getline libressl ssl unicode LICENSE=MIT PROPERTIES=live -RDEPEND=sys-libs/ncurses:0=[unicode?] geoip? ( !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) !tokyocabinet? ( dev-libs/glib:2 ) tokyocabinet? ( dev-db/tokyocabinet[bzip2?,zlib?] btree? ( bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) ) ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) -REQUIRED_USE=btree? ( tokyocabinet ) bzip2? ( btree ) geoipv2? ( geoip ) zlib? ( btree ) +RDEPEND=sys-libs/ncurses:0=[unicode?] geoip? ( !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) +REQUIRED_USE=geoipv2? ( geoip ) SLOT=0 _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 git-r3 3e7ec3d6619213460c85e2aa48398441 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=6aba37d6e7d3a90aa77395c1eccfc360 +_md5_=8b0927674c832a4465a00783c79b2a63 diff --git a/metadata/md5-cache/net-dns/Manifest.gz b/metadata/md5-cache/net-dns/Manifest.gz index 2406ef6faf1b..7a3c8a2ce98c 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/c-ares-1.17.1 b/metadata/md5-cache/net-dns/c-ares-1.17.1 new file mode 100644 index 000000000000..1a72793cc054 --- /dev/null +++ b/metadata/md5-cache/net-dns/c-ares-1.17.1 @@ -0,0 +1,12 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=compile configure install test +DESCRIPTION=C library that resolves names asynchronously +EAPI=7 +HOMEPAGE=https://c-ares.haxx.se/ +IUSE=static-libs abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris +LICENSE=MIT +SLOT=0/2 +SRC_URI=https://c-ares.haxx.se/download/c-ares-1.17.1.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=a8b5e8fbfc8ecb5032c90068fc54b0ed diff --git a/metadata/md5-cache/net-firewall/Manifest.gz b/metadata/md5-cache/net-firewall/Manifest.gz index 70b020599fc3..a2f06b4f4a80 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/firehol-3.1.6-r2 b/metadata/md5-cache/net-firewall/firehol-3.1.6-r2 index a19166c37051..c67045e49d46 100644 --- a/metadata/md5-cache/net-firewall/firehol-3.1.6-r2 +++ b/metadata/md5-cache/net-firewall/firehol-3.1.6-r2 @@ -4,10 +4,10 @@ DESCRIPTION=iptables firewall generator EAPI=7 HOMEPAGE=https://firehol.org/ https://github.com/firehol/firehol IUSE=doc ipv6 ipset kernel_linux -KEYWORDS=amd64 arm ~ppc ~x86 +KEYWORDS=amd64 arm ~arm64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=net-firewall/iptables sys-apps/iproute2[-minimal,ipv6?] sys-apps/kmod[tools] net-misc/iputils[ipv6?] net-misc/iprange net-analyzer/traceroute app-arch/gzip ipset? ( net-firewall/ipset ) SLOT=0 SRC_URI=https://github.com/firehol/firehol/releases/download/v3.1.6/firehol-3.1.6.tar.xz _eclasses_=linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=86cb506db29f93ba49b4d1909f2a7c9a +_md5_=34f09675baf03e71b3a6cd07fd49b159 diff --git a/metadata/md5-cache/net-firewall/ipset-7.9 b/metadata/md5-cache/net-firewall/ipset-7.9 new file mode 100644 index 000000000000..14aaeaecf5ca --- /dev/null +++ b/metadata/md5-cache/net-firewall/ipset-7.9 @@ -0,0 +1,14 @@ +BDEPEND=virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup +DEPEND=>=net-firewall/iptables-1.4.7 net-libs/libmnl modules? ( kernel_linux? ( sys-apps/kmod[tools] ) ) modules? ( sys-apps/sed kernel_linux? ( virtual/linux-sources virtual/libelf ) ) +DESCRIPTION=IPset tool for iptables, successor to ippool +EAPI=7 +HOMEPAGE=http://ipset.netfilter.org/ +IUSE=kernel_linux kernel_linux kernel_linux modules +KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=net-firewall/iptables-1.4.7 net-libs/libmnl modules? ( kernel_linux? ( sys-apps/kmod[tools] ) ) +SLOT=0 +SRC_URI=http://ipset.netfilter.org/ipset-7.9.tar.bz2 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 linux-mod 63c06dfa12648f13855f5f4348af824c multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=8a7489c1998156b8e5eab3fde51a8148 diff --git a/metadata/md5-cache/net-im/Manifest.gz b/metadata/md5-cache/net-im/Manifest.gz index d4df5d1fdad4..ced6d4a59d5c 100644 Binary files a/metadata/md5-cache/net-im/Manifest.gz and b/metadata/md5-cache/net-im/Manifest.gz differ diff --git a/metadata/md5-cache/net-im/signal-desktop-bin-1.37.3 b/metadata/md5-cache/net-im/signal-desktop-bin-1.38.1 similarity index 97% rename from metadata/md5-cache/net-im/signal-desktop-bin-1.37.3 rename to metadata/md5-cache/net-im/signal-desktop-bin-1.38.1 index b7508fbbf9a4..19f6b4321a92 100644 --- a/metadata/md5-cache/net-im/signal-desktop-bin-1.37.3 +++ b/metadata/md5-cache/net-im/signal-desktop-bin-1.38.1 @@ -10,6 +10,6 @@ LICENSE=GPL-3 MIT MIT-with-advertising BSD-1 BSD-2 BSD Apache-2.0 ISC openssl ZL RDEPEND=app-accessibility/at-spi2-atk app-accessibility/at-spi2-core dev-libs/atk dev-libs/expat dev-libs/glib dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/mesa[X(+)] net-print/cups sys-apps/dbus[X] x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3[X] x11-libs/libX11 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst x11-libs/pango sound? ( || ( media-sound/pulseaudio media-sound/apulse ) ) RESTRICT=splitdebug SLOT=0 -SRC_URI=https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_1.37.3_amd64.deb +SRC_URI=https://updates.signal.org/desktop/apt/pool/main/s/signal-desktop/signal-desktop_1.38.1_amd64.deb _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 optfeature 6c9aa35fc16df43d7142ef2660e00e25 pax-utils a41d1fd1c111289ffa04490de6ee79d7 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=cb9b7b8ab70089ef7961d271cc3f27a2 diff --git a/metadata/md5-cache/net-im/swift-4.0.2-r100 b/metadata/md5-cache/net-im/swift-4.0.2-r100 new file mode 100644 index 000000000000..2fd4d0d267ff --- /dev/null +++ b/metadata/md5-cache/net-im/swift-4.0.2-r100 @@ -0,0 +1,16 @@ +BDEPEND=|| ( ( dev-lang/python:3.9 dev-util/scons[python_targets_python3_9(-),python_single_target_python3_9(+)] ) ( dev-lang/python:3.8 dev-util/scons[python_targets_python3_8(-),python_single_target_python3_8(+)] ) ( dev-lang/python:3.7 dev-util/scons[python_targets_python3_7(-),python_single_target_python3_7(+)] ) ( dev-lang/python:3.6 dev-util/scons[python_targets_python3_6(-),python_single_target_python3_6(+)] ) ) +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=dev-db/sqlite:3 dev-libs/boost:= dev-libs/openssl:0= net-libs/libnatpmp net-libs/miniupnpc:= sys-libs/zlib client? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtwebkit:5 dev-qt/qtx11extras:5 net-dns/avahi ) expat? ( dev-libs/expat ) !expat? ( dev-libs/libxml2:2 ) gconf? ( gnome-base/gconf:2 ) icu? ( dev-libs/icu:= ) idn? ( net-dns/libidn:= ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) ) spell? ( app-text/hunspell:= ) >=dev-util/scons-3.0.1-r3 client? ( dev-qt/linguist-tools:5 ) test? ( net-dns/avahi ) +DESCRIPTION=An elegant, secure, adaptable and intuitive XMPP Client +EAPI=7 +HOMEPAGE=https://www.swift.im/ +IUSE=+client expat gconf +icu +idn lua spell test zeroconf lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-2 +KEYWORDS=~amd64 +LICENSE=BSD BSD-1 CC-BY-3.0 GPL-3 OFL-1.1 +RDEPEND=dev-db/sqlite:3 dev-libs/boost:= dev-libs/openssl:0= net-libs/libnatpmp net-libs/miniupnpc:= sys-libs/zlib client? ( dev-qt/qtcore:5 dev-qt/qtdbus:5 dev-qt/qtgui:5 dev-qt/qtmultimedia:5 dev-qt/qtnetwork:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtwebkit:5 dev-qt/qtx11extras:5 net-dns/avahi ) expat? ( dev-libs/expat ) !expat? ( dev-libs/libxml2:2 ) gconf? ( gnome-base/gconf:2 ) icu? ( dev-libs/icu:= ) idn? ( net-dns/libidn:= ) lua? ( lua_single_target_luajit? ( dev-lang/luajit:= ) lua_single_target_lua5-1? ( dev-lang/lua:5.1 ) lua_single_target_lua5-2? ( dev-lang/lua:5.2 ) ) spell? ( app-text/hunspell:= ) +REQUIRED_USE=|| ( icu idn ) gconf? ( client ) lua? ( ^^ ( lua_single_target_luajit lua_single_target_lua5-1 lua_single_target_lua5-2 ) ) spell? ( client ) +RESTRICT=test +SLOT=4/0 +SRC_URI=https://swift.im/downloads/releases/swift-4.0.2/swift-4.0.2.tar.gz https://dev.gentoo.org/~conikost/distfiles/patches/swift-4.0.2-python3-compatibility.patch.gz +_eclasses_=lua-single f91b5656f00869c220a6e35ae0521c54 lua-utils 661d14f97b7d04273143565853fdfbfe multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 scons-utils 0c3d02e3e56d99a17ac273db118e8a24 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=0fe7fd393285abcdfa3cf508262316f8 diff --git a/metadata/md5-cache/net-irc/Manifest.gz b/metadata/md5-cache/net-irc/Manifest.gz index af359eabd593..d097b8026ac7 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/epic5-2.0.1 b/metadata/md5-cache/net-irc/epic5-2.0.1 index 6aa4d0a0b6ba..7e155eb44d4b 100644 --- a/metadata/md5-cache/net-irc/epic5-2.0.1 +++ b/metadata/md5-cache/net-irc/epic5-2.0.1 @@ -1,14 +1,14 @@ BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=compile configure install -DEPEND=>=dev-libs/openssl-0.9.8e-r3:0= >=sys-libs/ncurses-5.6-r2:0= virtual/libiconv archive? ( app-arch/libarchive ) perl? ( >=dev-lang/perl-5.8.8-r2:= ) tcl? ( dev-lang/tcl:0= ) socks5? ( net-proxy/dante ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) valgrind? ( dev-util/valgrind ) +DEPEND=>=dev-libs/openssl-0.9.8e-r3:0= >=sys-libs/ncurses-5.6-r2:0= virtual/libiconv archive? ( app-arch/libarchive ) perl? ( >=dev-lang/perl-5.8.8-r2:= ) tcl? ( dev-lang/tcl:0= ) socks5? ( net-proxy/dante ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) valgrind? ( dev-util/valgrind ) DESCRIPTION=Epic5 IRC Client EAPI=7 HOMEPAGE=http://epicsol.org/ IUSE=archive perl tcl ruby socks5 valgrind KEYWORDS=amd64 ~ppc x86 LICENSE=BSD -RDEPEND=>=dev-libs/openssl-0.9.8e-r3:0= >=sys-libs/ncurses-5.6-r2:0= virtual/libiconv archive? ( app-arch/libarchive ) perl? ( >=dev-lang/perl-5.8.8-r2:= ) tcl? ( dev-lang/tcl:0= ) socks5? ( net-proxy/dante ) ruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems ) +RDEPEND=>=dev-libs/openssl-0.9.8e-r3:0= >=sys-libs/ncurses-5.6-r2:0= virtual/libiconv archive? ( app-arch/libarchive ) perl? ( >=dev-lang/perl-5.8.8-r2:= ) tcl? ( dev-lang/tcl:0= ) socks5? ( net-proxy/dante ) ruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems ) SLOT=0 SRC_URI=ftp://ftp.epicsol.org/pub/epic/EPIC5-PRODUCTION/epic5-2.0.1.tar.xz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1f0dba7e83db694a7d724877b9298b0e diff --git a/metadata/md5-cache/net-irc/inspircd-3.8.0 b/metadata/md5-cache/net-irc/inspircd-3.8.1 similarity index 93% rename from metadata/md5-cache/net-irc/inspircd-3.8.0 rename to metadata/md5-cache/net-irc/inspircd-3.8.1 index 409094a760b6..8068c8ba72e9 100644 --- a/metadata/md5-cache/net-irc/inspircd-3.8.0 +++ b/metadata/md5-cache/net-irc/inspircd-3.8.1 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=GPL-2 RDEPEND=acct-group/inspircd acct-user/inspircd dev-lang/perl gnutls? ( net-libs/gnutls:= dev-libs/libgcrypt:0 ) ldap? ( net-nds/openldap ) maxminddb? ( dev-libs/libmaxminddb ) mbedtls? ( net-libs/mbedtls:= ) mysql? ( dev-db/mysql-connector-c:= ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql:= ) re2? ( dev-libs/re2:= ) sqlite? ( >=dev-db/sqlite-3.0 ) ssl? ( dev-libs/openssl:= ) tre? ( dev-libs/tre ) SLOT=0 -SRC_URI=https://github.com/inspircd/inspircd/archive/v3.8.0.tar.gz -> inspircd-3.8.0.tar.gz +SRC_URI=https://github.com/inspircd/inspircd/archive/v3.8.1.tar.gz -> inspircd-3.8.1.tar.gz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=b578c500fb275045d464df2ebd487e45 diff --git a/metadata/md5-cache/net-irc/rbot-0.9.15_p20160325-r1 b/metadata/md5-cache/net-irc/rbot-0.9.15_p20160325-r1 index b94884ed6313..2e338d8e4393 100644 --- a/metadata/md5-cache/net-irc/rbot-0.9.15_p20160325-r1 +++ b/metadata/md5-cache/net-irc/rbot-0.9.15_p20160325-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) 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_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=c81164d07b06d36c827387c7b4959287 diff --git a/metadata/md5-cache/net-libs/Manifest.gz b/metadata/md5-cache/net-libs/Manifest.gz index 90d612d2b01a..8c4bafbde05c 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/libnpupnp-4.0.14 b/metadata/md5-cache/net-libs/libnpupnp-4.0.14 new file mode 100644 index 000000000000..a3651f8a1f09 --- /dev/null +++ b/metadata/md5-cache/net-libs/libnpupnp-4.0.14 @@ -0,0 +1,10 @@ +DEFINED_PHASES=configure prepare +DESCRIPTION=A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp +EAPI=7 +HOMEPAGE=https://framagit.org/medoc92/npupnp +KEYWORDS=~amd64 +LICENSE=BSD +RDEPEND=dev-libs/expat net-libs/libmicrohttpd net-misc/curl +SLOT=0 +SRC_URI=https://www.lesbonscomptes.com/upmpdcli/downloads/libnpupnp-4.0.14.tar.gz +_md5_=760998989655a5fe725a904fcd237b8b diff --git a/metadata/md5-cache/net-libs/libnpupnp-4.0.14-r1 b/metadata/md5-cache/net-libs/libnpupnp-4.0.14-r1 new file mode 100644 index 000000000000..1f6ff2377db2 --- /dev/null +++ b/metadata/md5-cache/net-libs/libnpupnp-4.0.14-r1 @@ -0,0 +1,10 @@ +DEFINED_PHASES=configure prepare +DESCRIPTION=A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp +EAPI=7 +HOMEPAGE=https://framagit.org/medoc92/npupnp +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-libs/expat net-libs/libmicrohttpd net-misc/curl +SLOT=0 +SRC_URI=https://www.lesbonscomptes.com/upmpdcli/downloads/libnpupnp-4.0.14.tar.gz +_md5_=3d339e72aa125ba4cf208271755f8c5a diff --git a/metadata/md5-cache/net-libs/libupnpp-0.20.0 b/metadata/md5-cache/net-libs/libupnpp-0.20.0 new file mode 100644 index 000000000000..c66cfac64cde --- /dev/null +++ b/metadata/md5-cache/net-libs/libupnpp-0.20.0 @@ -0,0 +1,11 @@ +DEFINED_PHASES=- +DEPEND=dev-libs/expat net-libs/libnpupnp net-misc/curl +DESCRIPTION=The libupnpp C++ library wraps libupnp for easier use by upmpdcli and upplay +EAPI=7 +HOMEPAGE=https://www.lesbonscomptes.com/upmpdcli +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=dev-libs/expat net-libs/libnpupnp net-misc/curl +SLOT=0 +SRC_URI=https://www.lesbonscomptes.com/upmpdcli/downloads/libupnpp-0.20.0.tar.gz +_md5_=6a6c37cd556bd495579c5efa38a099fd diff --git a/metadata/md5-cache/net-libs/libupnpp-0.20.0-r1 b/metadata/md5-cache/net-libs/libupnpp-0.20.0-r1 new file mode 100644 index 000000000000..840cbfe5c7be --- /dev/null +++ b/metadata/md5-cache/net-libs/libupnpp-0.20.0-r1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=- +DEPEND=dev-libs/expat >=net-libs/libnpupnp-4.0.14-r1 net-misc/curl +DESCRIPTION=The libupnpp C++ library wraps libupnp for easier use by upmpdcli and upplay +EAPI=7 +HOMEPAGE=https://www.lesbonscomptes.com/upmpdcli +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/expat >=net-libs/libnpupnp-4.0.14-r1 net-misc/curl +SLOT=0 +SRC_URI=https://www.lesbonscomptes.com/upmpdcli/downloads/libupnpp-0.20.0.tar.gz +_md5_=b29e1b461f0d668b15468b1f0cea0973 diff --git a/metadata/md5-cache/net-libs/miniupnpc-2.1.20191224 b/metadata/md5-cache/net-libs/miniupnpc-2.1.20191224 deleted file mode 100644 index 50b7b2812d83..000000000000 --- a/metadata/md5-cache/net-libs/miniupnpc-2.1.20191224 +++ /dev/null @@ -1,12 +0,0 @@ -BDEPEND=kernel_linux? ( sys-apps/lsb-release sys-apps/which ) verify-sig? ( app-crypt/openpgp-keys-miniupnp ) verify-sig? ( app-crypt/gnupg >=app-portage/gemato-16 ) -DEFINED_PHASES=compile install prepare test unpack -DESCRIPTION=UPnP client library and a simple UPnP client -EAPI=7 -HOMEPAGE=http://miniupnp.free.fr/ -IUSE=ipv6 kernel_linux static-libs verify-sig -KEYWORDS=amd64 arm arm64 hppa ~mips ppc ppc64 s390 sparc x86 -LICENSE=BSD -SLOT=0/17 -SRC_URI=http://miniupnp.free.fr/files/miniupnpc-2.1.20191224.tar.gz verify-sig? ( http://miniupnp.free.fr/files/miniupnpc-2.1.20191224.tar.gz.sig ) -_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a -_md5_=a1fc4975eeacc04e35a34cc29daafaa1 diff --git a/metadata/md5-cache/net-libs/miniupnpc-2.1.20201016 b/metadata/md5-cache/net-libs/miniupnpc-2.1.20201016 index a291647d91d9..823a14c598ea 100644 --- a/metadata/md5-cache/net-libs/miniupnpc-2.1.20201016 +++ b/metadata/md5-cache/net-libs/miniupnpc-2.1.20201016 @@ -4,9 +4,9 @@ DESCRIPTION=UPnP client library and a simple UPnP client EAPI=7 HOMEPAGE=http://miniupnp.free.fr/ IUSE=ipv6 kernel_linux static-libs verify-sig -KEYWORDS=amd64 arm arm64 ~hppa ~mips ppc ppc64 s390 sparc x86 +KEYWORDS=amd64 arm arm64 hppa ~mips ppc ppc64 s390 sparc x86 LICENSE=BSD SLOT=0/17 SRC_URI=http://miniupnp.free.fr/files/miniupnpc-2.1.20201016.tar.gz verify-sig? ( http://miniupnp.free.fr/files/miniupnpc-2.1.20201016.tar.gz.sig ) _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb verify-sig 40b4f4f782cf67118f594ce604cc4c0a -_md5_=517888895390d2167b6d5c48ec6a0abc +_md5_=a1fc4975eeacc04e35a34cc29daafaa1 diff --git a/metadata/md5-cache/net-libs/nodejs-12.18.4-r1 b/metadata/md5-cache/net-libs/nodejs-12.18.4-r1 deleted file mode 100644 index 5cc40bb4e100..000000000000 --- a/metadata/md5-cache/net-libs/nodejs-12.18.4-r1 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.7[threads(+)] dev-lang/python:3.6[threads(+)] ) sys-apps/coreutils systemtap? ( dev-util/systemtap ) test? ( net-misc/curl ) -DEFINED_PHASES=compile configure install postinst prepare pretend setup test -DEPEND=>=app-arch/brotli-1.0.7 >=dev-libs/libuv-1.39.0:= >=net-dns/c-ares-1.16.0 >=net-libs/http-parser-2.9.3:= >=net-libs/nghttp2-1.40.0 sys-libs/zlib icu? ( >=dev-libs/icu-64.2:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) -DESCRIPTION=A JavaScript runtime built on Chrome's V8 JavaScript engine -EAPI=7 -HOMEPAGE=https://nodejs.org/ -IUSE=cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl +system-ssl systemtap test -KEYWORDS=amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x64-macos -LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT -RDEPEND=>=app-arch/brotli-1.0.7 >=dev-libs/libuv-1.39.0:= >=net-dns/c-ares-1.16.0 >=net-libs/http-parser-2.9.3:= >=net-libs/nghttp2-1.40.0 sys-libs/zlib icu? ( >=dev-libs/icu-64.2:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) -REQUIRED_USE=inspector? ( icu ssl ) npm? ( ssl ) system-ssl? ( ssl ) -RESTRICT=test -SLOT=0 -SRC_URI=https://nodejs.org/dist/v12.18.4/node-v12.18.4.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=8443d681dfcc71e8d18440ecc2ca54fe diff --git a/metadata/md5-cache/net-libs/nodejs-12.19.1 b/metadata/md5-cache/net-libs/nodejs-12.19.1 index 505edf96b876..bd417513e496 100644 --- a/metadata/md5-cache/net-libs/nodejs-12.19.1 +++ b/metadata/md5-cache/net-libs/nodejs-12.19.1 @@ -12,5 +12,5 @@ REQUIRED_USE=inspector? ( icu ssl ) npm? ( ssl ) system-ssl? ( ssl ) RESTRICT=test SLOT=0/12 SRC_URI=https://nodejs.org/dist/v12.19.1/node-v12.19.1.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ad76590736046e216d6a9974976f3380 +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=aac345184a64f448da1f42e01058b25e diff --git a/metadata/md5-cache/net-libs/nodejs-14.15.1 b/metadata/md5-cache/net-libs/nodejs-14.15.1 index 4f2b3ab458b1..6a29f52eb080 100644 --- a/metadata/md5-cache/net-libs/nodejs-14.15.1 +++ b/metadata/md5-cache/net-libs/nodejs-14.15.1 @@ -1,10 +1,10 @@ -BDEPEND=|| ( dev-lang/python:3.9[threads(+)] dev-lang/python:3.8[threads(+)] dev-lang/python:3.7[threads(+)] ) sys-apps/coreutils systemtap? ( dev-util/systemtap ) test? ( net-misc/curl ) +BDEPEND=|| ( dev-lang/python:3.9[threads(+)] dev-lang/python:3.8[threads(+)] dev-lang/python:3.7[threads(+)] ) sys-apps/coreutils systemtap? ( dev-util/systemtap ) test? ( net-misc/curl ) pax_kernel? ( sys-apps/elfix ) DEFINED_PHASES=compile configure install prepare pretend setup test DEPEND=>=app-arch/brotli-1.0.9 >=dev-libs/libuv-1.40.0:= >=net-dns/c-ares-1.16.1 >=net-libs/nghttp2-1.41.0 sys-libs/zlib system-icu? ( >=dev-libs/icu-67:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) DESCRIPTION=A JavaScript runtime built on Chrome's V8 JavaScript engine EAPI=7 HOMEPAGE=https://nodejs.org/ -IUSE=cpu_flags_x86_sse2 debug doc +icu inspector +npm +snapshot +ssl system-icu +system-ssl systemtap test +IUSE=cpu_flags_x86_sse2 debug doc +icu inspector +npm pax_kernel +snapshot +ssl system-icu +system-ssl systemtap test KEYWORDS=amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x64-macos LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT RDEPEND=>=app-arch/brotli-1.0.9 >=dev-libs/libuv-1.40.0:= >=net-dns/c-ares-1.16.1 >=net-libs/nghttp2-1.41.0 sys-libs/zlib system-icu? ( >=dev-libs/icu-67:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) @@ -12,5 +12,5 @@ REQUIRED_USE=inspector? ( icu ssl ) npm? ( ssl ) system-icu? ( icu ) system-ssl? RESTRICT=test SLOT=0/14 SRC_URI=https://nodejs.org/dist/v14.15.1/node-v14.15.1.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=599518354fe91c2101dbd26d077f9ad0 +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=86dd1e58507f43e77650eae8ef5563a9 diff --git a/metadata/md5-cache/net-libs/nodejs-14.2.0 b/metadata/md5-cache/net-libs/nodejs-14.2.0 deleted file mode 100644 index 8bde948b9789..000000000000 --- a/metadata/md5-cache/net-libs/nodejs-14.2.0 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( dev-lang/python:3.8[threads(+)] dev-lang/python:3.7[threads(+)] dev-lang/python:3.6[threads(+)] ) sys-apps/coreutils systemtap? ( dev-util/systemtap ) test? ( net-misc/curl ) -DEFINED_PHASES=compile configure install prepare pretend setup test -DEPEND=>=dev-libs/libuv-1.37.0:= >=net-dns/c-ares-1.16.0 >=net-libs/nghttp2-1.40.0 sys-libs/zlib icu? ( >=dev-libs/icu-65:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) -DESCRIPTION=A JavaScript runtime built on Chrome's V8 JavaScript engine -EAPI=7 -HOMEPAGE=https://nodejs.org/ -IUSE=cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl +system-ssl systemtap test -KEYWORDS=ppc -LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT -RDEPEND=>=dev-libs/libuv-1.37.0:= >=net-dns/c-ares-1.16.0 >=net-libs/nghttp2-1.40.0 sys-libs/zlib icu? ( >=dev-libs/icu-65:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) -REQUIRED_USE=inspector? ( icu ssl ) npm? ( ssl ) system-ssl? ( ssl ) -RESTRICT=test -SLOT=0 -SRC_URI=https://nodejs.org/dist/v14.2.0/node-v14.2.0.tar.xz -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=c130820dbbf56ad6bb3258f8ccd4f287 diff --git a/metadata/md5-cache/net-libs/nodejs-15.2.1 b/metadata/md5-cache/net-libs/nodejs-15.2.1 new file mode 100644 index 000000000000..1d4bf76c69c0 --- /dev/null +++ b/metadata/md5-cache/net-libs/nodejs-15.2.1 @@ -0,0 +1,16 @@ +BDEPEND=|| ( dev-lang/python:3.9[threads(+)] dev-lang/python:3.8[threads(+)] dev-lang/python:3.7[threads(+)] ) sys-apps/coreutils systemtap? ( dev-util/systemtap ) test? ( net-misc/curl ) +DEFINED_PHASES=compile configure install prepare pretend setup test +DEPEND=>=app-arch/brotli-1.0.9 >=dev-libs/libuv-1.40.0:= >=net-dns/c-ares-1.17.0 >=net-libs/nghttp2-1.41.0 sys-libs/zlib system-icu? ( >=dev-libs/icu-67:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) +DESCRIPTION=A JavaScript runtime built on Chrome's V8 JavaScript engine +EAPI=7 +HOMEPAGE=https://nodejs.org/ +IUSE=cpu_flags_x86_sse2 debug doc +icu inspector +npm +snapshot +ssl system-icu +system-ssl systemtap test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x64-macos +LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT +RDEPEND=>=app-arch/brotli-1.0.9 >=dev-libs/libuv-1.40.0:= >=net-dns/c-ares-1.17.0 >=net-libs/nghttp2-1.41.0 sys-libs/zlib system-icu? ( >=dev-libs/icu-67:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) +REQUIRED_USE=inspector? ( icu ssl ) npm? ( ssl ) system-icu? ( icu ) system-ssl? ( ssl ) +RESTRICT=test +SLOT=0/15 +SRC_URI=https://nodejs.org/dist/v15.2.1/node-v15.2.1.tar.xz +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=9dd7aa1dca96a19e54626bed0c93526a diff --git a/metadata/md5-cache/net-libs/nodejs-99999999 b/metadata/md5-cache/net-libs/nodejs-99999999 index d913cde6bc87..0ba738347b91 100644 --- a/metadata/md5-cache/net-libs/nodejs-99999999 +++ b/metadata/md5-cache/net-libs/nodejs-99999999 @@ -1,15 +1,15 @@ -BDEPEND=|| ( dev-lang/python:3.8[threads(+)] dev-lang/python:3.7[threads(+)] dev-lang/python:3.6[threads(+)] ) sys-apps/coreutils systemtap? ( dev-util/systemtap ) test? ( net-misc/curl ) >=dev-vcs/git-1.8.2.1[curl] +BDEPEND=|| ( dev-lang/python:3.8[threads(+)] dev-lang/python:3.7[threads(+)] dev-lang/python:3.6[threads(+)] ) sys-apps/coreutils systemtap? ( dev-util/systemtap ) test? ( net-misc/curl ) pax_kernel? ( sys-apps/elfix ) >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install prepare pretend setup test unpack DEPEND=>=app-arch/brotli-1.0.9 >=dev-libs/libuv-1.40.0:= >=net-dns/c-ares-1.16.1 >=net-libs/nghttp2-1.41.0 sys-libs/zlib icu? ( >=dev-libs/icu-67.1:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) DESCRIPTION=A JavaScript runtime built on Chrome's V8 JavaScript engine EAPI=7 HOMEPAGE=https://nodejs.org/ -IUSE=cpu_flags_x86_sse2 debug doc +icu inspector +npm +snapshot +ssl +system-ssl systemtap test +IUSE=cpu_flags_x86_sse2 debug doc +icu inspector +npm pax_kernel +snapshot +ssl +system-ssl systemtap test LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT PROPERTIES=live RDEPEND=>=app-arch/brotli-1.0.9 >=dev-libs/libuv-1.40.0:= >=net-dns/c-ares-1.16.1 >=net-libs/nghttp2-1.41.0 sys-libs/zlib icu? ( >=dev-libs/icu-67.1:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) REQUIRED_USE=inspector? ( icu ssl ) npm? ( ssl ) system-ssl? ( ssl ) RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=405fcdd3c817a042d32c59d71af7b8d5 +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=c874b19d9a3046777fd712326ac4c66a diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.28.4 b/metadata/md5-cache/net-libs/webkit-gtk-2.28.4 index c992a362fa6d..9dad075ce4d9 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.28.4 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.28.4 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test -DEPEND=>=x11-libs/cairo-1.16.0:=[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-3.8.1-r1:= virtual/jpeg:0= >=net-libs/libsoup-2.54:2.4[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3= sys-libs/zlib:0 >=dev-libs/atk-2.16.0 media-libs/libwebp:= >=dev-libs/glib-2.44.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.14:1.0 >=media-libs/gst-plugins-base-1.14:1.0[egl?,opengl?,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) >=media-plugins/gst-plugins-opus-1.14.4-r1:1.0 >=media-libs/gst-plugins-bad-1.14:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) libnotify? ( x11-libs/libnotify ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) egl? ( media-libs/mesa[egl] ) gles2-only? ( media-libs/mesa[gles2] ) opengl? ( virtual/opengl ) wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 opengl? ( >=gui-libs/libwpe-1.3.0:1.0 >=gui-libs/wpebackend-fdo-1.3.1:1.0 ) gles2-only? ( >=gui-libs/libwpe-1.3.0:1.0 >=gui-libs/wpebackend-fdo-1.3.1:1.0 ) ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) || ( dev-lang/python:3.7 dev-lang/python:3.6 ) || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 dev-lang/ruby:2.7 ) virtual/rubygems >=app-accessibility/at-spi2-core-2.5.3 dev-util/glib-utils >=dev-util/gperf-3.0.1 >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP gtk-doc? ( >=dev-util/gtk-doc-1.32 ) geolocation? ( dev-util/gdbus-codegen ) dev-util/ninja >=dev-util/cmake-3.10 >=app-portage/elt-patches-20170815 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) +DEPEND=>=x11-libs/cairo-1.16.0:=[X?] >=media-libs/fontconfig-2.13.0:1.0 >=media-libs/freetype-2.9.0:2 >=dev-libs/libgcrypt-1.7.0:0= >=x11-libs/gtk+-3.22.0:3[aqua?,introspection?,wayland?,X?] >=media-libs/harfbuzz-1.4.2:=[icu(+)] >=dev-libs/icu-3.8.1-r1:= virtual/jpeg:0= >=net-libs/libsoup-2.54:2.4[introspection?] >=dev-libs/libxml2-2.8.0:2 >=media-libs/libpng-1.4:0= dev-db/sqlite:3= sys-libs/zlib:0 >=dev-libs/atk-2.16.0 media-libs/libwebp:= >=dev-libs/glib-2.44.0:2 >=dev-libs/libxslt-1.1.7 media-libs/woff2 gnome-keyring? ( app-crypt/libsecret ) introspection? ( >=dev-libs/gobject-introspection-1.32.0:= ) dev-libs/libtasn1:= spell? ( >=app-text/enchant-0.22:2 ) gstreamer? ( >=media-libs/gstreamer-1.14:1.0 >=media-libs/gst-plugins-base-1.14:1.0[egl?,opengl?,X?] gles2-only? ( media-libs/gst-plugins-base:1.0[gles2] ) >=media-plugins/gst-plugins-opus-1.14.4-r1:1.0 >=media-libs/gst-plugins-bad-1.14:1.0 ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXrender x11-libs/libXt ) libnotify? ( x11-libs/libnotify ) dev-libs/hyphen jpeg2k? ( >=media-libs/openjpeg-2.2.0:2= ) egl? ( media-libs/mesa[egl] ) gles2-only? ( media-libs/mesa[gles2] ) opengl? ( virtual/opengl ) wayland? ( dev-libs/wayland >=dev-libs/wayland-protocols-1.12 opengl? ( >=gui-libs/libwpe-1.3.0:1.0 >=gui-libs/wpebackend-fdo-1.3.1:1.0 ) gles2-only? ( >=gui-libs/libwpe-1.3.0:1.0 >=gui-libs/wpebackend-fdo-1.3.1:1.0 ) ) seccomp? ( >=sys-apps/bubblewrap-0.3.1 sys-libs/libseccomp sys-apps/xdg-dbus-proxy ) || ( dev-lang/python:3.8 dev-lang/python:3.7 dev-lang/python:3.6 ) || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems >=app-accessibility/at-spi2-core-2.5.3 dev-util/glib-utils >=dev-util/gperf-3.0.1 >=sys-devel/bison-2.4.3 || ( >=sys-devel/gcc-7.3 >=sys-devel/clang-5 ) sys-devel/gettext virtual/pkgconfig >=dev-lang/perl-5.10 virtual/perl-Data-Dumper virtual/perl-Carp virtual/perl-JSON-PP gtk-doc? ( >=dev-util/gtk-doc-1.32 ) geolocation? ( dev-util/gdbus-codegen ) dev-util/ninja >=dev-util/cmake-3.10 >=app-portage/elt-patches-20170815 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) DESCRIPTION=Open source web browser engine EAPI=6 HOMEPAGE=https://www.webkitgtk.org @@ -11,5 +11,5 @@ REQUIRED_USE=gles2-only? ( egl !opengl ) gstreamer? ( opengl? ( egl ) ) wayland? RESTRICT=test SLOT=4/37 SRC_URI=https://www.webkitgtk.org/releases/webkitgtk-2.28.4.tar.xz -_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 5e9aaae6eb511a4c4d9964fe8259110d gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=543907f338fbea1526bf8d7dc98a71fd +_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 5e9aaae6eb511a4c4d9964fe8259110d gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=4b6006c041849b76462f6f7b82cae1df diff --git a/metadata/md5-cache/net-mail/Manifest.gz b/metadata/md5-cache/net-mail/Manifest.gz index ab05dcf4209b..e414d3d8a239 100644 Binary files a/metadata/md5-cache/net-mail/Manifest.gz and b/metadata/md5-cache/net-mail/Manifest.gz differ diff --git a/metadata/md5-cache/net-mail/mailshears-0.0.4 b/metadata/md5-cache/net-mail/mailshears-0.0.4 index 924504605396..8b55737e3335 100644 --- a/metadata/md5-cache/net-mail/mailshears-0.0.4 +++ b/metadata/md5-cache/net-mail/mailshears-0.0.4 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://rubygems.org/gems/mailshears-0.0.4.gem -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c3086616d5030a38a62a964d624eaf7f diff --git a/metadata/md5-cache/net-misc/Manifest.gz b/metadata/md5-cache/net-misc/Manifest.gz index 80a1c8e75708..23c9219f11bf 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/dhcp-4.4.2-r3 b/metadata/md5-cache/net-misc/dhcp-4.4.2-r3 index 6960d569a90c..c381ac580f40 100644 --- a/metadata/md5-cache/net-misc/dhcp-4.4.2-r3 +++ b/metadata/md5-cache/net-misc/dhcp-4.4.2-r3 @@ -11,4 +11,4 @@ RDEPEND=acct-group/dhcp acct-user/dhcp client? ( kernel_linux? ( ipv6? ( sys-app SLOT=0 SRC_URI=ftp://ftp.isc.org/isc/dhcp/dhcp-4.4.2.tar.gz ftp://ftp.isc.org/isc/dhcp/4.4.2/dhcp-4.4.2.tar.gz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=48c6670458a6668a76e97bf0a498c449 +_md5_=d9a4177e54021ccf46439bfe432b5b8f diff --git a/metadata/md5-cache/net-misc/dhcpcd-9.3.1 b/metadata/md5-cache/net-misc/dhcpcd-9.3.3 similarity index 91% rename from metadata/md5-cache/net-misc/dhcpcd-9.3.1 rename to metadata/md5-cache/net-misc/dhcpcd-9.3.3 index 222cc52b0f26..9fe73aee6839 100644 --- a/metadata/md5-cache/net-misc/dhcpcd-9.3.1 +++ b/metadata/md5-cache/net-misc/dhcpcd-9.3.3 @@ -9,6 +9,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s LICENSE=BSD-2 RDEPEND=udev? ( virtual/udev ) privsep? ( acct-group/dhcpcd acct-user/dhcpcd ) SLOT=0 -SRC_URI=https://roy.marples.name/downloads/dhcpcd/dhcpcd-9.3.1.tar.xz +SRC_URI=https://roy.marples.name/downloads/dhcpcd/dhcpcd-9.3.3.tar.xz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4f76ed5269e2547dbe1454cc7ef7a1f8 diff --git a/metadata/md5-cache/net-misc/iprange-1.0.4 b/metadata/md5-cache/net-misc/iprange-1.0.4 index 05bbc77a0805..5cd98d06ff4b 100644 --- a/metadata/md5-cache/net-misc/iprange-1.0.4 +++ b/metadata/md5-cache/net-misc/iprange-1.0.4 @@ -2,8 +2,8 @@ DEFINED_PHASES=- DESCRIPTION=A tool capable of managing sets of IPs EAPI=7 HOMEPAGE=https://firehol.org -KEYWORDS=amd64 arm ppc ~x86 +KEYWORDS=amd64 arm ~arm64 ppc ~x86 LICENSE=BSD-2 SLOT=0 SRC_URI=https://github.com/firehol/iprange/releases/download/v1.0.4/iprange-1.0.4.tar.xz -_md5_=514810a25fffc9c2b4b12150217ee8f2 +_md5_=273d57980d8db034fa53788daa0460d4 diff --git a/metadata/md5-cache/net-misc/memcached-1.6.9 b/metadata/md5-cache/net-misc/memcached-1.6.9 new file mode 100644 index 000000000000..eb6736f2c49f --- /dev/null +++ b/metadata/md5-cache/net-misc/memcached-1.6.9 @@ -0,0 +1,15 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=>=dev-libs/libevent-1.4:= dev-lang/perl sasl? ( dev-libs/cyrus-sasl ) seccomp? ( sys-libs/libseccomp ) selinux? ( sec-policy/selinux-memcached ) acct-user/memcached test? ( virtual/perl-Test-Harness >=dev-perl/Cache-Memcached-1.24 ) +DESCRIPTION=High-performance, distributed memory object caching system +EAPI=7 +HOMEPAGE=http://memcached.org/ +IUSE=debug sasl seccomp selinux slabs-reassign test +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=BSD +RDEPEND=>=dev-libs/libevent-1.4:= dev-lang/perl sasl? ( dev-libs/cyrus-sasl ) seccomp? ( sys-libs/libseccomp ) selinux? ( sec-policy/selinux-memcached ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://www.memcached.org/files/memcached-1.6.9.tar.gz https://www.memcached.org/files/old/memcached-1.6.9.tar.gz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=17e64932689602c93a2b01c8e641a84c diff --git a/metadata/md5-cache/net-misc/mikutter-4.0.6 b/metadata/md5-cache/net-misc/mikutter-4.0.6 index 00adabdab802..dcdfbbea7733 100644 --- a/metadata/md5-cache/net-misc/mikutter-4.0.6 +++ b/metadata/md5-cache/net-misc/mikutter-4.0.6 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=http://mikutter.hachune.net/bin/mikutter-4.0.6.tar.gz https://raw.githubusercontent.com/toshia/twitter_api_keys/30071c3008e4616e723cf4e734fc79254019af09/twitter_api_keys.rb -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6f29f2e24949a501835d649619f3ee93 diff --git a/metadata/md5-cache/net-misc/mikutter-9999 b/metadata/md5-cache/net-misc/mikutter-9999 index ae951905c662..ee86c85ba554 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_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://raw.githubusercontent.com/toshia/twitter_api_keys/30071c3008e4616e723cf4e734fc79254019af09/twitter_api_keys.rb -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=6f29f2e24949a501835d649619f3ee93 diff --git a/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r12 b/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r12 index c1981bba7940..da7e12495b15 100644 --- a/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r12 +++ b/metadata/md5-cache/net-misc/netkit-telnetd-0.17-r12 @@ -3,10 +3,10 @@ DEPEND=>=sys-libs/ncurses-5.2:= !net-misc/telnet-bsd DESCRIPTION=Standard Linux telnet client and server EAPI=6 HOMEPAGE=https://launchpad.net/netkit-telnet -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86 LICENSE=BSD RDEPEND=>=sys-libs/ncurses-5.2:= !net-misc/telnet-bsd SLOT=0 SRC_URI=mirror://gentoo/netkit-telnet-0.17.tar.gz mirror://debian/pool/main/n/netkit-telnet/netkit-telnet_0.17-41.debian.tar.xz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=76f414b6a54bb34cddbe1dd3f90ea8f6 +_md5_=3da73457a87b0513870672f5b90fe753 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2020.11.21.1 b/metadata/md5-cache/net-misc/youtube-dl-2020.11.21.1 new file mode 100644 index 000000000000..d04aa1a3ae71 --- /dev/null +++ b/metadata/md5-cache/net-misc/youtube-dl-2020.11.21.1 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-python/pycryptodome[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/nose-1.3.7-r4[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install postinst prepare test +DESCRIPTION=Download videos from YouTube.com (and more sites...) +EAPI=7 +HOMEPAGE=https://youtube-dl.org/ https://github.com/ytdl-org/youtube-dl/ +IUSE=test python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +LICENSE=public-domain +RDEPEND=dev-python/pycryptodome[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://youtube-dl.org/downloads/2020.11.21.1/youtube-dl-2020.11.21.1.tar.gz +_eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=b6bf402b380503043b4e27f70a9c92f0 diff --git a/metadata/md5-cache/net-misc/zsync-0.6.2-r1 b/metadata/md5-cache/net-misc/zsync-0.6.2-r1 index e50caaef5d96..e54a07b86c49 100644 --- a/metadata/md5-cache/net-misc/zsync-0.6.2-r1 +++ b/metadata/md5-cache/net-misc/zsync-0.6.2-r1 @@ -3,9 +3,9 @@ DEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 DESCRIPTION=Partial/differential file download client over HTTP which uses the rsync algorithm EAPI=5 HOMEPAGE=http://zsync.moria.org.uk/ -KEYWORDS=amd64 ~arm ~ppc ~ppc64 x86 +KEYWORDS=amd64 ~arm ppc ppc64 x86 LICENSE=Artistic-2 SLOT=0 SRC_URI=http://zsync.moria.org.uk/download/zsync-0.6.2.tar.bz2 http://www.gzip.org/zlib/zlib-1.2.3.tar.bz2 http://www.zlib.net/zlib-1.2.3.tar.bz2 _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=1903483c4876d7fd2f9d26ae43d811ce +_md5_=0be0796d5dd11fbf561de541d842a06e diff --git a/metadata/md5-cache/net-nds/Manifest.gz b/metadata/md5-cache/net-nds/Manifest.gz index 52c57268b8d1..58f9e355b694 100644 Binary files a/metadata/md5-cache/net-nds/Manifest.gz and b/metadata/md5-cache/net-nds/Manifest.gz differ diff --git a/metadata/md5-cache/net-nds/openldap-2.4.56 b/metadata/md5-cache/net-nds/openldap-2.4.56 new file mode 100644 index 000000000000..81011010e922 --- /dev/null +++ b/metadata/md5-cache/net-nds/openldap-2.4.56 @@ -0,0 +1,16 @@ +BDEPEND=!minimal? ( acct-group/ldap acct-user/ldap ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 ssl? ( || ( dev-libs/openssl:0 dev-libs/libressl:0 ) ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst preinst prepare setup test +DEPEND=ssl? ( !gnutls? ( !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libgcrypt-1.5.3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) sasl? ( dev-libs/cyrus-sasl:= ) !minimal? ( sys-devel/libtool sys-libs/e2fsprogs-libs >=dev-db/lmdb-0.9.18:= tcpd? ( sys-apps/tcp-wrappers ) odbc? ( !iodbc? ( dev-db/unixODBC ) iodbc? ( dev-db/libiodbc ) ) perl? ( dev-lang/perl:=[-build(-)] ) samba? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) berkdb? ( =dev-libs/openssl-1.0.1h-r2:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) libressl? ( dev-libs/libressl:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) gnutls? ( >=net-libs/gnutls-2.12.23-r6:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/libgcrypt-1.5.3:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) ) sasl? ( dev-libs/cyrus-sasl:= ) !minimal? ( sys-devel/libtool sys-libs/e2fsprogs-libs >=dev-db/lmdb-0.9.18:= tcpd? ( sys-apps/tcp-wrappers ) odbc? ( !iodbc? ( dev-db/unixODBC ) iodbc? ( dev-db/libiodbc ) ) perl? ( dev-lang/perl:=[-build(-)] ) samba? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) ) berkdb? ( =dev-libs/glib-2.26:2 dev-libs/gmime:2.6 >=sys-libs/zlib-1.2.0 >=x11-libs/gtk+-2.16:2 gnome-keyring? ( >=gnome-base/libgnome-keyring-3.2 ) libnotify? ( >=x11-libs/libnotify-0.4.1:0= ) spell? ( >=app-text/enchant-1.6:0/0 >=app-text/gtkspell-2.0.7:2 ) ssl? ( >=net-libs/gnutls-3:0= ) app-text/yelp-tools >=sys-devel/gettext-0.19.7 virtual/pkgconfig >=app-portage/elt-patches-20170815 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=A newsreader for GNOME +EAPI=6 +HOMEPAGE=http://pan.rebelbase.com/ +IUSE=dbus gnome-keyring libnotify spell ssl +KEYWORDS=~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-libs/glib-2.26:2 dev-libs/gmime:2.6 >=sys-libs/zlib-1.2.0 >=x11-libs/gtk+-2.16:2 gnome-keyring? ( >=gnome-base/libgnome-keyring-3.2 ) libnotify? ( >=x11-libs/libnotify-0.4.1:0= ) spell? ( >=app-text/enchant-1.6:0/0 >=app-text/gtkspell-2.0.7:2 ) ssl? ( >=net-libs/gnutls-3:0= ) +SLOT=0 +SRC_URI=http://pan.rebelbase.com/download/releases/0.146/source/pan-0.146.tar.bz2 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 5e9aaae6eb511a4c4d9964fe8259110d gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=28b349824e13775c6ce08f713648dafc diff --git a/metadata/md5-cache/net-print/Manifest.gz b/metadata/md5-cache/net-print/Manifest.gz index 6095931f330d..2b961a1ed562 100644 Binary files a/metadata/md5-cache/net-print/Manifest.gz and b/metadata/md5-cache/net-print/Manifest.gz differ diff --git a/metadata/md5-cache/net-print/hplip-3.20.9-r4 b/metadata/md5-cache/net-print/hplip-3.20.9-r5 similarity index 99% rename from metadata/md5-cache/net-print/hplip-3.20.9-r4 rename to metadata/md5-cache/net-print/hplip-3.20.9-r5 index 3691b7d801e1..1b802f5a61de 100644 --- a/metadata/md5-cache/net-print/hplip-3.20.9-r4 +++ b/metadata/md5-cache/net-print/hplip-3.20.9-r5 @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 SLOT=0 SRC_URI=mirror://sourceforge/hplip/hplip-3.20.9.tar.gz https://dev.gentoo.org/~billie/distfiles/hplip-3.20.9-patches-2.tar.xz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 -_md5_=43ddce2420465c20398f43adadc109df +_md5_=c36ddf0ad0c2cab1f691e507d42ae9cf diff --git a/metadata/md5-cache/net-vpn/Manifest.gz b/metadata/md5-cache/net-vpn/Manifest.gz index d3a5c10d920e..6bf96ed9f332 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/libreswan-4.1-r1 b/metadata/md5-cache/net-vpn/libreswan-4.1-r1 new file mode 100644 index 000000000000..280771e1fc34 --- /dev/null +++ b/metadata/md5-cache/net-vpn/libreswan-4.1-r1 @@ -0,0 +1,15 @@ +BDEPEND=app-text/docbook-xml-dtd:4.1.2 app-text/xmlto dev-libs/nss sys-devel/bison sys-devel/flex virtual/pkgconfig test? ( dev-python/setproctitle ) virtual/pkgconfig +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=dev-libs/gmp:0= dev-libs/libevent:0= dev-libs/nspr >=dev-libs/nss-3.42 >=sys-kernel/linux-headers-4.19 caps? ( sys-libs/libcap-ng ) curl? ( net-misc/curl ) dnssec? ( >=net-dns/unbound-1.9.1-r1:= net-libs/ldns ) ldap? ( net-nds/openldap ) pam? ( sys-libs/pam ) seccomp? ( sys-libs/libseccomp ) selinux? ( sys-libs/libselinux ) systemd? ( sys-apps/systemd:0= ) +DESCRIPTION=IPsec implementation for Linux, fork of Openswan +EAPI=7 +HOMEPAGE=https://libreswan.org/ +IUSE=caps curl dnssec ldap networkmanager pam seccomp selinux systemd test +KEYWORDS=~amd64 ~arm ~ppc ~x86 +LICENSE=GPL-2 BSD-4 RSA DES +RDEPEND=dev-libs/gmp:0= dev-libs/libevent:0= dev-libs/nspr >=dev-libs/nss-3.42 >=sys-kernel/linux-headers-4.19 caps? ( sys-libs/libcap-ng ) curl? ( net-misc/curl ) dnssec? ( >=net-dns/unbound-1.9.1-r1:= net-libs/ldns ) ldap? ( net-nds/openldap ) pam? ( sys-libs/pam ) seccomp? ( sys-libs/libseccomp ) selinux? ( sys-libs/libselinux ) systemd? ( sys-apps/systemd:0= ) dev-libs/nss[utils(+)] sys-apps/iproute2 !net-vpn/strongswan selinux? ( sec-policy/selinux-ipsec ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://download.libreswan.org/libreswan-4.1.tar.gz +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=92a649a206ab2d43ea279057ac86f996 diff --git a/metadata/md5-cache/net-vpn/ocserv-1.1.1 b/metadata/md5-cache/net-vpn/ocserv-1.1.1 new file mode 100644 index 000000000000..c6a4afa5bd5b --- /dev/null +++ b/metadata/md5-cache/net-vpn/ocserv-1.1.1 @@ -0,0 +1,15 @@ +BDEPEND=virtual/pkgconfig test? ( net-libs/gnutls[tools(+)] net-libs/socket_wrapper net-vpn/openconnect sys-libs/nss_wrapper sys-libs/uid_wrapper ) virtual/pkgconfig +DEFINED_PHASES=configure install +DEPEND=dev-libs/libnl:3= dev-libs/libev:0= >=dev-libs/nettle-2.7:0= dev-libs/pcl:0= dev-libs/protobuf-c:0= >=net-libs/gnutls-3.3.0:0= net-libs/http-parser:0= sys-libs/readline:0= sys-libs/talloc:0= geoip? ( dev-libs/geoip:0= ) kerberos? ( virtual/krb5 ) lz4? ( app-arch/lz4:0= ) otp? ( sys-auth/oath-toolkit:0= ) pam? ( sys-libs/pam:0= ) radius? ( net-dialup/freeradius-client:0= ) seccomp? ( sys-libs/libseccomp:0= ) systemd? ( sys-apps/systemd:0= ) tcpd? ( sys-apps/tcp-wrappers:0= ) +DESCRIPTION=Openconnect SSL VPN server +EAPI=7 +HOMEPAGE=https://ocserv.gitlab.io/www/index.html +IUSE=geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test +KEYWORDS=~amd64 ~arm ~arm64 ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-libs/libnl:3= dev-libs/libev:0= >=dev-libs/nettle-2.7:0= dev-libs/pcl:0= dev-libs/protobuf-c:0= >=net-libs/gnutls-3.3.0:0= net-libs/http-parser:0= sys-libs/readline:0= sys-libs/talloc:0= geoip? ( dev-libs/geoip:0= ) kerberos? ( virtual/krb5 ) lz4? ( app-arch/lz4:0= ) otp? ( sys-auth/oath-toolkit:0= ) pam? ( sys-libs/pam:0= ) radius? ( net-dialup/freeradius-client:0= ) seccomp? ( sys-libs/libseccomp:0= ) systemd? ( sys-apps/systemd:0= ) tcpd? ( sys-apps/tcp-wrappers:0= ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=ftp://ftp.infradead.org/pub/ocserv/ocserv-1.1.1.tar.xz +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=452a39f399f3b9223b9d67879a7b1f59 diff --git a/metadata/md5-cache/net-vpn/tor-0.4.4.6 b/metadata/md5-cache/net-vpn/tor-0.4.4.6 index bc171f0b3471..a2297c870af4 100644 --- a/metadata/md5-cache/net-vpn/tor-0.4.4.6 +++ b/metadata/md5-cache/net-vpn/tor-0.4.4.6 @@ -5,11 +5,11 @@ DESCRIPTION=Anonymizing overlay network for TCP EAPI=7 HOMEPAGE=http://www.torproject.org/ IUSE=caps doc libressl lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd -KEYWORDS=~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos +KEYWORDS=amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 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 ) !libressl? ( dev-libs/openssl:0=[-bindist] ) libressl? ( dev-libs/libressl:0= ) 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.4.6.tar.gz https://archive.torproject.org/tor-package-archive/tor-0.4.4.6.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=bf2245ff7ba0b185d2a47a714469619a +_md5_=7a2a2577b23c572c81ec8a4e4631254e diff --git a/metadata/md5-cache/sci-calculators/Manifest.gz b/metadata/md5-cache/sci-calculators/Manifest.gz index fcd9ce803760..811277d1ec14 100644 Binary files a/metadata/md5-cache/sci-calculators/Manifest.gz and b/metadata/md5-cache/sci-calculators/Manifest.gz differ diff --git a/metadata/md5-cache/sci-calculators/galculator-2.1.4-r1 b/metadata/md5-cache/sci-calculators/galculator-2.1.4-r1 new file mode 100644 index 000000000000..c31c09d0f395 --- /dev/null +++ b/metadata/md5-cache/sci-calculators/galculator-2.1.4-r1 @@ -0,0 +1,13 @@ +BDEPEND=dev-util/intltool sys-devel/flex sys-devel/gettext virtual/pkgconfig +DEFINED_PHASES=install postinst postrm preinst prepare +DEPEND=dev-libs/glib:2 x11-libs/gtk+:3 x11-libs/pango dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=GTK+ based algebraic and RPN calculator +EAPI=7 +HOMEPAGE=http://galculator.mnim.org/ +KEYWORDS=~alpha ~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos +LICENSE=GPL-2+ +RDEPEND=dev-libs/glib:2 x11-libs/gtk+:3 x11-libs/pango +SLOT=0 +SRC_URI=http://galculator.mnim.org/downloads/galculator-2.1.4.tar.bz2 +_eclasses_=xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=60b22c5bbf85abeff269c0d91bd71c7e diff --git a/metadata/md5-cache/sci-chemistry/Manifest.gz b/metadata/md5-cache/sci-chemistry/Manifest.gz index 791b43a50437..b1ccbda91b45 100644 Binary files a/metadata/md5-cache/sci-chemistry/Manifest.gz and b/metadata/md5-cache/sci-chemistry/Manifest.gz differ diff --git a/metadata/md5-cache/sci-chemistry/procheck-3.5.4-r3 b/metadata/md5-cache/sci-chemistry/procheck-3.5.4-r3 index 7f00cac66f33..706114a12509 100644 --- a/metadata/md5-cache/sci-chemistry/procheck-3.5.4-r3 +++ b/metadata/md5-cache/sci-chemistry/procheck-3.5.4-r3 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile install nofetch setup DEPEND=app-shells/tcsh virtual/fortran DESCRIPTION=Checks the stereochemical quality of a protein structure EAPI=6 -HOMEPAGE=http://www.biochem.ucl.ac.uk/~roman/procheck/procheck.html +HOMEPAGE=https://www.ebi.ac.uk/thornton-srv/software/PROCHECK IUSE=doc KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=procheck @@ -11,4 +11,4 @@ RESTRICT=fetch SLOT=0 SRC_URI=procheck-3.5.4.tar.gz procheck-3.5.4-README doc? ( procheck-3.5.4-manual.tar.gz ) _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e fortran-2 b4796813ccda91c9c0d3463fc90aa969 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=9512a8987e97d2927f32c84787441b1c +_md5_=37126e817c9ca6bc8863625728e8be68 diff --git a/metadata/md5-cache/sci-electronics/Manifest.gz b/metadata/md5-cache/sci-electronics/Manifest.gz index fcfb1b1e6175..d41648c3e7f0 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/alliance-5.0.20110203 b/metadata/md5-cache/sci-electronics/alliance-5.0.20110203 deleted file mode 100644 index e425b70453e3..000000000000 --- a/metadata/md5-cache/sci-electronics/alliance-5.0.20110203 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare -DEPEND=>=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXt -DESCRIPTION=Digital IC design tools (simulation, synthesis, place/route, etc...) -EAPI=4 -HOMEPAGE=https://soc-extras.lip6.fr/en/alliance-abstract-en/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 LGPL-2 -RDEPEND=>=x11-libs/motif-2.3:0 x11-libs/libXpm x11-libs/libXt -SLOT=0 -SRC_URI=http://www-asim.lip6.fr/pub/alliance/distribution/5.0/alliance-5.0-20110203.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=3ea11f01dd08d2ad63c98783c4f7700a diff --git a/metadata/md5-cache/sci-electronics/klayout-0.26.5 b/metadata/md5-cache/sci-electronics/klayout-0.26.5 index 75f18f779725..72e7d0bea109 100644 --- a/metadata/md5-cache/sci-electronics/klayout-0.26.5 +++ b/metadata/md5-cache/sci-electronics/klayout-0.26.5 @@ -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_6 python_single_target_python3_7 python_single_target_python3_8 ) || ( ruby_targets_ruby25 ) SLOT=0 SRC_URI=https://www.klayout.org/downloads/source/klayout-0.26.5.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=ef9cdab5df496dbc395405e25742fb13 diff --git a/metadata/md5-cache/sci-electronics/klayout-0.26.8 b/metadata/md5-cache/sci-electronics/klayout-0.26.8 index 237691ffbe3d..d5afd14a6d64 100644 --- a/metadata/md5-cache/sci-electronics/klayout-0.26.8 +++ b/metadata/md5-cache/sci-electronics/klayout-0.26.8 @@ -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_6 python_single_target_python3_7 python_single_target_python3_8 ) || ( ruby_targets_ruby26 ) SLOT=0 SRC_URI=https://www.klayout.org/downloads/source/klayout-0.26.8.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c42ce5652d688c1ed1586b307f2284a6 diff --git a/metadata/md5-cache/sci-electronics/klayout-9999 b/metadata/md5-cache/sci-electronics/klayout-9999 index d2d1624f3558..8b1decc2b624 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_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) REQUIRED_USE=^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) || ( ruby_targets_ruby26 ) SLOT=0 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 git-r3 3e7ec3d6619213460c85e2aa48398441 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 git-r3 3e7ec3d6619213460c85e2aa48398441 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=c42ce5652d688c1ed1586b307f2284a6 diff --git a/metadata/md5-cache/sci-geosciences/Manifest.gz b/metadata/md5-cache/sci-geosciences/Manifest.gz index 0d5dd8b26d6f..0b00b35e170c 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/qgis-3.16.1 b/metadata/md5-cache/sci-geosciences/qgis-3.16.1 new file mode 100644 index 000000000000..ba5e5f132590 --- /dev/null +++ b/metadata/md5-cache/sci-geosciences/qgis-3.16.1 @@ -0,0 +1,16 @@ +BDEPEND=python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) dev-qt/linguist-tools:5 sys-devel/bison sys-devel/flex dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test +DEPEND=>=app-crypt/qca-2.3.0:2[ssl] >=dev-db/spatialite-4.2.0 dev-db/sqlite:3 dev-libs/expat dev-libs/libzip:= dev-libs/protobuf:= dev-libs/qtkeychain:= dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtpositioning:5 dev-qt/qtprintsupport:5 dev-qt/qtserialport:5 dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-gfx/exiv2:= >=sci-libs/gdal-3.0.4:=[geos] sci-libs/geos sci-libs/libspatialindex:= >=sci-libs/proj-6.3.1:= sys-libs/zlib >=x11-libs/qscintilla-2.10.3:= >=x11-libs/qwt-6.1.3-r2:6=[svg] 3d? ( dev-qt/qt3d:5 ) georeferencer? ( sci-libs/gsl:= ) grass? ( =sci-geosciences/grass-7*:= ) hdf5? ( sci-libs/hdf5:= ) mapserver? ( dev-libs/fcgi ) netcdf? ( sci-libs/netcdf:= ) opencl? ( virtual/opencl ) oracle? ( dev-db/oracle-instantclient:= sci-libs/gdal:=[oracle] ) polar? ( >=x11-libs/qwtpolar-1.1.1-r2 ) postgres? ( dev-db/postgresql:= ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_7? ( dev-python/httplib2[python_targets_python3_7(-)] dev-python/jinja[python_targets_python3_7(-)] dev-python/markupsafe[python_targets_python3_7(-)] dev-python/owslib[python_targets_python3_7(-)] dev-python/pygments[python_targets_python3_7(-)] dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,python_targets_python3_7(-)] dev-python/python-dateutil[python_targets_python3_7(-)] dev-python/pytz[python_targets_python3_7(-)] dev-python/pyyaml[python_targets_python3_7(-)] >=dev-python/qscintilla-python-2.10.3[python_targets_python3_7(-)] dev-python/requests[python_targets_python3_7(-)] dev-python/sip:=[python_targets_python3_7(-)] dev-python/six[python_targets_python3_7(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-python/httplib2[python_targets_python3_8(-)] dev-python/jinja[python_targets_python3_8(-)] dev-python/markupsafe[python_targets_python3_8(-)] dev-python/owslib[python_targets_python3_8(-)] dev-python/pygments[python_targets_python3_8(-)] dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,python_targets_python3_8(-)] dev-python/python-dateutil[python_targets_python3_8(-)] dev-python/pytz[python_targets_python3_8(-)] dev-python/pyyaml[python_targets_python3_8(-)] >=dev-python/qscintilla-python-2.10.3[python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] dev-python/sip:=[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_8(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/httplib2[python_targets_python3_9(-)] dev-python/jinja[python_targets_python3_9(-)] dev-python/markupsafe[python_targets_python3_9(-)] dev-python/owslib[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,python_targets_python3_9(-)] dev-python/python-dateutil[python_targets_python3_9(-)] dev-python/pytz[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] >=dev-python/qscintilla-python-2.10.3[python_targets_python3_9(-)] dev-python/requests[python_targets_python3_9(-)] dev-python/sip:=[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_9(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_9(-)] ) ) ) qml? ( dev-qt/qtdeclarative:5 ) dev-qt/qttest:5 dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=User friendly Geographic Information System +EAPI=7 +HOMEPAGE=https://www.qgis.org/en/site/ +IUSE=3d examples georeferencer grass hdf5 mapserver netcdf opencl oracle polar postgres python qml python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ GPL-3+ +RDEPEND=>=app-crypt/qca-2.3.0:2[ssl] >=dev-db/spatialite-4.2.0 dev-db/sqlite:3 dev-libs/expat dev-libs/libzip:= dev-libs/protobuf:= dev-libs/qtkeychain:= dev-qt/designer:5 dev-qt/qtconcurrent:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtpositioning:5 dev-qt/qtprintsupport:5 dev-qt/qtserialport:5 dev-qt/qtsql:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-gfx/exiv2:= >=sci-libs/gdal-3.0.4:=[geos] sci-libs/geos sci-libs/libspatialindex:= >=sci-libs/proj-6.3.1:= sys-libs/zlib >=x11-libs/qscintilla-2.10.3:= >=x11-libs/qwt-6.1.3-r2:6=[svg] 3d? ( dev-qt/qt3d:5 ) georeferencer? ( sci-libs/gsl:= ) grass? ( =sci-geosciences/grass-7*:= ) hdf5? ( sci-libs/hdf5:= ) mapserver? ( dev-libs/fcgi ) netcdf? ( sci-libs/netcdf:= ) opencl? ( virtual/opencl ) oracle? ( dev-db/oracle-instantclient:= sci-libs/gdal:=[oracle] ) polar? ( >=x11-libs/qwtpolar-1.1.1-r2 ) postgres? ( dev-db/postgresql:= ) python? ( python_single_target_python3_7? ( dev-lang/python:3.7[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9[sqlite] >=dev-lang/python-exec-2:=[python_targets_python3_9] ) python_single_target_python3_7? ( dev-python/httplib2[python_targets_python3_7(-)] dev-python/jinja[python_targets_python3_7(-)] dev-python/markupsafe[python_targets_python3_7(-)] dev-python/owslib[python_targets_python3_7(-)] dev-python/pygments[python_targets_python3_7(-)] dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,python_targets_python3_7(-)] dev-python/python-dateutil[python_targets_python3_7(-)] dev-python/pytz[python_targets_python3_7(-)] dev-python/pyyaml[python_targets_python3_7(-)] >=dev-python/qscintilla-python-2.10.3[python_targets_python3_7(-)] dev-python/requests[python_targets_python3_7(-)] dev-python/sip:=[python_targets_python3_7(-)] dev-python/six[python_targets_python3_7(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_7(-)] ) ) python_single_target_python3_8? ( dev-python/httplib2[python_targets_python3_8(-)] dev-python/jinja[python_targets_python3_8(-)] dev-python/markupsafe[python_targets_python3_8(-)] dev-python/owslib[python_targets_python3_8(-)] dev-python/pygments[python_targets_python3_8(-)] dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,python_targets_python3_8(-)] dev-python/python-dateutil[python_targets_python3_8(-)] dev-python/pytz[python_targets_python3_8(-)] dev-python/pyyaml[python_targets_python3_8(-)] >=dev-python/qscintilla-python-2.10.3[python_targets_python3_8(-)] dev-python/requests[python_targets_python3_8(-)] dev-python/sip:=[python_targets_python3_8(-)] dev-python/six[python_targets_python3_8(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_8(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_8(-)] ) ) python_single_target_python3_9? ( dev-python/httplib2[python_targets_python3_9(-)] dev-python/jinja[python_targets_python3_9(-)] dev-python/markupsafe[python_targets_python3_9(-)] dev-python/owslib[python_targets_python3_9(-)] dev-python/pygments[python_targets_python3_9(-)] dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,python_targets_python3_9(-)] dev-python/python-dateutil[python_targets_python3_9(-)] dev-python/pytz[python_targets_python3_9(-)] dev-python/pyyaml[python_targets_python3_9(-)] >=dev-python/qscintilla-python-2.10.3[python_targets_python3_9(-)] dev-python/requests[python_targets_python3_9(-)] dev-python/sip:=[python_targets_python3_9(-)] dev-python/six[python_targets_python3_9(-)] >=sci-libs/gdal-2.2.3[python,python_targets_python3_9(-)] postgres? ( dev-python/psycopg:2[python_targets_python3_9(-)] ) ) ) qml? ( dev-qt/qtdeclarative:5 ) sci-geosciences/gpsbabel +REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) mapserver? ( python ) +RESTRICT=test +SLOT=0 +SRC_URI=https://qgis.org/downloads/qgis-3.16.1.tar.bz2 examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz ) +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=61f2cc65edbfef1594edc032e41bee81 diff --git a/metadata/md5-cache/sci-geosciences/qgis-9999 b/metadata/md5-cache/sci-geosciences/qgis-9999 index 0797f1156026..33b0c3285fc0 100644 --- a/metadata/md5-cache/sci-geosciences/qgis-9999 +++ b/metadata/md5-cache/sci-geosciences/qgis-9999 @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( python_single_target_python3_7 python_single_target_python3_8 RESTRICT=test SLOT=0 _eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 qmake-utils 4eb5e05ef7ee630c003e3f0edc094135 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=a0de8a0e00feae07cd25c0410301bd52 +_md5_=abf30d6841e32e220ae860fffb8710bb diff --git a/metadata/md5-cache/sci-libs/Manifest.gz b/metadata/md5-cache/sci-libs/Manifest.gz index 277031f15075..5cdf51679697 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 b/metadata/md5-cache/sci-libs/libsigrok-0.5.2 index c86faa63150d..8af86eef6265 100644 --- a/metadata/md5-cache/sci-libs/libsigrok-0.5.2 +++ b/metadata/md5-cache/sci-libs/libsigrok-0.5.2 @@ -11,5 +11,5 @@ REQUIRED_USE=java? ( cxx ) python? ( cxx || ( python_targets_python3_6 python_ta RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://sigrok.org/download/source/libsigrok/libsigrok-0.5.2.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=0576f088ee6843d402819f46486869f2 diff --git a/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r1 b/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r1 index 1054e9251df1..51d20df2fd91 100644 --- a/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r1 +++ b/metadata/md5-cache/sci-libs/libsigrok-0.5.2-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=java? ( cxx ) python? ( cxx || ( python_targets_python3_6 python_ta RESTRICT=!test? ( test ) SLOT=0/4 SRC_URI=https://sigrok.org/download/source/libsigrok/libsigrok-0.5.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=a2b1faa7dba62254d6f89fdda817f15e diff --git a/metadata/md5-cache/sci-libs/libsigrok-9999 b/metadata/md5-cache/sci-libs/libsigrok-9999 index a4918d32bb7e..0268c91b342d 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.4 ) !static-libs? ( >=dev-libs/glib-2.32.0 >=dev REQUIRED_USE=java? ( cxx ) python? ( cxx || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) ) ruby? ( cxx || ( ruby_targets_ruby26 ruby_targets_ruby25 ) ) RESTRICT=!test? ( test ) SLOT=0/9999 -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 git-r3 3e7ec3d6619213460c85e2aa48398441 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 estack 686eaab303305a908fd57b2fd7617800 git-r3 3e7ec3d6619213460c85e2aa48398441 java-pkg-opt-2 77d2e22d0de7640f817d20e861c0ff3f java-utils-2 ec7a89849c84f93e9c6db27812923888 libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb udev 452708c3f55cf6e918b045adb949a9e6 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=f2f378c0ec1ad403f533247d506bd2a0 diff --git a/metadata/md5-cache/sci-libs/mpfi-1.5.4 b/metadata/md5-cache/sci-libs/mpfi-1.5.4 new file mode 100644 index 000000000000..56d883379b37 --- /dev/null +++ b/metadata/md5-cache/sci-libs/mpfi-1.5.4 @@ -0,0 +1,13 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=configure install prepare +DEPEND=dev-libs/gmp:0= dev-libs/mpfr:0= +DESCRIPTION=Multiple precision interval arithmetic library based on MPFR +EAPI=7 +HOMEPAGE=http://perso.ens-lyon.fr/nathalie.revol/software.html +KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=dev-libs/gmp:0= dev-libs/mpfr:0= +SLOT=0 +SRC_URI=https://gforge.inria.fr/frs/download.php/file/38111/mpfi-1.5.4.tgz +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=2d66d2d333ac50a0f3f4b3d5e510be58 diff --git a/metadata/md5-cache/sci-mathematics/Manifest.gz b/metadata/md5-cache/sci-mathematics/Manifest.gz index f5d50d6955d0..9b331b1bc678 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/cgal-5.1 b/metadata/md5-cache/sci-mathematics/cgal-5.1 new file mode 100644 index 000000000000..5103685b85ca --- /dev/null +++ b/metadata/md5-cache/sci-mathematics/cgal-5.1 @@ -0,0 +1,14 @@ +BDEPEND=app-arch/xz-utils virtual/pkgconfig dev-util/ninja dev-util/cmake +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-cpp/eigen dev-libs/boost:=[threads] dev-libs/mpfr:= sys-libs/zlib x11-libs/libX11:= virtual/glu:= virtual/opengl:= gmp? ( dev-libs/gmp:=[cxx] ) mpfi? ( sci-libs/mpfi ) ntl? ( dev-libs/ntl ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 ) +DESCRIPTION=C++ library for geometric algorithms and data structures +EAPI=7 +HOMEPAGE=https://www.cgal.org/ +IUSE=doc examples +gmp mpfi ntl qt5 +KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +LICENSE=LGPL-3 GPL-3 Boost-1.0 +RDEPEND=dev-cpp/eigen dev-libs/boost:=[threads] dev-libs/mpfr:= sys-libs/zlib x11-libs/libX11:= virtual/glu:= virtual/opengl:= gmp? ( dev-libs/gmp:=[cxx] ) mpfi? ( sci-libs/mpfi ) ntl? ( dev-libs/ntl ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 ) +SLOT=0/14 +SRC_URI=https://github.com/CGAL/cgal/releases/download/v5.1/CGAL-5.1.tar.xz doc? ( https://github.com/CGAL/cgal/releases/download/v5.1/CGAL-5.1-doc_html.tar.xz ) +_eclasses_=cmake ac7cb516f6a288b6a82bc0649ce49878 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=395f9701967409f28ee252a6c9a7757f diff --git a/metadata/md5-cache/sys-apps/Manifest.gz b/metadata/md5-cache/sys-apps/Manifest.gz index 8d14f652be27..20741808e011 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/dbus-1.12.20 b/metadata/md5-cache/sys-apps/dbus-1.12.20 index 66edbc22e9d8..7ca44c272378 100644 --- a/metadata/md5-cache/sys-apps/dbus-1.12.20 +++ b/metadata/md5-cache/sys-apps/dbus-1.12.20 @@ -5,7 +5,7 @@ DESCRIPTION=A message bus system, a simple way for applications to talk to each EAPI=7 HOMEPAGE=https://dbus.freedesktop.org/ IUSE=debug doc elogind kernel_linux selinux static-libs systemd test user-session X kernel_linux 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 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( AFL-2.1 GPL-2 ) RDEPEND=>=dev-libs/expat-2.1.0 elogind? ( sys-auth/elogind ) selinux? ( sys-libs/libselinux ) systemd? ( sys-apps/systemd:0= ) X? ( x11-libs/libX11 x11-libs/libXt ) acct-user/messagebus selinux? ( sec-policy/selinux-dbus ) REQUIRED_USE=?? ( elogind systemd ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://dbus.freedesktop.org/releases/dbus/dbus-1.12.20.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=94cdfa10688fc511be6fd43ca3450266 +_md5_=a99c0ed8f839f3d469a243de8a049f25 diff --git a/metadata/md5-cache/sys-apps/firejail-0.9.62 b/metadata/md5-cache/sys-apps/firejail-0.9.62 deleted file mode 100644 index 7e89d455d697..000000000000 --- a/metadata/md5-cache/sys-apps/firejail-0.9.62 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=!sys-apps/firejail-lts apparmor? ( sys-libs/libapparmor ) test? ( dev-tcltk/expect ) -DESCRIPTION=Security sandbox for any type of processes -EAPI=7 -HOMEPAGE=https://firejail.wordpress.com/ -IUSE=apparmor +chroot contrib debug +file-transfer +globalcfg +network +overlayfs +private-home +seccomp +suid test +userns vim-syntax +whitelist x11 -KEYWORDS=amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=apparmor? ( sys-libs/libapparmor ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/netblue30/firejail/archive/0.9.62.tar.gz -> firejail-0.9.62.tar.gz -_md5_=ff60ed6030067925410e00d2c4189159 diff --git a/metadata/md5-cache/sys-apps/firejail-0.9.62-r1 b/metadata/md5-cache/sys-apps/firejail-0.9.62-r1 deleted file mode 100644 index 3f9e37b5bf4c..000000000000 --- a/metadata/md5-cache/sys-apps/firejail-0.9.62-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare -DEPEND=apparmor? ( sys-libs/libapparmor ) !sys-apps/firejail-lts test? ( dev-tcltk/expect ) -DESCRIPTION=Security sandbox for any type of processes -EAPI=7 -HOMEPAGE=https://firejail.wordpress.com/ -IUSE=apparmor +chroot contrib debug +file-transfer +globalcfg +network +overlayfs +private-home +seccomp +suid test +userns vim-syntax +whitelist x11 -KEYWORDS=amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=apparmor? ( sys-libs/libapparmor ) -RESTRICT=!test? ( test ) -SLOT=0 -SRC_URI=https://github.com/netblue30/firejail/archive/0.9.62.tar.gz -> firejail-0.9.62.tar.gz -_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=926177bf80aedd692bc0002f5e04aafc diff --git a/metadata/md5-cache/sys-apps/firejail-0.9.64-r1 b/metadata/md5-cache/sys-apps/firejail-0.9.64-r1 new file mode 100644 index 000000000000..5aafe25e8721 --- /dev/null +++ b/metadata/md5-cache/sys-apps/firejail-0.9.64-r1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst prepare setup +DEPEND=!sys-apps/firejail-lts apparmor? ( sys-libs/libapparmor ) contrib? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) dbusproxy? ( sys-apps/xdg-dbus-proxy ) sys-libs/libseccomp test? ( dev-tcltk/expect ) +DESCRIPTION=Security sandbox for any type of processes +EAPI=7 +HOMEPAGE=https://firejail.wordpress.com/ +IUSE=X apparmor +chroot contrib +dbusproxy +file-transfer +globalcfg +network +overlayfs +private-home +suid test +userns +whitelist python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 kernel_linux +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=!sys-apps/firejail-lts apparmor? ( sys-libs/libapparmor ) contrib? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) dbusproxy? ( sys-apps/xdg-dbus-proxy ) +REQUIRED_USE=contrib? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://github.com/netblue30/firejail/releases/download/0.9.64/firejail-0.9.64.tar.xz +_eclasses_=linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=08cd5c052ffe944503c30f3bfb3f81f0 diff --git a/metadata/md5-cache/sys-apps/firejail-9999 b/metadata/md5-cache/sys-apps/firejail-9999 index 3e957baaa638..3d733201035d 100644 --- a/metadata/md5-cache/sys-apps/firejail-9999 +++ b/metadata/md5-cache/sys-apps/firejail-9999 @@ -1,14 +1,15 @@ BDEPEND=>=dev-vcs/git-1.8.2.1[curl] -DEFINED_PHASES=configure install prepare unpack -DEPEND=!sys-apps/firejail-lts apparmor? ( sys-libs/libapparmor ) test? ( dev-tcltk/expect ) +DEFINED_PHASES=compile configure install postinst prepare setup unpack +DEPEND=!sys-apps/firejail-lts apparmor? ( sys-libs/libapparmor ) contrib? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) dbusproxy? ( sys-apps/xdg-dbus-proxy ) sys-libs/libseccomp test? ( dev-tcltk/expect ) DESCRIPTION=Security sandbox for any type of processes EAPI=7 HOMEPAGE=https://firejail.wordpress.com/ -IUSE=apparmor +chroot contrib debug +file-transfer +globalcfg +network +overlayfs +private-home +seccomp +suid test +userns vim-syntax +whitelist x11 +IUSE=X apparmor +chroot contrib +dbusproxy +file-transfer +globalcfg +network +overlayfs +private-home +suid test +userns +whitelist python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 kernel_linux LICENSE=GPL-2 PROPERTIES=live -RDEPEND=apparmor? ( sys-libs/libapparmor ) -RESTRICT=test +RDEPEND=!sys-apps/firejail-lts apparmor? ( sys-libs/libapparmor ) contrib? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) dbusproxy? ( sys-apps/xdg-dbus-proxy ) +REQUIRED_USE=contrib? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) +RESTRICT=!test? ( test ) SLOT=0 -_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 -_md5_=5445cd36563e9ba68cc90b8ee5985430 +_eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=f6b21cd014559a5775dbb19c57d3b43e diff --git a/metadata/md5-cache/sys-apps/hdparm-9.56 b/metadata/md5-cache/sys-apps/hdparm-9.56 deleted file mode 100644 index b010846f512c..000000000000 --- a/metadata/md5-cache/sys-apps/hdparm-9.56 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install prepare -DESCRIPTION=Utility to change hard drive performance parameters -EAPI=6 -HOMEPAGE=https://sourceforge.net/projects/hdparm/ -IUSE=static -KEYWORDS=~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux -LICENSE=BSD GPL-2 -SLOT=0 -SRC_URI=mirror://sourceforge/hdparm/hdparm-9.56.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c06ead15cc39df26e6c52643982fe19a diff --git a/metadata/md5-cache/sys-apps/hdparm-9.60 b/metadata/md5-cache/sys-apps/hdparm-9.60 new file mode 100644 index 000000000000..982a7dbe3b36 --- /dev/null +++ b/metadata/md5-cache/sys-apps/hdparm-9.60 @@ -0,0 +1,11 @@ +DEFINED_PHASES=configure install prepare +DESCRIPTION=Utility to change hard drive performance parameters +EAPI=7 +HOMEPAGE=https://sourceforge.net/projects/hdparm/ +IUSE=static +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=BSD GPL-2 +SLOT=0 +SRC_URI=mirror://sourceforge/hdparm/hdparm-9.60.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=0e2ea0a515d30e9df193f9493453433f diff --git a/metadata/md5-cache/sys-apps/pkgcore-9999 b/metadata/md5-cache/sys-apps/pkgcore-9999 index 9121a46ddb32..e1f358780a00 100644 --- a/metadata/md5-cache/sys-apps/pkgcore-9999 +++ b/metadata/md5-cache/sys-apps/pkgcore-9999 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targe RESTRICT=!test? ( test ) SLOT=0 _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=90ed82c42d0d35c2f0485f203cfc173b +_md5_=5050901c461626963e1091c10eea3960 diff --git a/metadata/md5-cache/sys-apps/portage-3.0.10-r1 b/metadata/md5-cache/sys-apps/portage-3.0.10-r1 new file mode 100644 index 000000000000..cd570e1294b5 --- /dev/null +++ b/metadata/md5-cache/sys-apps/portage-3.0.10-r1 @@ -0,0 +1,17 @@ +BDEPEND=test? ( dev-vcs/git ) python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[bzip2(+),threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[bzip2(+),threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[bzip2(+),threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[bzip2(+),threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[bzip2(+),threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] +DEFINED_PHASES=compile configure install preinst prepare pretend setup test +DEPEND=!build? ( python_targets_pypy3? ( >=dev-python/pypy3-7.3.0:0=[ssl(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[ssl(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[ssl(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[ssl(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[ssl(+)] ) ) >=app-arch/tar-1.27 dev-lang/python-exec:2 >=sys-apps/sed-4.0.5 sys-devel/patch doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) apidoc? ( dev-python/sphinx dev-python/sphinx-epytext ) +DESCRIPTION=Portage is the package management and distribution system for Gentoo +EAPI=7 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Portage +IUSE=apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify selinux test xattr python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 kernel_linux +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) +RDEPEND=app-arch/zstd >=app-arch/tar-1.27 dev-lang/python-exec:2 >=sys-apps/findutils-4.4 !build? ( >=sys-apps/sed-4.0.5 app-shells/bash:0[readline] >=app-admin/eselect-1.2 rsync-verify? ( >=app-portage/gemato-14.5[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=app-crypt/openpgp-keys-gentoo-release-20180706 >=app-crypt/gnupg-2.2.4-r2[ssl(-)] ) ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_musl? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) kernel_linux? ( sys-apps/util-linux ) >=app-misc/pax-utils-0.1.17 selinux? ( >=sys-libs/libselinux-2.0.94[python,python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) xattr? ( kernel_linux? ( >=sys-apps/install-xattr-0.3 ) ) !=dev-python/pypy3-7.3.0:0=[bzip2(+),threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[bzip2(+),threads(+)] ) python_targets_python3_7? ( dev-lang/python:3.7[bzip2(+),threads(+)] ) python_targets_python3_8? ( dev-lang/python:3.8[bzip2(+),threads(+)] ) python_targets_python3_9? ( dev-lang/python:3.9[bzip2(+),threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy3(-)?,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_pypy3(-),-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] virtual/tmpfiles +REQUIRED_USE=|| ( python_targets_pypy3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=mirror://gentoo/portage-3.0.10.tar.bz2 https://dev.gentoo.org/~zmedico/portage/archives/portage-3.0.10.tar.bz2 +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 prefix c2993e4c430c1ee24f278983d6189501 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 tmpfiles 6170dc7770585fb3f16efdee789a3218 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=e55276878788bd4c95ae2f2901055b31 diff --git a/metadata/md5-cache/sys-apps/systemd-tmpfiles-246 b/metadata/md5-cache/sys-apps/systemd-tmpfiles-246 index 2691aa0a5959..6fc857521b56 100644 --- a/metadata/md5-cache/sys-apps/systemd-tmpfiles-246 +++ b/metadata/md5-cache/sys-apps/systemd-tmpfiles-246 @@ -5,11 +5,11 @@ DESCRIPTION=Creates, deletes and cleans up volatile and temporary files and dire EAPI=7 HOMEPAGE=https://www.freedesktop.org/wiki/Software/systemd IUSE=test -KEYWORDS=~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~amd64 arm arm64 ppc ppc64 ~sparc x86 LICENSE=BSD-2 GPL-2 LGPL-2.1 MIT public-domain RDEPEND=sys-apps/acl:0= >=sys-apps/util-linux-2.30:0= >=sys-kernel/linux-headers-3.11 sys-libs/libcap:0= !sys-apps/opentmpfiles !sys-apps/systemd RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://github.com/systemd/systemd/archive/v246.tar.gz -> systemd-246.tar.gz elibc_musl? ( https://dev.gentoo.org/~gyakovlev/distfiles/systemd-tmpfiles-246-musl.tar.xz ) _eclasses_=meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=3f63e9143b59719ffa11ec5c7e3b4b91 +_md5_=22438d42b57014e96a06f5d5b6e2fe8f diff --git a/metadata/md5-cache/sys-apps/unscd-0.53 b/metadata/md5-cache/sys-apps/unscd-0.53 deleted file mode 100644 index a99ffbe4a4bf..000000000000 --- a/metadata/md5-cache/sys-apps/unscd-0.53 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install unpack -DEPEND=sys-libs/glibc[nscd(+)] virtual/pkgconfig -DESCRIPTION=simple & stable nscd replacement -EAPI=6 -HOMEPAGE=https://busybox.net/~vda/unscd/README -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/glibc[nscd(+)] -SLOT=0 -SRC_URI=https://busybox.net/~vda/unscd/nscd-0.53.c -_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=546ae7b99a5bbeaf1dce0526142cb828 diff --git a/metadata/md5-cache/sys-apps/util-linux-2.36.1 b/metadata/md5-cache/sys-apps/util-linux-2.36.1-r1 similarity index 99% rename from metadata/md5-cache/sys-apps/util-linux-2.36.1 rename to metadata/md5-cache/sys-apps/util-linux-2.36.1-r1 index 826c91513397..139b1bca9deb 100644 --- a/metadata/md5-cache/sys-apps/util-linux-2.36.1 +++ b/metadata/md5-cache/sys-apps/util-linux-2.36.1-r1 @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://www.kernel.org/pub/linux/utils/util-linux/v2.36/util-linux-2.36.1.tar.xz _eclasses_=bash-completion-r1 e5f9c3faab3ab3d1e7e007daa8c736ef edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 pam 226d8d2ff588bdfd7d188512dbdb189d python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb usr-ldscript 7c918d239d0f9098867d0c8e33348fc9 wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=41691b741276f00658dddfafcee6a9cd +_md5_=9e825e8086ce287086f35cdf5afd5248 diff --git a/metadata/md5-cache/sys-cluster/Manifest.gz b/metadata/md5-cache/sys-cluster/Manifest.gz index f39a40161a75..a18cc3dae3e7 100644 Binary files a/metadata/md5-cache/sys-cluster/Manifest.gz and b/metadata/md5-cache/sys-cluster/Manifest.gz differ diff --git a/metadata/md5-cache/sys-cluster/ceph-15.2.6 b/metadata/md5-cache/sys-cluster/ceph-15.2.6 index 5278d427537a..cbe1e4df10f3 100644 --- a/metadata/md5-cache/sys-cluster/ceph-15.2.6 +++ b/metadata/md5-cache/sys-cluster/ceph-15.2.6 @@ -5,7 +5,7 @@ DESCRIPTION=Ceph distributed filesystem EAPI=7 HOMEPAGE=https://ceph.com/ IUSE=babeltrace +cephfs custom-cflags diskprediction dpdk fuse grafana jemalloc kafka kerberos ldap libressl lttng +mgr numa +openssl pmdk rabbitmq +radosgw rbd-rwl +ssl spdk system-boost systemd +tcmalloc test uring xfs zfs cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_sse4_2 cpu_flags_x86_ssse3 python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~amd64 +KEYWORDS=~amd64 ~arm64 LICENSE=Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 GPL-3 BSD Boost-1.0 MIT public-domain RDEPEND=acct-group/ceph acct-user/ceph virtual/libudev:= app-arch/bzip2:= app-arch/lz4:= app-arch/snappy:= app-arch/zstd:= app-shells/bash:0 app-misc/jq:= dev-libs/crypto++:= dev-libs/leveldb:=[snappy,tcmalloc(-)?] dev-libs/rocksdb:= dev-libs/libaio:= dev-libs/libfmt:= dev-libs/libnl:3= dev-libs/libxml2:= dev-libs/xmlsec:=[!openssl?,!libressl?] dev-cpp/yaml-cpp:= dev-libs/nss:= dev-libs/protobuf:= net-dns/c-ares:= net-libs/gnutls:= sys-auth/oath-toolkit:= sys-apps/coreutils sys-apps/grep sys-apps/hwloc:= sys-apps/keyutils:= sys-apps/util-linux:= sys-apps/sed sys-apps/util-linux sys-libs/libcap-ng:= sys-libs/ncurses:0= sys-libs/zlib:= sys-process/numactl:= x11-libs/libpciaccess:= babeltrace? ( dev-util/babeltrace ) fuse? ( sys-fs/fuse:0= ) jemalloc? ( dev-libs/jemalloc:= ) !jemalloc? ( >=dev-util/google-perftools-2.6.1:= ) kafka? ( dev-libs/librdkafka:= ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap:= ) lttng? ( dev-util/lttng-ust:= ) rabbitmq? ( net-libs/rabbitmq-c:= ) radosgw? ( dev-libs/expat:= openssl? ( dev-libs/openssl:= net-misc/curl:=[curl_ssl_openssl] ) libressl? ( dev-libs/libressl:= net-misc/curl:=[curl_ssl_libressl] ) ) ssl? ( openssl? ( dev-libs/openssl:= ) libressl? ( dev-libs/libressl:= ) ) system-boost? ( =dev-libs/boost-1.72*[threads,context,python,python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) uring? ( sys-libs/liburing:= ) xfs? ( sys-fs/xfsprogs:= ) zfs? ( sys-fs/zfs:= ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] app-admin/sudo net-misc/socat sys-apps/gptfdisk sys-apps/nvme-cli >=sys-apps/smartmontools-7.0 sys-block/parted sys-fs/cryptsetup sys-fs/lsscsi sys-fs/lvm2[-device-mapper-only(-)] virtual/awk dev-python/bcrypt[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/cherrypy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/python-dateutil[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/flask[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/jinja[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pecan[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/prettytable[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyopenssl[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/requests[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/werkzeug[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] mgr? ( dev-python/jsonpatch[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/more-itertools[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/numpy[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyjwt[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/pyyaml[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/routes[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] diskprediction? ( python_targets_python3_6? ( =sys-cluster/torque-4 ) slurm? ( sys-cluster/slurm ) -DESCRIPTION=Maui Cluster Scheduler -EAPI=4 -HOMEPAGE=http://www.adaptivecomputing.com/products/open-source/maui/ -IUSE=pbs slurm -KEYWORDS=~amd64 ~x86 ~amd64-linux -LICENSE=maui -RDEPEND=pbs? ( >=sys-cluster/torque-4 ) slurm? ( sys-cluster/slurm ) -REQUIRED_USE=^^ ( pbs slurm ) -RESTRICT=fetch mirror -SLOT=0 -SRC_URI=http://www.adaptivecomputing.com/download/maui/maui-3.3.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=21f6d5658c234d027eb8abd7d33928c0 diff --git a/metadata/md5-cache/sys-cluster/mvapich2-1.6 b/metadata/md5-cache/sys-cluster/mvapich2-1.6 deleted file mode 100644 index d3b50f2704c8..000000000000 --- a/metadata/md5-cache/sys-cluster/mvapich2-1.6 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare setup -DEPEND=sys-fabric/libibverbs sys-fabric/libibumad sys-fabric/libibmad sys-fabric/librdmacm virtual/fortran -DESCRIPTION=MVAPICH2 MPI-over-infiniband package auto-configured for OpenIB -EAPI=4 -HOMEPAGE=http://mvapich.cse.ohio-state.edu/ -IUSE=debug fortran large-cluster medium-cluster romio threads -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=sys-fabric/libibverbs sys-fabric/libibumad sys-fabric/libibmad sys-fabric/librdmacm virtual/fortran -SLOT=0 -SRC_URI=http://mvapich.cse.ohio-state.edu/download/mvapich2/mvapich2-1.6.tgz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 fortran-2 b4796813ccda91c9c0d3463fc90aa969 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=6c75ff3b2f5a7b90be2dc7761404f9cd diff --git a/metadata/md5-cache/sys-cluster/nova-22.0.1 b/metadata/md5-cache/sys-cluster/nova-22.0.1 new file mode 100644 index 000000000000..6f88510e635a --- /dev/null +++ b/metadata/md5-cache/sys-cluster/nova-22.0.1 @@ -0,0 +1,15 @@ +BDEPEND=python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/pbr-2.1.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] app-admin/sudo +DESCRIPTION=Cloud computing fabric controller +EAPI=7 +HOMEPAGE=https://launchpad.net/nova +IUSE=+compute compute-only iscsi +memcached +mysql +novncproxy openvswitch postgres +rabbitmq sqlite python_targets_python3_7 python_targets_python3_8 kernel_linux +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pbr-2.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/pbr-2.1.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] compute-only? ( >=dev-python/sqlalchemy-1.2.19[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) sqlite? ( >=dev-python/sqlalchemy-1.2.19[sqlite,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) mysql? ( >=dev-python/pymysql-0.7.6[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/pymysql-0.7.7[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/sqlalchemy-1.2.19[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) postgres? ( >=dev-python/psycopg-2.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/sqlalchemy-1.2.19[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) >=dev-python/decorator-4.1.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/eventlet-0.22.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/jinja-2.10[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/keystonemiddleware-4.17.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/lxml-4.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/routes-2.3.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/cryptography-2.7[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/webob-1.8.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/greenlet-0.4.15[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pastedeploy-1.5.0-r1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/paste-2.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/prettytable-0.7.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] =dev-python/sqlalchemy-migrate-0.13.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/netaddr-0.7.18[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/netifaces-0.10.4[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/paramiko-2.7.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/iso8601-0.1.11[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/jsonschema-3.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/python-cinderclient-3.3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/python-cinderclient-4.0.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/keystoneauth-3.16.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/python-neutronclient-6.7.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/python-glanceclient-2.8.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/requests-2.23.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/six-1.11.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/stevedore-1.20.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/websockify-0.9.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-cache-1.26.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-concurrency-3.29.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-config-6.8.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-context-2.22.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-log-3.36.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-reports-1.18.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-serialization-1.21.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-upgradecheck-0.1.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] !~dev-python/oslo-serialization-2.19.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-utils-4.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-db-4.44.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-rootwrap-5.8.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-messaging-10.3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-policy-3.4.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-privsep-1.33.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-i18n-3.15.3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-service-1.40.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/rfc3986-1.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-middleware-3.31.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/psutil-3.2.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/oslo-versionedobjects-1.35.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/os-brick-3.1.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/os-resource-classes-0.4.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/os-traits-2.4.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/os-vif-1.14.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/os-win-4.2.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/castellan-0.16.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/microversion-parse-0.2.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/os-xenapi-0.3.4[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/tooz-1.58.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/cursive-0.2.1[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pypowervm-1.1.15[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/retrying-1.3.3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/os-service-types-1.7.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/taskflow-3.8.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/python-dateutil-2.5.3[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/zVMCloudConnector-1.3.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/openstacksdk-0.35.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/pyyaml-3.13[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] dev-python/libvirt-python[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] app-emulation/libvirt[iscsi?] app-emulation/spice-html5 novncproxy? ( www-apps/novnc ) sys-apps/iproute2 openvswitch? ( net-misc/openvswitch ) rabbitmq? ( net-misc/rabbitmq-server ) memcached? ( net-misc/memcached >=dev-python/python-memcached-1.58 ) sys-fs/sysfsutils sys-fs/multipath-tools net-misc/bridge-utils compute? ( app-cdr/cdrtools sys-fs/dosfstools app-emulation/qemu ) iscsi? ( sys-fs/lsscsi >=sys-block/open-iscsi-2.0.873-r1 ) acct-user/nova acct-group/nova python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +REQUIRED_USE=!compute-only? ( || ( mysql postgres sqlite ) ) compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite ) || ( python_targets_python3_7 python_targets_python3_8 ) +SLOT=0 +SRC_URI=https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/victoria/nova.conf.sample -> nova.conf.sample-22.0.1 https://tarballs.openstack.org/nova/nova-22.0.1.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=1242a5542560c8ccad366d9df084c64f diff --git a/metadata/md5-cache/sys-devel/Manifest.gz b/metadata/md5-cache/sys-devel/Manifest.gz index ed4f9094bd63..52240d7216d5 100644 Binary files a/metadata/md5-cache/sys-devel/Manifest.gz and b/metadata/md5-cache/sys-devel/Manifest.gz differ diff --git a/metadata/md5-cache/sys-devel/automake-1.16.2-r1 b/metadata/md5-cache/sys-devel/automake-1.16.2-r1 index f8b012929617..4accab6e2c94 100644 --- a/metadata/md5-cache/sys-devel/automake-1.16.2-r1 +++ b/metadata/md5-cache/sys-devel/automake-1.16.2-r1 @@ -5,11 +5,11 @@ DESCRIPTION=Used to generate Makefile.in from Makefile.am EAPI=7 HOMEPAGE=https://www.gnu.org/software/automake/ IUSE=test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=dev-lang/perl >=sys-devel/automake-wrapper-11 >=sys-devel/autoconf-2.69:* sys-devel/gnuconfig RESTRICT=!test? ( test ) SLOT=1.16 SRC_URI=mirror://gnu/automake/automake-1.16.2.tar.xz https://alpha.gnu.org/pub/gnu/automake/automake-1.16.2.tar.xz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=c87568c535a2aa04b9a614347c54ad1e +_md5_=ce16baa0ab64cd0b15729e7373fb8fa5 diff --git a/metadata/md5-cache/sys-devel/bison-3.6.4 b/metadata/md5-cache/sys-devel/bison-3.6.4 index d92f8cffaccc..b700cadad864 100644 --- a/metadata/md5-cache/sys-devel/bison-3.6.4 +++ b/metadata/md5-cache/sys-devel/bison-3.6.4 @@ -10,6 +10,6 @@ LICENSE=GPL-2 RDEPEND=>=sys-devel/m4-1.4.16 RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://gnu/bison/bison-3.6.4.tar.xz mirror://gentoo/bison-3.6.3-patches-01.tar.xz https://dev.gentoo.org/~whissi/dist/bison/bison-3.6.3-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/dist/bison/bison-3.6.3-patches-01.tar.xz +SRC_URI=mirror://gnu/bison/bison-3.6.4.tar.xz https://dev.gentoo.org/~whissi/dist/bison/bison-3.6.3-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/dist/bison/bison-3.6.3-patches-01.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=c1e81fc814eadcdd2b370e89fb81a918 +_md5_=420557570c8e4f1a9202e6d2da2ef397 diff --git a/metadata/md5-cache/sys-devel/bison-3.7.1-r1 b/metadata/md5-cache/sys-devel/bison-3.7.1-r1 index b89fb44ebd0d..e74b20be0386 100644 --- a/metadata/md5-cache/sys-devel/bison-3.7.1-r1 +++ b/metadata/md5-cache/sys-devel/bison-3.7.1-r1 @@ -10,6 +10,6 @@ LICENSE=GPL-2 RDEPEND=>=sys-devel/m4-1.4.16 >=sys-devel/gettext-0.21 RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://gnu/bison/bison-3.7.1.tar.xz mirror://gentoo/bison-3.7.1-patches-01.tar.xz https://dev.gentoo.org/~whissi/dist/bison/bison-3.7.1-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/dist/bison/bison-3.7.1-patches-01.tar.xz +SRC_URI=mirror://gnu/bison/bison-3.7.1.tar.xz https://dev.gentoo.org/~whissi/dist/bison/bison-3.7.1-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/dist/bison/bison-3.7.1-patches-01.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e6b24692a461aca1b7811e54b662564e +_md5_=f6f7bb6680d1407ab2b8af4a50fe5ca2 diff --git a/metadata/md5-cache/sys-devel/bison-3.7.3 b/metadata/md5-cache/sys-devel/bison-3.7.3 index 510a673776ec..3ecae0039b34 100644 --- a/metadata/md5-cache/sys-devel/bison-3.7.3 +++ b/metadata/md5-cache/sys-devel/bison-3.7.3 @@ -8,8 +8,8 @@ IUSE=examples nls static test KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=>=sys-devel/m4-1.4.16 >=sys-devel/gettext-0.21 -RESTRICT=!test? ( test ) mirror +RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://gnu/bison/bison-3.7.3.tar.xz mirror://gentoo/bison-3.7.3-patches-01.tar.xz https://dev.gentoo.org/~whissi/dist/bison/bison-3.7.3-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/dist/bison/bison-3.7.3-patches-01.tar.xz +SRC_URI=mirror://gnu/bison/bison-3.7.3.tar.xz https://dev.gentoo.org/~whissi/dist/bison/bison-3.7.3-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/dist/bison/bison-3.7.3-patches-01.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f516ad6cc54f31e92adfe99f4536d9ee +_md5_=25ed50d00439038ff8e5e6f6a7e5e397 diff --git a/metadata/md5-cache/sys-devel/bison-3.7.4 b/metadata/md5-cache/sys-devel/bison-3.7.4 index 1c809fba531a..77590330500b 100644 --- a/metadata/md5-cache/sys-devel/bison-3.7.4 +++ b/metadata/md5-cache/sys-devel/bison-3.7.4 @@ -8,8 +8,8 @@ IUSE=examples nls static test KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=>=sys-devel/m4-1.4.16 >=sys-devel/gettext-0.21 -RESTRICT=!test? ( test ) mirror +RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=mirror://gnu/bison/bison-3.7.4.tar.xz mirror://gentoo/bison-3.7.3-patches-01.tar.xz https://dev.gentoo.org/~whissi/dist/bison/bison-3.7.3-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/dist/bison/bison-3.7.3-patches-01.tar.xz +SRC_URI=mirror://gnu/bison/bison-3.7.4.tar.xz https://dev.gentoo.org/~whissi/dist/bison/bison-3.7.3-patches-01.tar.xz https://dev.gentoo.org/~polynomial-c/dist/bison/bison-3.7.3-patches-01.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=f516ad6cc54f31e92adfe99f4536d9ee +_md5_=25ed50d00439038ff8e5e6f6a7e5e397 diff --git a/metadata/md5-cache/sys-devel/crossdev-20201122 b/metadata/md5-cache/sys-devel/crossdev-20201122 new file mode 100644 index 000000000000..dc56da95fc6a --- /dev/null +++ b/metadata/md5-cache/sys-devel/crossdev-20201122 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install +DEPEND=app-arch/xz-utils +DESCRIPTION=Gentoo Cross-toolchain generator +EAPI=7 +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Crossdev +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=>=sys-apps/portage-2.1 >=app-portage/portage-utils-0.55 app-shells/bash sys-apps/gentoo-functions +SLOT=0 +SRC_URI=mirror://gentoo/crossdev-20201122.tar.xz https://dev.gentoo.org/~slyfox/distfiles/crossdev-20201122.tar.xz +_md5_=8879ddb044df4971609b216a3a9dd2ad diff --git a/metadata/md5-cache/sys-fs/Manifest.gz b/metadata/md5-cache/sys-fs/Manifest.gz index 991431020719..136e2e219a83 100644 Binary files a/metadata/md5-cache/sys-fs/Manifest.gz and b/metadata/md5-cache/sys-fs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-fs/inotify-tools-3.20.2.2 b/metadata/md5-cache/sys-fs/inotify-tools-3.20.2.2 index ff6aee20853b..8b9bde301822 100644 --- a/metadata/md5-cache/sys-fs/inotify-tools-3.20.2.2 +++ b/metadata/md5-cache/sys-fs/inotify-tools-3.20.2.2 @@ -5,9 +5,9 @@ DESCRIPTION=a set of command-line programs providing a simple interface to inoti EAPI=7 HOMEPAGE=https://github.com/inotify-tools/inotify-tools IUSE=doc -KEYWORDS=amd64 arm ~arm64 ~hppa ~mips sparc x86 +KEYWORDS=amd64 arm ~arm64 hppa ~mips sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=https://github.com/inotify-tools/inotify-tools/archive/3.20.2.2.tar.gz -> inotify-tools-3.20.2.2.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=85b7987a40abd8d37c07797b1a95c9a9 +_md5_=57542a950c90649d62e349ec1916513c diff --git a/metadata/md5-cache/sys-kernel/Manifest.gz b/metadata/md5-cache/sys-kernel/Manifest.gz index ad7cfd331d8c..975947404eac 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/gentoo-sources-4.14.208 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.208 new file mode 100644 index 000000000000..50ce31022cce --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.14.208 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.14 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=4.14.208 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-218.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-218.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-218.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-218.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-218.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-218.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.14-218.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.14-218.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.14-218.experimental.tar.xz ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=35d2618b6b40d30f0d12ffd45719ed6a diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.159 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.159 new file mode 100644 index 000000000000..06e80e41310e --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.19.159 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.19 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=4.19.159 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.19.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-158.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-158.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-158.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-158.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-158.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-158.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.19-158.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.19-158.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.19-158.experimental.tar.xz ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=c45e338dfe7e015681c5c2549042178c diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.245 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.245 new file mode 100644 index 000000000000..0d4514b48281 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.4.245 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.4 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 linux-firmware +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=4.4.245 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-247.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-247.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-247.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-247.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-247.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-247.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.4-247.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.4-247.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.4-247.experimental.tar.xz ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=dbf435c9dd2ba0134ae7aa82ee918b7b diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.245 b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.245 new file mode 100644 index 000000000000..2b416e451af7 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-4.9.245 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 4.9 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 linux-firmware +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=4.9.245 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-249.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-249.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-249.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-249.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-249.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-249.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-4.9-249.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-4.9-249.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-4.9-249.experimental.tar.xz ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=0a0cfc7227e1db8235bb4154513907c5 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.79 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.79 new file mode 100644 index 000000000000..9229ddaa0262 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.4.79 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 5.4 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=5.4.79 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-80.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-80.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-80.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-80.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-80.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-80.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.4-80.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.4-80.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.4-80.experimental.tar.xz ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=be85c89deff6b58f4476c77b1f88ad7f diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.10 b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.10 new file mode 100644 index 000000000000..1ded04a09d2f --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-5.9.10 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=Full sources including the Gentoo patchset for the 5.9 kernel tree +EAPI=6 +HOMEPAGE=https://dev.gentoo.org/~mpagano/genpatches +IUSE=experimental symlink build +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=!build? ( dev-lang/perl sys-devel/bc sys-devel/bison sys-devel/flex sys-devel/make >=sys-libs/ncurses-5.2 virtual/libelf virtual/pkgconfig ) +RESTRICT=binchecks strip +SLOT=5.9.10 +SRC_URI=https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.9.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-10.base.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-10.base.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-10.base.tar.xz https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-10.extras.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-10.extras.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-10.extras.tar.xz experimental? ( https://dev.gentoo.org/~alicef/dist/genpatches/genpatches-5.9-10.experimental.tar.xz https://dev.gentoo.org/~mpagano/dist/genpatches/genpatches-5.9-10.experimental.tar.xz https://dev.gentoo.org/~whissi/dist/genpatches/genpatches-5.9-10.experimental.tar.xz ) +_eclasses_=eapi7-ver f9ec87e93172b25ce65a85303dc06964 estack 686eaab303305a908fd57b2fd7617800 kernel-2 1543bf4cdf0b10a5bf32d15ac7b8aa48 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=f24a0504c9cb231d94cf27630a9c733d diff --git a/metadata/md5-cache/sys-libs/Manifest.gz b/metadata/md5-cache/sys-libs/Manifest.gz index 4409ab792bfc..b66e14ed97ef 100644 Binary files a/metadata/md5-cache/sys-libs/Manifest.gz and b/metadata/md5-cache/sys-libs/Manifest.gz differ diff --git a/metadata/md5-cache/sys-libs/glibc-2.19-r2 b/metadata/md5-cache/sys-libs/glibc-2.19-r2 index 81da99d48d07..38819e6849e7 100644 --- a/metadata/md5-cache/sys-libs/glibc-2.19-r2 +++ b/metadata/md5-cache/sys-libs/glibc-2.19-r2 @@ -12,4 +12,4 @@ RESTRICT=strip SLOT=2.2 SRC_URI=mirror://gnu/glibc/glibc-2.19.tar.xz https://dev.gentoo.org/~dilfridge/distfiles/glibc-2.19-patches-9.tar.bz2 multilib? ( https://dev.gentoo.org/~dilfridge/distfiles/gcc-4.7.3-r1-multilib-bootstrap.tar.bz2 ) _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 gnuconfig f9125410be4c062f2fcefc8ec59fc223 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 prefix c2993e4c430c1ee24f278983d6189501 preserve-libs ef207dc62baddfddfd39a164d9797648 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e6df6531d0d86934cf7d199b75a80993 +_md5_=49ba1aa1917e080939e1a3978d1262cd diff --git a/metadata/md5-cache/sys-libs/libcap-ng-0.7.11 b/metadata/md5-cache/sys-libs/libcap-ng-0.7.11 index 39d5518d7f3f..befc4eb4e871 100644 --- a/metadata/md5-cache/sys-libs/libcap-ng-0.7.11 +++ b/metadata/md5-cache/sys-libs/libcap-ng-0.7.11 @@ -5,11 +5,11 @@ DESCRIPTION=POSIX 1003.1e capabilities EAPI=7 HOMEPAGE=https://people.redhat.com/sgrubb/libcap-ng/ IUSE=python static-libs python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 -KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x86-linux +KEYWORDS=~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x86-linux LICENSE=LGPL-2.1 RDEPEND=python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) SLOT=0 SRC_URI=https://people.redhat.com/sgrubb/libcap-ng/libcap-ng-0.7.11.tar.gz _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=d1cc54556d2dafd3bc766075c0fd0c3a +_md5_=2fdcab88c941db926c89e3ad73e0912f diff --git a/metadata/md5-cache/sys-libs/libseccomp-2.5.1 b/metadata/md5-cache/sys-libs/libseccomp-2.5.1 index 496ce11a2b56..56d682205a37 100644 --- a/metadata/md5-cache/sys-libs/libseccomp-2.5.1 +++ b/metadata/md5-cache/sys-libs/libseccomp-2.5.1 @@ -1,15 +1,15 @@ -BDEPEND=dev-util/gperf python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +BDEPEND=dev-util/gperf python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) DEFINED_PHASES=compile configure install prepare test DEPEND=dev-util/gperf python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) >=sys-kernel/linux-headers-4.3 DESCRIPTION=high level interface to Linux seccomp filter EAPI=7 HOMEPAGE=https://github.com/seccomp/libseccomp IUSE=python static-libs python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 -KEYWORDS=-* ~amd64 ~arm ~arm64 ~hppa -mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=-* ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux LICENSE=LGPL-2.1 RDEPEND=dev-util/gperf python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) REQUIRED_USE=python? ( static-libs || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) ) SLOT=0 -SRC_URI=https://github.com/seccomp/libseccomp/archive/v2.5.1.tar.gz -> libseccomp-2.5.1.tar.gz -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 distutils-r1 409cd1220f9f980d21980293a50e2a8e libtool f143db5a74ccd9ca28c1234deffede96 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=824970a0ddcaf829d9861edb8f048183 +SRC_URI=https://github.com/seccomp/libseccomp/releases/download/v2.5.1/libseccomp-2.5.1.tar.gz +_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=0907ee695598224f14ec19fe1ad6cf09 diff --git a/metadata/md5-cache/sys-libs/libselinux-9999 b/metadata/md5-cache/sys-libs/libselinux-9999 index 60c434e3b519..d3260320581e 100644 --- a/metadata/md5-cache/sys-libs/libselinux-9999 +++ b/metadata/md5-cache/sys-libs/libselinux-9999 @@ -1,6 +1,6 @@ -BDEPEND=>=dev-vcs/git-1.8.2.1[curl] +BDEPEND=virtual/pkgconfig python? ( >=dev-lang/swig-2.0.9 ) ruby? ( >=dev-lang/swig-2.0.9 ) >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=>=sys-libs/libsepol-9999:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !pcre2? ( >=dev-libs/libpcre-8.33-r1:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcre2? ( dev-libs/libpcre2:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) ruby? ( ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ) elibc_musl? ( sys-libs/fts-standalone ) virtual/pkgconfig python? ( >=dev-lang/swig-2.0.9 ) ruby? ( >=dev-lang/swig-2.0.9 ) +DEPEND=>=sys-libs/libsepol-9999:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !pcre2? ( >=dev-libs/libpcre-8.33-r1:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) pcre2? ( dev-libs/libpcre2:=[static-libs?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) python? ( python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) ruby? ( ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ) elibc_musl? ( sys-libs/fts-standalone ) DESCRIPTION=SELinux userland library EAPI=7 HOMEPAGE=https://github.com/SELinuxProject/selinux/wiki @@ -11,4 +11,4 @@ RDEPEND=>=sys-libs/libsepol-9999:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)? REQUIRED_USE=python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 python_targets_python3_9 ) ) SLOT=0 _eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=8e5d0b4cacc1c048015f88d4a367b35e +_md5_=209613c6e95118df063d083413f27165 diff --git a/metadata/md5-cache/sys-libs/libsemanage-9999 b/metadata/md5-cache/sys-libs/libsemanage-9999 index b4683276124c..2827a956792d 100644 --- a/metadata/md5-cache/sys-libs/libsemanage-9999 +++ b/metadata/md5-cache/sys-libs/libsemanage-9999 @@ -1,15 +1,15 @@ -BDEPEND=>=dev-vcs/git-1.8.2.1[curl] +BDEPEND=>=dev-lang/swig-2.0.4-r1 sys-devel/bison sys-devel/flex virtual/pkgconfig >=dev-vcs/git-1.8.2.1[curl] DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=>=sys-libs/libsepol-9999[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libselinux-9999[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-process/audit-2.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/ustr-1.0.4-r2[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_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] >=dev-lang/swig-2.0.4-r1 sys-devel/bison sys-devel/flex virtual/pkgconfig +DEPEND=>=sys-libs/libsepol-9999[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libselinux-9999[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-process/audit-2.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(-)?] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] DESCRIPTION=SELinux kernel and policy management library EAPI=7 HOMEPAGE=https://github.com/SELinuxProject/selinux/wiki IUSE=python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 LICENSE=GPL-2 PROPERTIES=live -RDEPEND=>=sys-libs/libsepol-9999[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libselinux-9999[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-process/audit-2.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/ustr-1.0.4-r2[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_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] +RDEPEND=>=sys-libs/libsepol-9999[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/libselinux-9999[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-process/audit-2.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(-)?] python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) RESTRICT=test SLOT=0 _eclasses_=git-r3 3e7ec3d6619213460c85e2aa48398441 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=e85cea868ff710a5c04b8d03232bf4cb +_md5_=e4e847fe2e1542c1159e63e918bd9596 diff --git a/metadata/md5-cache/sys-libs/newlib-4.0.0 b/metadata/md5-cache/sys-libs/newlib-4.0.0 new file mode 100644 index 000000000000..bb2718bded7a --- /dev/null +++ b/metadata/md5-cache/sys-libs/newlib-4.0.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install setup +DESCRIPTION=Newlib is a C library intended for use on embedded systems +EAPI=7 +HOMEPAGE=https://sourceware.org/newlib/ +IUSE=nls threads unicode headers-only nano +KEYWORDS=~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sparc ~x86 +LICENSE=NEWLIB LIBGLOSS GPL-2 +RESTRICT=strip +SLOT=0 +SRC_URI=ftp://sourceware.org/pub/newlib/newlib-4.0.0.tar.gz +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=a1ee5a8f637a1792036318dfcac84f38 diff --git a/metadata/md5-cache/sys-libs/newlib-9999 b/metadata/md5-cache/sys-libs/newlib-9999 index 4d54dc91c5f8..58e1dec98afb 100644 --- a/metadata/md5-cache/sys-libs/newlib-9999 +++ b/metadata/md5-cache/sys-libs/newlib-9999 @@ -9,4 +9,4 @@ PROPERTIES=live RESTRICT=strip SLOT=0 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=8142c7edc034d5edffa58707be4ace8d +_md5_=a1ee5a8f637a1792036318dfcac84f38 diff --git a/metadata/md5-cache/sys-power/Manifest.gz b/metadata/md5-cache/sys-power/Manifest.gz index 278865877a3a..62b6abf54d16 100644 Binary files a/metadata/md5-cache/sys-power/Manifest.gz and b/metadata/md5-cache/sys-power/Manifest.gz differ diff --git a/metadata/md5-cache/sys-power/nvram-wakeup-1.1 b/metadata/md5-cache/sys-power/nvram-wakeup-1.1 deleted file mode 100644 index b96b169cd171..000000000000 --- a/metadata/md5-cache/sys-power/nvram-wakeup-1.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=install postinst prepare unpack -DEPEND=nls? ( sys-devel/gettext ) -DESCRIPTION=read and write the WakeUp time in the BIOS -EAPI=4 -HOMEPAGE=https://sourceforge.net/projects/nvram-wakeup -IUSE=nls -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=mirror://sourceforge/nvram-wakeup/nvram-wakup-1.1.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=620893f48a8b099469bb5102492c0681 diff --git a/metadata/md5-cache/virtual/Manifest.gz b/metadata/md5-cache/virtual/Manifest.gz index feaaf6b11d74..a86a5eb2436e 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/ruby-ssl-11 b/metadata/md5-cache/virtual/ruby-ssl-11 index 1344f499b8a4..11abfbe9b041 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 s390 sparc x86 ~amd64-linux RDEPEND=ruby_targets_ruby25? ( dev-lang/ruby:2.5[ssl] ) ruby_targets_ruby26? ( dev-lang/ruby:2.6[ssl] ) ruby_targets_ruby27? ( dev-lang/ruby:2.7[ssl] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) SLOT=0 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=baa52d9d16fbaee19291c6b30f0709c0 diff --git a/metadata/md5-cache/virtual/rubygems-15 b/metadata/md5-cache/virtual/rubygems-15 index 0bb160b1e622..0c3861098148 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 s390 sparc x86 ~ppc-aix ~am RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/rubygems-2.7.3[ruby_targets_ruby25] ) ruby_targets_ruby26? ( >=dev-ruby/rubygems-3.0.1[ruby_targets_ruby26] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=0 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a6ab89e915ef92768a8099dcf12bfb5f diff --git a/metadata/md5-cache/virtual/rubygems-16 b/metadata/md5-cache/virtual/rubygems-16 index 25f3429f2dbf..8be9c17a34d6 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 ~s390 ~sparc ~x86 ~pp RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/rubygems-2.7.3[ruby_targets_ruby25] ) 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_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) SLOT=0 -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=e8ebb29e3313751077ede4a3605046f4 diff --git a/metadata/md5-cache/www-apache/Manifest.gz b/metadata/md5-cache/www-apache/Manifest.gz index 755be0cac8f1..7a31cd32613b 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.4 b/metadata/md5-cache/www-apache/passenger-6.0.4 index 02c4f7190045..5eb7c8bd6f62 100644 --- a/metadata/md5-cache/www-apache/passenger-6.0.4 +++ b/metadata/md5-cache/www-apache/passenger-6.0.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.4.tar.gz -_eclasses_=apache-module bd30ba4d834196e81cf2b76c52d26b93 depend.apache 94458fe4e9466f4803360408e60e11fd desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=apache-module bd30ba4d834196e81cf2b76c52d26b93 depend.apache 94458fe4e9466f4803360408e60e11fd desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=5d313558f910db8c0bc191f385b8c200 diff --git a/metadata/md5-cache/www-apache/passenger-6.0.5 b/metadata/md5-cache/www-apache/passenger-6.0.5 index ae8b745a5131..69aac4f09985 100644 --- a/metadata/md5-cache/www-apache/passenger-6.0.5 +++ b/metadata/md5-cache/www-apache/passenger-6.0.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.5.tar.gz -_eclasses_=apache-module bd30ba4d834196e81cf2b76c52d26b93 depend.apache 94458fe4e9466f4803360408e60e11fd desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=apache-module bd30ba4d834196e81cf2b76c52d26b93 depend.apache 94458fe4e9466f4803360408e60e11fd desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=33e56c306ef92d3094a4216f5567c976 diff --git a/metadata/md5-cache/www-apache/passenger-6.0.6 b/metadata/md5-cache/www-apache/passenger-6.0.6 index 3fad52f16e09..42f59d142e34 100644 --- a/metadata/md5-cache/www-apache/passenger-6.0.6 +++ b/metadata/md5-cache/www-apache/passenger-6.0.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.6.tar.gz -_eclasses_=apache-module bd30ba4d834196e81cf2b76c52d26b93 depend.apache 94458fe4e9466f4803360408e60e11fd desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=apache-module bd30ba4d834196e81cf2b76c52d26b93 depend.apache 94458fe4e9466f4803360408e60e11fd desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=7750c5e4334fc42ca59f5972e92c1e54 diff --git a/metadata/md5-cache/www-apache/passenger-6.0.7 b/metadata/md5-cache/www-apache/passenger-6.0.7 new file mode 100644 index 000000000000..5fa9a1e75946 --- /dev/null +++ b/metadata/md5-cache/www-apache/passenger-6.0.7 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst prepare setup test unpack +DEPEND=ruby_targets_ruby25? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby25(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby26(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby27(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby27(-)] ) ) >=dev-libs/libuv-1.8.0 net-misc/curl[ssl] apache2? ( www-servers/apache[apache2_modules_unixd(+)] ) apache2? ( =www-servers/apache-2* ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) +DESCRIPTION=Passenger makes deployment of Ruby on Rails applications a breeze +EAPI=6 +HOMEPAGE=https://www.phusionpassenger.com/ +IUSE=apache2 debug test apache2 ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=ruby_targets_ruby25? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby25(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby26(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby27(-)] >=dev-ruby/rake-0.8.1[ruby_targets_ruby27(-)] ) >=dev-libs/libuv-1.8.0 net-misc/curl[ssl] apache2? ( www-servers/apache[apache2_modules_unixd(+)] ) apache2? ( =www-servers/apache-2* ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://s3.amazonaws.com/phusion-passenger/releases/passenger-6.0.7.tar.gz +_eclasses_=apache-module bd30ba4d834196e81cf2b76c52d26b93 depend.apache 94458fe4e9466f4803360408e60e11fd desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=ee3d2dadafa67fbd1c19688c7bb08c02 diff --git a/metadata/md5-cache/www-apps/Manifest.gz b/metadata/md5-cache/www-apps/Manifest.gz index 1846a2dfa61d..24d73ee46442 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 c71d875122a3..3f9aa3121e27 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=81bdfb689d8ace8db9770399f0d6ca04 diff --git a/metadata/md5-cache/www-apps/jekyll-coffeescript-1.2.2 b/metadata/md5-cache/www-apps/jekyll-coffeescript-1.2.2 index 464b318c0a8c..b47260bce199 100644 --- a/metadata/md5-cache/www-apps/jekyll-coffeescript-1.2.2 +++ b/metadata/md5-cache/www-apps/jekyll-coffeescript-1.2.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jekyll/jekyll-coffeescript/archive/v1.2.2.tar.gz -> jekyll-coffeescript-1.2.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=d6d6eb9cc655b2e6473cc78ee5cd3cb2 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 e884eccad5cc..8d831ee3e3e7 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=1066b81d4ba870485bd9d5ee1f9c7c3b diff --git a/metadata/md5-cache/www-apps/jekyll-sass-converter-1.5.2 b/metadata/md5-cache/www-apps/jekyll-sass-converter-1.5.2 index 808fd0d86d04..03332219a0bd 100644 --- a/metadata/md5-cache/www-apps/jekyll-sass-converter-1.5.2 +++ b/metadata/md5-cache/www-apps/jekyll-sass-converter-1.5.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jekyll/jekyll-sass-converter/archive/v1.5.2.tar.gz -> jekyll-sass-converter-1.5.2.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=a73135f29c1de0e136e6cd835e6359e6 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 2194619ec23d..173774915beb 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4e977c737dc7f1f5c94c91a333b5d7a3 diff --git a/metadata/md5-cache/www-apps/jekyll-sitemap-0.13.0 b/metadata/md5-cache/www-apps/jekyll-sitemap-0.13.0 index 6ab79b9616df..d3e99d8a744e 100644 --- a/metadata/md5-cache/www-apps/jekyll-sitemap-0.13.0 +++ b/metadata/md5-cache/www-apps/jekyll-sitemap-0.13.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/jekyll/jekyll-sitemap/archive/v0.13.0.tar.gz -> jekyll-sitemap-0.13.0.tar.gz -_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=a865e0c547bba8235546abd65d1fee14 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 a6c01aa26ef9..2899f131e300 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=83975df9f34ff2c2766810daf81781b7 diff --git a/metadata/md5-cache/www-apps/jekyll-watch-2.2.1 b/metadata/md5-cache/www-apps/jekyll-watch-2.2.1 index 0752a31f95aa..300da1ee939f 100644 --- a/metadata/md5-cache/www-apps/jekyll-watch-2.2.1 +++ b/metadata/md5-cache/www-apps/jekyll-watch-2.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=cfc07502ad0ee954ac34ecc9ba1831e0 diff --git a/metadata/md5-cache/www-apps/nanoc-4.11.10 b/metadata/md5-cache/www-apps/nanoc-4.11.10 index 99c8206d69fd..87ae12311da2 100644 --- a/metadata/md5-cache/www-apps/nanoc-4.11.10 +++ b/metadata/md5-cache/www-apps/nanoc-4.11.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.11.10.tar.gz -> nanoc-4.11.10.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=00b115d4e9692e1db9a75091e947596e diff --git a/metadata/md5-cache/www-apps/nanoc-4.11.11 b/metadata/md5-cache/www-apps/nanoc-4.11.11 index da88861e6b20..22f6226797d6 100644 --- a/metadata/md5-cache/www-apps/nanoc-4.11.11 +++ b/metadata/md5-cache/www-apps/nanoc-4.11.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.11.11.tar.gz -> nanoc-4.11.11.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=00b115d4e9692e1db9a75091e947596e diff --git a/metadata/md5-cache/www-apps/nanoc-4.11.12 b/metadata/md5-cache/www-apps/nanoc-4.11.12 index a00b3e24caf4..d23c082acce5 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=00b115d4e9692e1db9a75091e947596e diff --git a/metadata/md5-cache/www-apps/nanoc-core-4.11.10 b/metadata/md5-cache/www-apps/nanoc-core-4.11.10 index e7cfec8272fb..0e8934e0a86f 100644 --- a/metadata/md5-cache/www-apps/nanoc-core-4.11.10 +++ b/metadata/md5-cache/www-apps/nanoc-core-4.11.10 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.11.10.tar.gz -> nanoc-core-4.11.10.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fa47af58425809a1d7096da0b01506aa diff --git a/metadata/md5-cache/www-apps/nanoc-core-4.11.11 b/metadata/md5-cache/www-apps/nanoc-core-4.11.11 index ae7806a531af..7a8c39c4b062 100644 --- a/metadata/md5-cache/www-apps/nanoc-core-4.11.11 +++ b/metadata/md5-cache/www-apps/nanoc-core-4.11.11 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://github.com/nanoc/nanoc/archive/4.11.11.tar.gz -> nanoc-core-4.11.11.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fa47af58425809a1d7096da0b01506aa 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 868a9bee44b2..7dd6e2bcb489 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=fa47af58425809a1d7096da0b01506aa diff --git a/metadata/md5-cache/www-apps/nextcloud-18.0.11 b/metadata/md5-cache/www-apps/nextcloud-18.0.11 new file mode 100644 index 000000000000..91a5c7527a3c --- /dev/null +++ b/metadata/md5-cache/www-apps/nextcloud-18.0.11 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst prerm setup +DEPEND=>=app-admin/webapp-config-1.50.15 +DESCRIPTION=Personal cloud that runs on your own server +EAPI=7 +HOMEPAGE=https://nextcloud.com/ +IUSE=+curl +imagemagick mysql postgres +sqlite vhosts +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=AGPL-3 +RDEPEND=dev-lang/php[curl?,filter,gd,hash(+),intl,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] imagemagick? ( dev-php/pecl-imagick ) virtual/httpd-php >=app-admin/webapp-config-1.50.15 +REQUIRED_USE=|| ( mysql postgres sqlite ) +SLOT=18.0.11 +SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-18.0.11.tar.bz2 +_eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 +_md5_=4440baf5c6e1013a6f30620fba20abd3 diff --git a/metadata/md5-cache/www-apps/nextcloud-19.0.5 b/metadata/md5-cache/www-apps/nextcloud-19.0.5 new file mode 100644 index 000000000000..eb5120feff62 --- /dev/null +++ b/metadata/md5-cache/www-apps/nextcloud-19.0.5 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst prerm setup +DEPEND=>=app-admin/webapp-config-1.50.15 +DESCRIPTION=Personal cloud that runs on your own server +EAPI=7 +HOMEPAGE=https://nextcloud.com/ +IUSE=+curl +imagemagick mysql postgres +sqlite vhosts +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=AGPL-3 +RDEPEND=dev-lang/php[curl?,filter,gd,hash(+),intl,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] imagemagick? ( dev-php/pecl-imagick ) virtual/httpd-php >=app-admin/webapp-config-1.50.15 +REQUIRED_USE=|| ( mysql postgres sqlite ) +SLOT=19.0.5 +SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-19.0.5.tar.bz2 +_eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 +_md5_=4440baf5c6e1013a6f30620fba20abd3 diff --git a/metadata/md5-cache/www-apps/nextcloud-20.0.2 b/metadata/md5-cache/www-apps/nextcloud-20.0.2 new file mode 100644 index 000000000000..967fc86985e3 --- /dev/null +++ b/metadata/md5-cache/www-apps/nextcloud-20.0.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst prerm setup +DEPEND=>=app-admin/webapp-config-1.50.15 +DESCRIPTION=Personal cloud that runs on your own server +EAPI=7 +HOMEPAGE=https://nextcloud.com/ +IUSE=+curl +imagemagick mysql postgres +sqlite vhosts +KEYWORDS=~amd64 ~arm ~arm64 ~x86 +LICENSE=AGPL-3 +RDEPEND=dev-lang/php[curl?,filter,gd,hash(+),intl,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] imagemagick? ( dev-php/pecl-imagick ) virtual/httpd-php >=app-admin/webapp-config-1.50.15 +REQUIRED_USE=|| ( mysql postgres sqlite ) +SLOT=20.0.2 +SRC_URI=https://download.nextcloud.com/server/releases/nextcloud-20.0.2.tar.bz2 +_eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 +_md5_=4440baf5c6e1013a6f30620fba20abd3 diff --git a/metadata/md5-cache/www-apps/phpBB-3.3.1 b/metadata/md5-cache/www-apps/phpBB-3.3.2 similarity index 90% rename from metadata/md5-cache/www-apps/phpBB-3.3.1 rename to metadata/md5-cache/www-apps/phpBB-3.3.2 index 9230b32c4e59..c4b57cf2256a 100644 --- a/metadata/md5-cache/www-apps/phpBB-3.3.1 +++ b/metadata/md5-cache/www-apps/phpBB-3.3.2 @@ -8,7 +8,7 @@ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ppc ~sparc ~x86 LICENSE=GPL-2 RDEPEND=|| ( ( virtual/httpd-php:7.4 dev-lang/php:7.4[ftp?,gd?,json,mssql?,mysqli?,postgres?,sqlite?,xml,zlib?] ) ( virtual/httpd-php:7.3 dev-lang/php:7.3[ftp?,gd?,json,mssql?,mysqli?,postgres?,sqlite?,xml,zlib?] ) ( virtual/httpd-php:7.2 dev-lang/php:7.2[ftp?,gd?,json,mssql?,mysqli?,postgres?,sqlite?,xml,zlib?] ) ) >=app-admin/webapp-config-1.50.15 REQUIRED_USE=|| ( mssql mysqli postgres sqlite ) -SLOT=3.3.1 -SRC_URI=https://download.phpbb.com/pub/release/3.3/3.3.1/phpBB-3.3.1.tar.bz2 +SLOT=3.3.2 +SRC_URI=https://download.phpbb.com/pub/release/3.3/3.3.2/phpBB-3.3.2.tar.bz2 _eclasses_=webapp 16783e418aca3ffa461d68310bf7ab12 _md5_=3f95b39e3e12c2d7a9e2408a10db899c diff --git a/metadata/md5-cache/www-apps/redmine-4.1.1-r1 b/metadata/md5-cache/www-apps/redmine-4.1.1-r1 index 997de890a6b4..ffb90ee78046 100644 --- a/metadata/md5-cache/www-apps/redmine-4.1.1-r1 +++ b/metadata/md5-cache/www-apps/redmine-4.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=acct-group/redmine acct-user/redmine ruby_targets_ruby25? ( dev-lang/rub REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) SLOT=0 SRC_URI=https://www.redmine.org/releases/redmine-4.1.1.tar.gz -_eclasses_=depend.apache 94458fe4e9466f4803360408e60e11fd estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=depend.apache 94458fe4e9466f4803360408e60e11fd estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=60b5737f516bb65bf8c1cb6f3fff21b1 diff --git a/metadata/md5-cache/www-client/Manifest.gz b/metadata/md5-cache/www-client/Manifest.gz index 60d9584d7a30..ec97a7d1a34b 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/chromium-86.0.4240.198 b/metadata/md5-cache/www-client/chromium-86.0.4240.198 deleted file mode 100644 index ae66c186a148..000000000000 --- a/metadata/md5-cache/www-client/chromium-86.0.4240.198 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=|| ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) >=app-arch/gzip-1.7 app-arch/unzip dev-lang/perl >=dev-util/gn-0.1807 dev-vcs/git >=dev-util/gperf-3.0.3 >=dev-util/ninja-1.7.2 >=net-libs/nodejs-7.6.0[inspector] sys-apps/hwids[usb(+)] >=sys-devel/bison-2.4.3 sys-devel/flex virtual/pkgconfig js-type-check? ( virtual/jre ) -DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup -DEPEND=app-arch/bzip2:= cups? ( >=net-print/cups-1.3.11:= ) dev-libs/expat:= dev-libs/glib:2 >=dev-libs/libxml2-2.9.4-r3:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= >=media-libs/alsa-lib-1.0.19:= media-libs/fontconfig:= media-libs/freetype:= >=media-libs/harfbuzz-2.4.0:0=[icu(-)] media-libs/libjpeg-turbo:= media-libs/libpng:= system-libvpx? ( >=media-libs/libvpx-1.8.2:=[postproc] ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( >=media-video/ffmpeg-4.3:= || ( media-video/ffmpeg[-samba] >=net-fs/samba-4.5.10-r1[-debug(-)] ) >=media-libs/opus-1.3.1:= ) sys-apps/dbus:= sys-apps/pciutils:= virtual/udev x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/pango:= media-libs/flac:= >=media-libs/libwebp-0.4.0:= sys-libs/zlib:=[minizip] kerberos? ( virtual/krb5 ) ozone? ( !headless? ( media-libs/mesa:=[gbm] x11-libs/libX11:= x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXext:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libXScrnSaver:= x11-libs/libxcb:= x11-libs/gtk+:3[X] ozone-wayland? ( dev-libs/wayland:= dev-libs/libffi:= x11-libs/libdrm:= x11-libs/gtk+:3[wayland,X] x11-libs/libxkbcommon:= ) ) ) !ozone? ( >=app-accessibility/at-spi2-atk-2.26:2 >=app-accessibility/at-spi2-core-2.26:2 >=dev-libs/atk-2.26 x11-libs/gtk+:3[X] media-libs/mesa:=[gbm] x11-libs/libX11:= x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXext:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libXScrnSaver:= x11-libs/libxcb:= ) app-arch/snappy:= dev-libs/libxslt:= >=dev-libs/re2-0.2019.08.01:= >=media-libs/openh264-1.6.0:= system-icu? ( >=dev-libs/icu-67.1:= ) -DESCRIPTION=Open-source version of Google Chrome web browser -EAPI=7 -HOMEPAGE=https://chromium.org/ -IUSE=component-build cups cpu_flags_arm_neon +hangouts headless +js-type-check kerberos official ozone ozone-wayland pic +proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-icu +system-libvpx +tcmalloc widevine kernel_linux custom-cflags +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_vi +l10n_zh-CN +l10n_zh-TW -KEYWORDS=amd64 arm64 ~x86 -LICENSE=BSD -RDEPEND=app-arch/bzip2:= cups? ( >=net-print/cups-1.3.11:= ) dev-libs/expat:= dev-libs/glib:2 >=dev-libs/libxml2-2.9.4-r3:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= >=media-libs/alsa-lib-1.0.19:= media-libs/fontconfig:= media-libs/freetype:= >=media-libs/harfbuzz-2.4.0:0=[icu(-)] media-libs/libjpeg-turbo:= media-libs/libpng:= system-libvpx? ( >=media-libs/libvpx-1.8.2:=[postproc] ) pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( >=media-video/ffmpeg-4.3:= || ( media-video/ffmpeg[-samba] >=net-fs/samba-4.5.10-r1[-debug(-)] ) >=media-libs/opus-1.3.1:= ) sys-apps/dbus:= sys-apps/pciutils:= virtual/udev x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/pango:= media-libs/flac:= >=media-libs/libwebp-0.4.0:= sys-libs/zlib:=[minizip] kerberos? ( virtual/krb5 ) ozone? ( !headless? ( media-libs/mesa:=[gbm] x11-libs/libX11:= x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXext:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libXScrnSaver:= x11-libs/libxcb:= x11-libs/gtk+:3[X] ozone-wayland? ( dev-libs/wayland:= dev-libs/libffi:= x11-libs/libdrm:= x11-libs/gtk+:3[wayland,X] x11-libs/libxkbcommon:= ) ) ) !ozone? ( >=app-accessibility/at-spi2-atk-2.26:2 >=app-accessibility/at-spi2-core-2.26:2 >=dev-libs/atk-2.26 x11-libs/gtk+:3[X] media-libs/mesa:=[gbm] x11-libs/libX11:= x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXext:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libXScrnSaver:= x11-libs/libxcb:= ) x11-misc/xdg-utils virtual/opengl virtual/ttf-fonts selinux? ( sec-policy/selinux-chromium ) tcmalloc? ( !=dev-libs/re2-0.2019.08.01:= >=media-libs/openh264-1.6.0:= system-icu? ( >=dev-libs/icu-67.1:= ) -REQUIRED_USE=component-build? ( !suid ) headless? ( ozone ) ozone-wayland? ( ozone ) -RESTRICT=!system-ffmpeg? ( proprietary-codecs? ( bindist ) ) -SLOT=0 -SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-86.0.4240.198.tar.xz https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip https://github.com/stha09/chromium-patches/releases/download/chromium-86-patchset-7/chromium-86-patchset-7.tar.xz -_eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 portability e8f7ef3a41965b21a734550f8a94c1c6 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5c1c5906a309318363a680d9b46faf81 diff --git a/metadata/md5-cache/www-client/chromium-87.0.4280.66 b/metadata/md5-cache/www-client/chromium-87.0.4280.66 index f56b14a741ce..f1fd670e60cd 100644 --- a/metadata/md5-cache/www-client/chromium-87.0.4280.66 +++ b/metadata/md5-cache/www-client/chromium-87.0.4280.66 @@ -5,7 +5,7 @@ DESCRIPTION=Open-source version of Google Chrome web browser EAPI=7 HOMEPAGE=https://chromium.org/ IUSE=component-build cups cpu_flags_arm_neon +hangouts headless +js-type-check kerberos official pic +proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-icu +tcmalloc vaapi wayland widevine kernel_linux custom-cflags +l10n_am +l10n_ar +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_el +l10n_en-GB +l10n_es +l10n_es-419 +l10n_et +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_id +l10n_it +l10n_ja +l10n_kn +l10n_ko +l10n_lt +l10n_lv +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sk +l10n_sl +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_vi +l10n_zh-CN +l10n_zh-TW -KEYWORDS=amd64 ~arm64 ~x86 +KEYWORDS=amd64 arm64 ~x86 LICENSE=BSD RDEPEND=app-arch/bzip2:= cups? ( >=net-print/cups-1.3.11:= ) dev-libs/expat:= dev-libs/glib:2 >=dev-libs/libxml2-2.9.4-r3:=[icu] dev-libs/nspr:= >=dev-libs/nss-3.26:= >=media-libs/alsa-lib-1.0.19:= media-libs/fontconfig:= media-libs/freetype:= >=media-libs/harfbuzz-2.4.0:0=[icu(-)] media-libs/libjpeg-turbo:= media-libs/libpng:= pulseaudio? ( media-sound/pulseaudio:= ) system-ffmpeg? ( >=media-video/ffmpeg-4.3:= || ( media-video/ffmpeg[-samba] >=net-fs/samba-4.5.10-r1[-debug(-)] ) >=media-libs/opus-1.3.1:= ) sys-apps/dbus:= sys-apps/pciutils:= virtual/udev x11-libs/cairo:= x11-libs/gdk-pixbuf:2 x11-libs/pango:= media-libs/flac:= >=media-libs/libwebp-0.4.0:= sys-libs/zlib:=[minizip] kerberos? ( virtual/krb5 ) !headless? ( media-libs/mesa:=[gbm] x11-libs/libX11:= x11-libs/libXcomposite:= x11-libs/libXcursor:= x11-libs/libXdamage:= x11-libs/libXext:= x11-libs/libXfixes:= >=x11-libs/libXi-1.6.0:= x11-libs/libXrandr:= x11-libs/libXrender:= x11-libs/libXtst:= x11-libs/libXScrnSaver:= x11-libs/libxcb:= vaapi? ( >=x11-libs/libva-2.7:=[X,drm] ) >=app-accessibility/at-spi2-atk-2.26:2 >=app-accessibility/at-spi2-core-2.26:2 >=dev-libs/atk-2.26 x11-libs/gtk+:3[X] wayland? ( dev-libs/wayland:= dev-libs/libffi:= x11-libs/gtk+:3[wayland,X] x11-libs/libdrm:= x11-libs/libxkbcommon:= ) ) x11-misc/xdg-utils virtual/opengl virtual/ttf-fonts selinux? ( sec-policy/selinux-chromium ) tcmalloc? ( !=dev-libs/re2-0.2019.08.01:= >=media-libs/openh264-1.6.0:= system-icu? ( >=dev-libs/icu-67.1:= ) REQUIRED_USE=component-build? ( !suid ) @@ -13,4 +13,4 @@ RESTRICT=!system-ffmpeg? ( proprietary-codecs? ( bindist ) ) SLOT=0 SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-87.0.4280.66.tar.xz https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip https://github.com/stha09/chromium-patches/releases/download/chromium-87-patchset-9/chromium-87-patchset-9.tar.xz _eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 portability e8f7ef3a41965b21a734550f8a94c1c6 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=ed05b8300cbf863f1bdcb8ef76354576 +_md5_=1f63ce96af912e1b0124b326b4f4ecb7 diff --git a/metadata/md5-cache/www-client/chromium-88.0.4315.5 b/metadata/md5-cache/www-client/chromium-88.0.4324.11 similarity index 94% rename from metadata/md5-cache/www-client/chromium-88.0.4315.5 rename to metadata/md5-cache/www-client/chromium-88.0.4324.11 index c0ee4e4fabb2..20122d0fcd4b 100644 --- a/metadata/md5-cache/www-client/chromium-88.0.4315.5 +++ b/metadata/md5-cache/www-client/chromium-88.0.4324.11 @@ -11,6 +11,6 @@ RDEPEND=app-arch/bzip2:= cups? ( >=net-print/cups-1.3.11:= ) dev-libs/expat:= de REQUIRED_USE=component-build? ( !suid ) RESTRICT=!system-ffmpeg? ( proprietary-codecs? ( bindist ) ) SLOT=0 -SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-88.0.4315.5.tar.xz https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip https://github.com/stha09/chromium-patches/releases/download/chromium-88-patchset-2/chromium-88-patchset-2.tar.xz +SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-88.0.4324.11.tar.xz https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip https://github.com/stha09/chromium-patches/releases/download/chromium-88-patchset-3/chromium-88-patchset-3.tar.xz _eclasses_=check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f pax-utils a41d1fd1c111289ffa04490de6ee79d7 portability e8f7ef3a41965b21a734550f8a94c1c6 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 readme.gentoo-r1 22ae82e140bdd95d17a34fd5fd733190 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1f296a3219c2a7bc600bd72acabd2985 +_md5_=a49a601e91f300d53528097046789f84 diff --git a/metadata/md5-cache/www-client/seamonkey-2.53.5.1 b/metadata/md5-cache/www-client/seamonkey-2.53.5.1 index ea3e80fdcfd0..f9f32a428c1a 100644 --- a/metadata/md5-cache/www-client/seamonkey-2.53.5.1 +++ b/metadata/md5-cache/www-client/seamonkey-2.53.5.1 @@ -9,6 +9,6 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=app-text/hunspell-1.5.4:= dev-libs/atk >=dev-libs/glib-2.26:2 >=dev-libs/libffi-3.0.10:= >=dev-libs/nspr-4.23 >=dev-libs/nss-3.47.1 media-libs/fontconfig >=media-libs/freetype-2.4.10 >=media-libs/libpng-1.6.31:0=[apng] >=media-libs/mesa-10.2:= >=sys-libs/zlib-1.2.3 >=x11-libs/cairo-1.10[X] x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.18:2 >=x11-libs/gtk+-3.4.0:3 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt >=x11-libs/pango-1.22.0 >=x11-libs/pixman-0.19.2 media-video/ffmpeg virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 >=sys-apps/dbus-0.60 ) jack? ( virtual/jack ) crypt? ( =media-sound/apulse-0.1.9 ) ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) system-av1? ( >=media-libs/dav1d-0.3.0:= >=media-libs/libaom-1.0.0:= ) system-harfbuzz? ( >=media-gfx/graphite2-1.3.9-r1 >=media-libs/harfbuzz-1.3.3:0= ) system-icu? ( >=dev-libs/icu-59.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-libvpx? ( >=media-libs/libvpx-1.8.0:0=[postproc] ) system-sqlite? ( >=dev-db/sqlite-3.19.3:3[secure-delete,debug=] ) wifi? ( kernel_linux? ( >=dev-libs/dbus-glib-0.72 net-misc/networkmanager >=sys-apps/dbus-0.60 ) ) selinux? ( sec-policy/selinux-mozilla ) RESTRICT=!test? ( test ) SLOT=0 -SRC_URI=https://archive.mozilla.org/pub/seamonkey/releases/2.53.5.1/source/seamonkey-2.53.5.1.source.tar.xz -> seamonkey-2.53.5.1.source.tar.xz https://archive.mozilla.org/pub/seamonkey/releases/2.53.5.1/source/seamonkey-2.53.5.1.source-l10n.tar.xz -> seamonkey-2.53.5.1.source-l10n.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/seamonkey-2.53.5_beta1-patches-02.tar.xz system-libvpx? ( https://dev.gentoo.org/~polynomial-c/mozilla/seamonkey-2.53.3-system_libvpx-1.8.patch.xz ) +SRC_URI=https://archive.mozilla.org/pub/seamonkey/releases/2.53.5.1/source/seamonkey-2.53.5.1.source.tar.xz -> seamonkey-2.53.5.1.source.tar.xz https://archive.mozilla.org/pub/seamonkey/releases/2.53.5.1/source/seamonkey-2.53.5.1.source-l10n.tar.xz -> seamonkey-2.53.5.1.source-l10n.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/seamonkey-2.53.5_beta1-patches-02.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/seamonkey-2.53.5.1-rust148-packed_simd.patch system-libvpx? ( https://dev.gentoo.org/~polynomial-c/mozilla/seamonkey-2.53.3-system_libvpx-1.8.patch.xz ) _eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 check-reqs 7e3fd1855a5e1b50bb9e80827b3f672d desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa mozcoreconf-v6 129723b9b03cb06a0b3c8e1f68748c94 mozextension 798d8c84c9e7a8105e56c9eb6626e643 mozlinguas-v2 7559b4e56a88d67da4e96e77296f723c multilib 98584e405e2b0264d37e8f728327fed1 nsplugins 2049586e425364a1c5bdb004205d1758 pax-utils a41d1fd1c111289ffa04490de6ee79d7 preserve-libs ef207dc62baddfddfd39a164d9797648 python-any-r1 54a3178500786b0a7ede4a23b7f2a6ad python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=07fce547378e3ac6d3d237084de44aa7 +_md5_=7ab52263c9a6d6d9f53ebdb0ab36a6da diff --git a/metadata/md5-cache/www-client/vivaldi-snapshot-3.4.2066.70_p1 b/metadata/md5-cache/www-client/vivaldi-snapshot-3.4.2066.70_p1 deleted file mode 100644 index b35f39b029e4..000000000000 --- a/metadata/md5-cache/www-client/vivaldi-snapshot-3.4.2066.70_p1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=install postinst postrm preinst prepare setup unpack -DEPEND=virtual/libiconv dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=A browser for our friends -EAPI=7 -HOMEPAGE=https://vivaldi.com/ -IUSE=kernel_linux +l10n_af +l10n_am +l10n_ar +l10n_be +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_de-CH +l10n_el +l10n_en-GB +l10n_en-US +l10n_eo +l10n_es +l10n_es-419 +l10n_es-PE +l10n_et +l10n_eu +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_fy +l10n_gd +l10n_gl +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_hy +l10n_id +l10n_io +l10n_is +l10n_it +l10n_ja +l10n_jbo +l10n_ka +l10n_kn +l10n_ko +l10n_ku +l10n_lt +l10n_lv +l10n_mk +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_nn +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sc +l10n_sk +l10n_sl +l10n_sq +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_vi +l10n_zh-CN +l10n_zh-TW -KEYWORDS=-* ~amd64 ~arm ~arm64 ~x86 -LICENSE=Vivaldi -RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/speex net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango[X] -RESTRICT=bindist mirror -SLOT=0 -SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.4.2066.70-1_amd64.deb -> vivaldi-snapshot-3.4.2066.70_p1-amd64.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.4.2066.70-1_arm64.deb -> vivaldi-snapshot-3.4.2066.70_p1-arm64.deb ) arm? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.4.2066.70-1_armhf.deb -> vivaldi-snapshot-3.4.2066.70_p1-armhf.deb ) x86? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.4.2066.70-1_i386.deb -> vivaldi-snapshot-3.4.2066.70_p1-i386.deb ) -_eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=8b6850c0cd923015cdb28366a21fd330 diff --git a/metadata/md5-cache/www-client/vivaldi-snapshot-3.5.2110.3 b/metadata/md5-cache/www-client/vivaldi-snapshot-3.5.2110.3 new file mode 100644 index 000000000000..c634af8be9d7 --- /dev/null +++ b/metadata/md5-cache/www-client/vivaldi-snapshot-3.5.2110.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst postrm preinst prepare setup unpack +DEPEND=dev-util/desktop-file-utils x11-misc/shared-mime-info +DESCRIPTION=A browser for our friends +EAPI=7 +HOMEPAGE=https://vivaldi.com/ +IUSE=proprietary-codecs widevine kernel_linux +l10n_af +l10n_am +l10n_ar +l10n_be +l10n_bg +l10n_bn +l10n_ca +l10n_cs +l10n_da +l10n_de +l10n_de-CH +l10n_el +l10n_en-GB +l10n_en-US +l10n_eo +l10n_es +l10n_es-419 +l10n_es-PE +l10n_et +l10n_eu +l10n_fa +l10n_fi +l10n_fil +l10n_fr +l10n_fy +l10n_gd +l10n_gl +l10n_gu +l10n_he +l10n_hi +l10n_hr +l10n_hu +l10n_hy +l10n_id +l10n_io +l10n_is +l10n_it +l10n_ja +l10n_jbo +l10n_ka +l10n_kn +l10n_ko +l10n_ku +l10n_lt +l10n_lv +l10n_mk +l10n_ml +l10n_mr +l10n_ms +l10n_nb +l10n_nl +l10n_nn +l10n_pl +l10n_pt-BR +l10n_pt-PT +l10n_ro +l10n_ru +l10n_sc +l10n_sk +l10n_sl +l10n_sq +l10n_sr +l10n_sv +l10n_sw +l10n_ta +l10n_te +l10n_th +l10n_tr +l10n_uk +l10n_vi +l10n_zh-CN +l10n_zh-TW +KEYWORDS=-* ~amd64 ~arm ~arm64 ~x86 +LICENSE=Vivaldi +RDEPEND=dev-libs/expat dev-libs/glib:2 dev-libs/nspr dev-libs/nss media-libs/alsa-lib media-libs/fontconfig media-libs/freetype media-libs/speex net-print/cups sys-apps/dbus sys-libs/libcap x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 x11-libs/libXScrnSaver x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango[X] proprietary-codecs? ( media-video/ffmpeg:0/56.58.58[chromium(-)] ) widevine? ( www-plugins/chrome-binary-plugins ) +RESTRICT=bindist mirror +SLOT=0 +SRC_URI=amd64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2110.3-1_amd64.deb ) arm64? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2110.3-1_arm64.deb ) arm? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2110.3-1_armhf.deb ) x86? ( https://downloads.vivaldi.com/snapshot/vivaldi-snapshot_3.5.2110.3-1_i386.deb ) +_eclasses_=chromium-2 199d6bc7f8b84ac7c00aca900739e570 desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e linux-info c90a203b1c14cfa77bd3e37a0e96c955 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4 wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=1dc8eec1235916ad41a36a1fd06d94b3 diff --git a/metadata/md5-cache/www-servers/Manifest.gz b/metadata/md5-cache/www-servers/Manifest.gz index 119080301720..9b9be3003e87 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 5a117678d7f2..ce76771cda81 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_ruby25 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 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4c454e31df1dc1ba75765500bd74cf48 diff --git a/metadata/md5-cache/www-servers/h2o-2.2.6 b/metadata/md5-cache/www-servers/h2o-2.2.6 index a1ba0b47f847..a37bf944c3b1 100644 --- a/metadata/md5-cache/www-servers/h2o-2.2.6 +++ b/metadata/md5-cache/www-servers/h2o-2.2.6 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=dev-lang/perl sys-libs/zlib libh2o? ( dev-libs/libuv ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) libh2o? ( virtual/pkgconfig ) mruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems || ( dev-libs/onigmo dev-libs/oniguruma ) sys-devel/bison virtual/pkgconfig ) sys-devel/make >=dev-util/cmake-3.9.6 virtual/pkgconfig +DEPEND=dev-lang/perl sys-libs/zlib libh2o? ( dev-libs/libuv ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) libh2o? ( virtual/pkgconfig ) mruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems || ( dev-libs/onigmo dev-libs/oniguruma ) sys-devel/bison virtual/pkgconfig ) sys-devel/make >=dev-util/cmake-3.9.6 virtual/pkgconfig DESCRIPTION=H2O - the optimized HTTP/1, HTTP/2 server EAPI=6 HOMEPAGE=https://h2o.examp1e.net/ @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-lang/perl sys-libs/zlib libh2o? ( dev-libs/libuv ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) !sci-libs/libh2o SLOT=0 SRC_URI=https://github.com/h2o/h2o/archive/v2.2.6.tar.gz -> h2o-2.2.6.tar.gz -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f ssl-cert 876f0e74ef1cc2e7c4edd9bca336d350 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 ssl-cert 876f0e74ef1cc2e7c4edd9bca336d350 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=c3d8231bbef7c2192ea29878171189a2 diff --git a/metadata/md5-cache/www-servers/h2o-9999 b/metadata/md5-cache/www-servers/h2o-9999 index 80941eb3cf31..aab72287d630 100644 --- a/metadata/md5-cache/www-servers/h2o-9999 +++ b/metadata/md5-cache/www-servers/h2o-9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=dev-lang/perl sys-libs/zlib libh2o? ( dev-libs/libuv ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) libh2o? ( virtual/pkgconfig ) mruby? ( || ( dev-lang/ruby:2.5 dev-lang/ruby:2.6 ) virtual/rubygems || ( dev-libs/onigmo dev-libs/oniguruma ) sys-devel/bison virtual/pkgconfig ) sys-devel/make >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] virtual/pkgconfig +DEPEND=dev-lang/perl sys-libs/zlib libh2o? ( dev-libs/libuv ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) libh2o? ( virtual/pkgconfig ) mruby? ( || ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 ) virtual/rubygems || ( dev-libs/onigmo dev-libs/oniguruma ) sys-devel/bison virtual/pkgconfig ) sys-devel/make >=dev-util/cmake-3.9.6 >=dev-vcs/git-1.8.2.1[curl] virtual/pkgconfig DESCRIPTION=H2O - the optimized HTTP/1, HTTP/2 server EAPI=6 HOMEPAGE=https://h2o.examp1e.net/ @@ -8,5 +8,5 @@ LICENSE=MIT PROPERTIES=live RDEPEND=dev-lang/perl sys-libs/zlib libh2o? ( dev-libs/libuv ) !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) !sci-libs/libh2o SLOT=0 -_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f ssl-cert 876f0e74ef1cc2e7c4edd9bca336d350 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_eclasses_=cmake-utils 77cd39e6009811bf97a59d91ffd5b54f desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 git-r3 3e7ec3d6619213460c85e2aa48398441 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f preserve-libs ef207dc62baddfddfd39a164d9797648 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 ssl-cert 876f0e74ef1cc2e7c4edd9bca336d350 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb user b0a0d4ca9e3f79c38f8f4143b8d5a2d8 user-info a2abd4e2f4c3b9b06d64bf1329359a02 vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=c877a38735c487d12a17eef6ca5de0ce diff --git a/metadata/md5-cache/www-servers/nginx-unit-1.17.0 b/metadata/md5-cache/www-servers/nginx-unit-1.17.0 deleted file mode 100644 index 8bdd70a5d1d0..000000000000 --- a/metadata/md5-cache/www-servers/nginx-unit-1.17.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=perl? ( dev-lang/perl:= ) php7-2? ( dev-lang/php:7.2[embed] ) php7-3? ( dev-lang/php:7.3[embed] ) php7-4? ( dev-lang/php:7.4[embed] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) ruby? ( dev-lang/ruby:* ) ssl? ( dev-libs/openssl:0 ) -DESCRIPTION=Dynamic web and application server -EAPI=7 -HOMEPAGE=https://unit.nginx.org -IUSE=perl python ruby php7-2 php7-3 php7-4 ssl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=amd64 -LICENSE=Apache-2.0 -RDEPEND=perl? ( dev-lang/perl:= ) php7-2? ( dev-lang/php:7.2[embed] ) php7-3? ( dev-lang/php:7.3[embed] ) php7-4? ( dev-lang/php:7.4[embed] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) ruby? ( dev-lang/ruby:* ) ssl? ( dev-libs/openssl:0 ) -REQUIRED_USE=|| ( perl python ruby php7-2 php7-3 php7-4 ssl ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) -SLOT=0 -SRC_URI=https://unit.nginx.org/download/unit-1.17.0.tar.gz -> nginx-unit-1.17.0.tar.gz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e4f428e78cd14b00fe56013e0c382540 diff --git a/metadata/md5-cache/www-servers/nginx-unit-1.20.0 b/metadata/md5-cache/www-servers/nginx-unit-1.20.0 index e8c0d4436e69..16d1b6aa578d 100644 --- a/metadata/md5-cache/www-servers/nginx-unit-1.20.0 +++ b/metadata/md5-cache/www-servers/nginx-unit-1.20.0 @@ -4,11 +4,11 @@ DESCRIPTION=Dynamic web and application server EAPI=7 HOMEPAGE=https://unit.nginx.org IUSE=perl python ruby php7-2 php7-3 php7-4 ssl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=Apache-2.0 RDEPEND=perl? ( dev-lang/perl:= ) php7-2? ( dev-lang/php:7.2[embed] ) php7-3? ( dev-lang/php:7.3[embed] ) php7-4? ( dev-lang/php:7.4[embed] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) ruby? ( dev-lang/ruby:* ) ssl? ( dev-libs/openssl:0 ) REQUIRED_USE=|| ( perl python ruby php7-2 php7-3 php7-4 ssl ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) SLOT=0 SRC_URI=https://unit.nginx.org/download/unit-1.20.0.tar.gz -> nginx-unit-1.20.0.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=b2927c11842fd6221530e84c8ac43ccb +_md5_=e4f428e78cd14b00fe56013e0c382540 diff --git a/metadata/md5-cache/www-servers/nginx-unit-1.18.0 b/metadata/md5-cache/www-servers/nginx-unit-1.21.0 similarity index 72% rename from metadata/md5-cache/www-servers/nginx-unit-1.18.0 rename to metadata/md5-cache/www-servers/nginx-unit-1.21.0 index f8e712a6513b..a331beeb0dfb 100644 --- a/metadata/md5-cache/www-servers/nginx-unit-1.18.0 +++ b/metadata/md5-cache/www-servers/nginx-unit-1.21.0 @@ -1,14 +1,14 @@ DEFINED_PHASES=configure install prepare setup -DEPEND=perl? ( dev-lang/perl:= ) php7-2? ( dev-lang/php:7.2[embed] ) php7-3? ( dev-lang/php:7.3[embed] ) php7-4? ( dev-lang/php:7.4[embed] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) ruby? ( dev-lang/ruby:* ) ssl? ( dev-libs/openssl:0 ) +DEPEND=perl? ( dev-lang/perl:= ) php7-2? ( dev-lang/php:7.2[embed] ) php7-3? ( dev-lang/php:7.3[embed] ) php7-4? ( dev-lang/php:7.4[embed] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) ruby? ( dev-lang/ruby:* dev-ruby/rubygems:* ) ssl? ( dev-libs/openssl:0 ) DESCRIPTION=Dynamic web and application server EAPI=7 HOMEPAGE=https://unit.nginx.org -IUSE=perl python ruby php7-2 php7-3 php7-4 ssl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 -KEYWORDS=amd64 +IUSE=perl python ruby php7-2 php7-3 php7-4 ssl python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 +KEYWORDS=~amd64 LICENSE=Apache-2.0 -RDEPEND=perl? ( dev-lang/perl:= ) php7-2? ( dev-lang/php:7.2[embed] ) php7-3? ( dev-lang/php:7.3[embed] ) php7-4? ( dev-lang/php:7.4[embed] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) ) ruby? ( dev-lang/ruby:* ) ssl? ( dev-libs/openssl:0 ) -REQUIRED_USE=|| ( perl python ruby php7-2 php7-3 php7-4 ssl ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 ) ) +RDEPEND=perl? ( dev-lang/perl:= ) php7-2? ( dev-lang/php:7.2[embed] ) php7-3? ( dev-lang/php:7.3[embed] ) php7-4? ( dev-lang/php:7.4[embed] ) python? ( python_single_target_python3_6? ( dev-lang/python:3.6 >=dev-lang/python-exec-2:=[python_targets_python3_6] ) python_single_target_python3_7? ( dev-lang/python:3.7 >=dev-lang/python-exec-2:=[python_targets_python3_7] ) python_single_target_python3_8? ( dev-lang/python:3.8 >=dev-lang/python-exec-2:=[python_targets_python3_8] ) python_single_target_python3_9? ( dev-lang/python:3.9 >=dev-lang/python-exec-2:=[python_targets_python3_9] ) ) ruby? ( dev-lang/ruby:* dev-ruby/rubygems:* ) ssl? ( dev-libs/openssl:0 ) +REQUIRED_USE=|| ( perl python ruby php7-2 php7-3 php7-4 ssl ) python? ( ^^ ( python_single_target_python3_6 python_single_target_python3_7 python_single_target_python3_8 python_single_target_python3_9 ) ) SLOT=0 -SRC_URI=https://unit.nginx.org/download/unit-1.18.0.tar.gz -> nginx-unit-1.18.0.tar.gz +SRC_URI=https://unit.nginx.org/download/unit-1.21.0.tar.gz -> nginx-unit-1.21.0.tar.gz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 python-single-r1 d3100de905f978df912135806cf27188 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 -_md5_=e4f428e78cd14b00fe56013e0c382540 +_md5_=3356cd0a87625a61684e91c63639ca09 diff --git a/metadata/md5-cache/www-servers/puma-3.12.5-r1 b/metadata/md5-cache/www-servers/puma-3.12.5-r1 index f593085bc75f..59c82ffca2d6 100644 --- a/metadata/md5-cache/www-servers/puma-3.12.5-r1 +++ b/metadata/md5-cache/www-servers/puma-3.12.5-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/puma/puma/archive/v3.12.5.tar.gz -> puma-3.12.5.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=60ca0a6d810a5617f91f34a48be314d5 diff --git a/metadata/md5-cache/www-servers/puma-4.3.4-r1 b/metadata/md5-cache/www-servers/puma-4.3.4-r1 index da41ae682032..c671a8375680 100644 --- a/metadata/md5-cache/www-servers/puma-4.3.4-r1 +++ b/metadata/md5-cache/www-servers/puma-4.3.4-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) SLOT=3 SRC_URI=https://github.com/puma/puma/archive/v4.3.4.tar.gz -> puma-4.3.4.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=4ef62ad74b205e61e1b94743210ed129 diff --git a/metadata/md5-cache/www-servers/puma-5.0.4 b/metadata/md5-cache/www-servers/puma-5.0.4 new file mode 100644 index 000000000000..53206346c0d5 --- /dev/null +++ b/metadata/md5-cache/www-servers/puma-5.0.4 @@ -0,0 +1,16 @@ +BDEPEND=ruby_targets_ruby25? ( virtual/ruby-ssl[ruby_targets_ruby25(-)] test? ( dev-ruby/rack[ruby_targets_ruby25(-)] >=dev-ruby/minitest-5.9:5[ruby_targets_ruby25(-)] >=dev-ruby/test-unit-3.0:2[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( virtual/ruby-ssl[ruby_targets_ruby26(-)] test? ( dev-ruby/rack[ruby_targets_ruby26(-)] >=dev-ruby/minitest-5.9:5[ruby_targets_ruby26(-)] >=dev-ruby/test-unit-3.0:2[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( virtual/ruby-ssl[ruby_targets_ruby27(-)] test? ( dev-ruby/rack[ruby_targets_ruby27(-)] >=dev-ruby/minitest-5.9:5[ruby_targets_ruby27(-)] >=dev-ruby/test-unit-3.0:2[ruby_targets_ruby27(-)] ) ) test? ( ruby_targets_ruby25? ( dev-ruby/nio4r:2[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/nio4r:2[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/nio4r:2[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( test? ( dev-ruby/rake[ruby_targets_ruby25(-)] ) ) ruby_targets_ruby26? ( test? ( dev-ruby/rake[ruby_targets_ruby26(-)] ) ) ruby_targets_ruby27? ( test? ( dev-ruby/rake[ruby_targets_ruby27(-)] ) ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] !!dev-ruby/psych[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] !!dev-ruby/psych[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] !!dev-ruby/psych[ruby_targets_ruby27(-)] ) test? ( ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) ) +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=dev-libs/openssl:0 test? ( net-misc/curl ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +DESCRIPTION=a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack +EAPI=7 +HOMEPAGE=https://puma.io/ +IUSE=test ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 doc test test +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 +LICENSE=BSD +RDEPEND=dev-libs/openssl:0 ruby_targets_ruby25? ( dev-ruby/nio4r:2[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( dev-ruby/nio4r:2[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( dev-ruby/nio4r:2[ruby_targets_ruby27(-)] ) ruby_targets_ruby25? ( dev-lang/ruby:2.5 ) ruby_targets_ruby26? ( dev-lang/ruby:2.6 ) ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ruby_targets_ruby25? ( virtual/rubygems[ruby_targets_ruby25(-)] ) ruby_targets_ruby26? ( virtual/rubygems[ruby_targets_ruby26(-)] ) ruby_targets_ruby27? ( virtual/rubygems[ruby_targets_ruby27(-)] ) +REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ruby_targets_ruby27 ) +RESTRICT=!test? ( test ) !test? ( test ) !test? ( test ) +SLOT=3 +SRC_URI=https://github.com/puma/puma/archive/v5.0.4.tar.gz -> puma-5.0.4.tar.gz +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-fakegem 6ee14a23a169409059ed36d4dddc3197 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=641c0bf066eb2bb4136df0fe86380e61 diff --git a/metadata/md5-cache/www-servers/uwsgi-2.0.19.1 b/metadata/md5-cache/www-servers/uwsgi-2.0.19.1 index 93b6294db7ca..f15f2e674487 100644 --- a/metadata/md5-cache/www-servers/uwsgi-2.0.19.1 +++ b/metadata/md5-cache/www-servers/uwsgi-2.0.19.1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib caps? ( sys-libs/libcap ) json? ( !yajl? ( dev-libs/jansso 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 ) python? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) python-asyncio? ( || ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) ) python-gevent? ( python ) expat? ( xml ) php? ( || ( php_targets_php7-2 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 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 pax-utils a41d1fd1c111289ffa04490de6ee79d7 php-ext-source-r3 a700d476900e6b3556f80fe0655c4303 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=8b41c6e9506c2d5a4a9511bdd5a89faa diff --git a/metadata/md5-cache/x11-libs/Manifest.gz b/metadata/md5-cache/x11-libs/Manifest.gz index cbd0c44cff24..b6c76c90894f 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/libX11-1.7.0 b/metadata/md5-cache/x11-libs/libX11-1.7.0 new file mode 100644 index 000000000000..d2a25fb40515 --- /dev/null +++ b/metadata/md5-cache/x11-libs/libX11-1.7.0 @@ -0,0 +1,15 @@ +BDEPEND=test? ( dev-lang/perl ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) 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 doc? ( doc? ( || ( app-text/asciidoc dev-ruby/asciidoctor ) app-text/xmlto app-doc/doxygen app-text/docbook-xml-dtd:4.1.2 app-text/docbook-xml-dtd:4.2 app-text/docbook-xml-dtd:4.3 ) ) +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=>=x11-libs/libxcb-1.11.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] !=x11-libs/libxcb-1.11.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(-)?] !=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +BDEPEND=|| ( dev-lang/ruby:2.6 dev-lang/ruby:2.5 dev-lang/ruby:2.7 ) virtual/rubygems dev-util/glib-utils dev-util/intltool sys-devel/autoconf-archive sys-devel/gettext virtual/pkgconfig test? ( dev-libs/check ) >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DEFINED_PHASES=configure install prepare DEPEND=dev-libs/dbus-glib dev-libs/glib:2 sys-apps/dbus virtual/libintl x11-libs/gtk+:2 x11-libs/libX11 DESCRIPTION=GObject-based XIM protocol library @@ -11,5 +11,5 @@ RDEPEND=dev-libs/dbus-glib dev-libs/glib:2 sys-apps/dbus virtual/libintl x11-lib RESTRICT=!test? ( test ) SLOT=0 SRC_URI=https://bitbucket.org/tagoh/libgxim/downloads/libgxim-0.5.0.tar.bz2 -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 ruby-single e6530f43a549f120f9396ccb852288f5 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=8e963a4833a1df57aab739a17feaa0bc diff --git a/metadata/md5-cache/x11-libs/libxkbcommon-1.0.2 b/metadata/md5-cache/x11-libs/libxkbcommon-1.0.2 new file mode 100644 index 000000000000..2fc4e9374f9b --- /dev/null +++ b/metadata/md5-cache/x11-libs/libxkbcommon-1.0.2 @@ -0,0 +1,15 @@ +BDEPEND=sys-devel/bison doc? ( app-doc/doxygen ) >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 +DEFINED_PHASES=compile configure install test +DEPEND=X? ( >=x11-libs/libxcb-1.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(-)?,xkb] ) dev-libs/libxml2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] X? ( x11-base/xorg-proto ) +DESCRIPTION=keymap handling library for toolkits and window systems +EAPI=7 +HOMEPAGE=https://xkbcommon.org/ https://github.com/xkbcommon/libxkbcommon/ +IUSE=X doc static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 +LICENSE=MIT +RDEPEND=X? ( >=x11-libs/libxcb-1.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(-)?,xkb] ) dev-libs/libxml2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_s390_32(-)?,abi_s390_64(-)?] +RESTRICT=!test? ( test ) +SLOT=0 +SRC_URI=https://xkbcommon.org/download/libxkbcommon-1.0.2.tar.xz +_eclasses_=meson 71d293a701d6362387e1214da368c848 multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multilib-build 9a65133006c608964888346a412cc454 multilib-minimal 8bddda43703ba94d8341f4e247f97566 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=4e2da2a1a17eba994fa33fa17e35a54d diff --git a/metadata/md5-cache/x11-misc/Manifest.gz b/metadata/md5-cache/x11-misc/Manifest.gz index 649a768c2c7b..de773f573dcc 100644 Binary files a/metadata/md5-cache/x11-misc/Manifest.gz and b/metadata/md5-cache/x11-misc/Manifest.gz differ diff --git a/metadata/md5-cache/x11-misc/clipmenu-6.2.0 b/metadata/md5-cache/x11-misc/clipmenu-6.2.0 new file mode 100644 index 000000000000..b3b688073ae9 --- /dev/null +++ b/metadata/md5-cache/x11-misc/clipmenu-6.2.0 @@ -0,0 +1,12 @@ +BDEPEND=virtual/pkgconfig +DEFINED_PHASES=compile install +DESCRIPTION=Clipboard management using dmenu +EAPI=7 +HOMEPAGE=https://github.com/cdown/clipmenu +KEYWORDS=~amd64 ~x86 +LICENSE=Unlicense +RDEPEND=x11-misc/clipnotify x11-misc/dmenu x11-misc/xsel +SLOT=0 +SRC_URI=https://github.com/cdown/clipmenu/archive/6.2.0.tar.gz -> clipmenu-6.2.0.tar.gz +_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 systemd 69be00334d73f9f50261554b94be0879 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_md5_=54c225d1feca9eb0d5f2d38f0d35ef3f diff --git a/metadata/md5-cache/x11-misc/compose-tables-1.7.0 b/metadata/md5-cache/x11-misc/compose-tables-1.7.0 new file mode 100644 index 000000000000..3e77851ffa31 --- /dev/null +++ b/metadata/md5-cache/x11-misc/compose-tables-1.7.0 @@ -0,0 +1,13 @@ +BDEPEND=>=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.18 >=media-fonts/font-util-1.2.0 ) 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 test unpack +DEPEND=x11-base/xorg-proto >=x11-libs/libxcb-1.11.1 x11-libs/xtrans +DESCRIPTION=X.Org Compose Key tables from libX11 +EAPI=7 +HOMEPAGE=https://www.x.org/wiki/ https://gitlab.freedesktop.org/xorg/util/compose-tables +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +LICENSE=MIT +RDEPEND=!!=x11-libs/gtk+-2.4:2 >=dev-util/intltool-0.27 virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 app-arch/xz-utils dev-util/desktop-file-utils x11-misc/shared-mime-info +BDEPEND=>=dev-util/intltool-0.27 virtual/pkgconfig >=app-portage/elt-patches-20170815 || ( >=sys-devel/automake-1.16.1:1.16 >=sys-devel/automake-1.15.1:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEFINED_PHASES=install postinst postrm preinst prepare +DEPEND=>=x11-libs/gtk+-2.4:2 dev-util/desktop-file-utils x11-misc/shared-mime-info DESCRIPTION=A GTK+ color selector -EAPI=5 +EAPI=7 HOMEPAGE=http://gcolor2.sourceforge.net KEYWORDS=amd64 ~ppc ~ppc64 x86 LICENSE=GPL-2 public-domain RDEPEND=>=x11-libs/gtk+-2.4:2 SLOT=0 SRC_URI=mirror://sourceforge/gcolor2/gcolor2-0.4.tar.gz https://dev.gentoo.org/~pacho/gnome/gcolor2.svg -_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 eapi7-ver f9ec87e93172b25ce65a85303dc06964 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2 5e9aaae6eb511a4c4d9964fe8259110d gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e libtool f143db5a74ccd9ca28c1234deffede96 ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf versionator d3fb3ba33acc3bbbdc4d7970227c100d wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=cb83d5a618471a5b9efaf87d7ad8d0dd +_eclasses_=autotools 7d999b62b8749fad43fff00620cedf47 desktop 7fd20552ce4cc97e8acb132a499a7dd8 libtool f143db5a74ccd9ca28c1234deffede96 multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba +_md5_=8ee667382e5840904a6371a8711fde6b diff --git a/metadata/md5-cache/x11-misc/py3status-3.30 b/metadata/md5-cache/x11-misc/py3status-3.31 similarity index 97% rename from metadata/md5-cache/x11-misc/py3status-3.30 rename to metadata/md5-cache/x11-misc/py3status-3.31 index c75898c854bf..25d36feabb77 100644 --- a/metadata/md5-cache/x11-misc/py3status-3.30 +++ b/metadata/md5-cache/x11-misc/py3status-3.31 @@ -9,6 +9,6 @@ LICENSE=BSD RDEPEND=x11-misc/i3status gevent? ( >=dev-python/gevent-1.2.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) udev? ( >=dev-python/pyudev-0.21.0[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] ) python_targets_python3_6? ( dev-lang/python:3.6 ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) >=dev-lang/python-exec-2:=[python_targets_python3_6(-)?,python_targets_python3_7(-)?,python_targets_python3_8(-)?,-python_single_target_python3_6(-),-python_single_target_python3_7(-),-python_single_target_python3_8(-)] REQUIRED_USE=|| ( python_targets_python3_6 python_targets_python3_7 python_targets_python3_8 ) SLOT=0 -SRC_URI=https://github.com/ultrabug/py3status/archive/3.30.tar.gz -> py3status-3.30.tar.gz +SRC_URI=https://github.com/ultrabug/py3status/archive/3.31.tar.gz -> py3status-3.31.tar.gz _eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 distutils-r1 409cd1220f9f980d21980293a50e2a8e edos2unix 33e347e171066657f91f8b0c72ec8773 epatch e8f1ec13660dc2f44b32775765d85e42 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune 4f3f2db5ce3ccbeeacdf3f94954043aa multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 preserve-libs ef207dc62baddfddfd39a164d9797648 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba _md5_=a0cd85807da5159581d1e235bd674b0b diff --git a/metadata/md5-cache/x11-plugins/Manifest.gz b/metadata/md5-cache/x11-plugins/Manifest.gz index 4e33eab7f674..3f620b341a28 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/wmdrawer-0.10.5-r3 b/metadata/md5-cache/x11-plugins/wmdrawer-0.10.5-r3 index ce124f1357fb..1ae02f39c390 100644 --- a/metadata/md5-cache/x11-plugins/wmdrawer-0.10.5-r3 +++ b/metadata/md5-cache/x11-plugins/wmdrawer-0.10.5-r3 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile install prepare -DEPEND=x11-libs/gdk-pixbuf:2[X] x11-libs/gtk+:2 virtual/pkgconfig +DEPEND=|| ( ( x11-libs/gdk-pixbuf:2[X] >=x11-libs/gdk-pixbuf-2.42.0:2 ) =x11-libs/gdk-pixbuf-2.42.0:2 ) =x11-libs/libdockapp-0.7:= +DEPEND=|| ( ( x11-libs/gdk-pixbuf:2[X] >=x11-libs/gdk-pixbuf-2.42.0:2 ) =x11-libs/libdockapp-0.7:= DESCRIPTION=a popup menu of icons like in AfterStep, as a dockapp EAPI=7 HOMEPAGE=https://www.dockapps.net/wmmenu KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=x11-libs/gdk-pixbuf[X] >=x11-libs/libdockapp-0.7:= +RDEPEND=|| ( ( x11-libs/gdk-pixbuf:2[X] >=x11-libs/gdk-pixbuf-2.42.0:2 ) =x11-libs/libdockapp-0.7:= SLOT=0 SRC_URI=https://dev.gentoo.org/~voyageur/distfiles/wmmenu-1.3.tar.gz _eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb -_md5_=309465863abef54a40a530e8e3e55cf9 +_md5_=c0b0035a093563a65f28faabd2abcc77 diff --git a/metadata/md5-cache/x11-wm/Manifest.gz b/metadata/md5-cache/x11-wm/Manifest.gz index 67018d167f28..7b1e0f9285a5 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/mutter-3.36.5 b/metadata/md5-cache/x11-wm/mutter-3.36.5 deleted file mode 100644 index af06ff32be55..000000000000 --- a/metadata/md5-cache/x11-wm/mutter-3.36.5 +++ /dev/null @@ -1,16 +0,0 @@ -BDEPEND=dev-libs/wayland >=dev-util/meson-0.50.0 dev-util/gdbus-codegen dev-util/glib-utils >=sys-devel/gettext-0.19.8 virtual/pkgconfig test? ( app-text/docbook-xml-dtd:4.5 ) wayland? ( >=sys-kernel/linux-headers-4.4 x11-base/xorg-server ) app-arch/xz-utils >=dev-util/meson-0.54.0 >=dev-util/ninja-1.8.2 test? ( x11-base/xorg-server[xvfb] x11-apps/xhost ) -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=x11-libs/libX11 >=media-libs/graphene-1.9.3[introspection?] >=x11-libs/gtk+-3.19.8:3[X,introspection?] x11-libs/gdk-pixbuf:2 >=x11-libs/pango-1.30[introspection?] >=dev-libs/fribidi-1.0.0 >=x11-libs/cairo-1.14[X] >=gnome-base/gsettings-desktop-schemas-3.33.0[introspection?] >=dev-libs/glib-2.61.1:2 gnome-base/gnome-settings-daemon >=dev-libs/json-glib-0.12.0[introspection?] gnome-base/gnome-desktop:3= >=x11-libs/libXcomposite-0.4 x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 >=x11-libs/libXi-1.7.4 x11-libs/libXtst x11-libs/libxkbfile x11-misc/xkeyboard-config >=x11-libs/libxkbcommon-0.4.3[X] x11-libs/libXrender >=x11-libs/libXrandr-1.5.0 x11-libs/libxcb x11-libs/libXinerama x11-libs/libXau x11-libs/libICE >=dev-libs/atk-2.5.3[introspection?] >=media-libs/libcanberra-0.26 sys-apps/dbus media-libs/mesa[X(+),egl] wayland? ( >=dev-libs/wayland-protocols-1.19 >=dev-libs/wayland-1.13.0 x11-libs/libdrm:= >=media-libs/mesa-10.3[egl,gbm,wayland,gles2] >=dev-libs/libinput-1.7 systemd? ( sys-apps/systemd ) elogind? ( sys-auth/elogind ) x11-base/xorg-server[wayland] ) udev? ( >=dev-libs/libgudev-232:= >=virtual/libudev-232-r1:= ) x11-libs/libSM input_devices_wacom? ( >=dev-libs/libwacom-0.13 ) >=x11-libs/startup-notification-0.7 screencast? ( >=media-video/pipewire-0.3.0:0/0.3 ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) x11-base/xorg-proto sysprof? ( >=dev-util/sysprof-capture-3.35.2:3 ) dev-util/desktop-file-utils x11-misc/shared-mime-info -DESCRIPTION=GNOME 3 compositing window manager based on Clutter -EAPI=7 -HOMEPAGE=https://gitlab.gnome.org/GNOME/mutter/ -IUSE=elogind input_devices_wacom +introspection screencast +sysprof systemd test udev wayland test -KEYWORDS=~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 -LICENSE=GPL-2+ -RDEPEND=x11-libs/libX11 >=media-libs/graphene-1.9.3[introspection?] >=x11-libs/gtk+-3.19.8:3[X,introspection?] x11-libs/gdk-pixbuf:2 >=x11-libs/pango-1.30[introspection?] >=dev-libs/fribidi-1.0.0 >=x11-libs/cairo-1.14[X] >=gnome-base/gsettings-desktop-schemas-3.33.0[introspection?] >=dev-libs/glib-2.61.1:2 gnome-base/gnome-settings-daemon >=dev-libs/json-glib-0.12.0[introspection?] gnome-base/gnome-desktop:3= >=x11-libs/libXcomposite-0.4 x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 >=x11-libs/libXi-1.7.4 x11-libs/libXtst x11-libs/libxkbfile x11-misc/xkeyboard-config >=x11-libs/libxkbcommon-0.4.3[X] x11-libs/libXrender >=x11-libs/libXrandr-1.5.0 x11-libs/libxcb x11-libs/libXinerama x11-libs/libXau x11-libs/libICE >=dev-libs/atk-2.5.3[introspection?] >=media-libs/libcanberra-0.26 sys-apps/dbus media-libs/mesa[X(+),egl] wayland? ( >=dev-libs/wayland-protocols-1.19 >=dev-libs/wayland-1.13.0 x11-libs/libdrm:= >=media-libs/mesa-10.3[egl,gbm,wayland,gles2] >=dev-libs/libinput-1.7 systemd? ( sys-apps/systemd ) elogind? ( sys-auth/elogind ) x11-base/xorg-server[wayland] ) udev? ( >=dev-libs/libgudev-232:= >=virtual/libudev-232-r1:= ) x11-libs/libSM input_devices_wacom? ( >=dev-libs/libwacom-0.13 ) >=x11-libs/startup-notification-0.7 screencast? ( >=media-video/pipewire-0.3.0:0/0.3 ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) gnome-extra/zenity -REQUIRED_USE=wayland? ( ^^ ( elogind systemd ) udev ) test? ( wayland ) -RESTRICT=!test? ( test ) -SLOT=0/6 -SRC_URI=mirror://gnome/sources/mutter/3.36/mutter-3.36.5.tar.xz -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=4c91db051fd098968b6ee45268d81621 diff --git a/metadata/md5-cache/x11-wm/mutter-3.36.7 b/metadata/md5-cache/x11-wm/mutter-3.36.7 index 2692b450a662..3d3bd26b3395 100644 --- a/metadata/md5-cache/x11-wm/mutter-3.36.7 +++ b/metadata/md5-cache/x11-wm/mutter-3.36.7 @@ -5,7 +5,7 @@ DESCRIPTION=GNOME 3 compositing window manager based on Clutter EAPI=7 HOMEPAGE=https://gitlab.gnome.org/GNOME/mutter/ IUSE=elogind input_devices_wacom +introspection screencast +sysprof systemd test udev wayland test -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2+ RDEPEND=x11-libs/libX11 >=media-libs/graphene-1.9.3[introspection?] >=x11-libs/gtk+-3.19.8:3[X,introspection?] x11-libs/gdk-pixbuf:2 >=x11-libs/pango-1.30[introspection?] >=dev-libs/fribidi-1.0.0 >=x11-libs/cairo-1.14[X] >=gnome-base/gsettings-desktop-schemas-3.33.0[introspection?] >=dev-libs/glib-2.61.1:2 gnome-base/gnome-settings-daemon >=dev-libs/json-glib-0.12.0[introspection?] gnome-base/gnome-desktop:3= >=x11-libs/libXcomposite-0.4 x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext >=x11-libs/libXfixes-3 >=x11-libs/libXi-1.7.4 x11-libs/libXtst x11-libs/libxkbfile x11-misc/xkeyboard-config >=x11-libs/libxkbcommon-0.4.3[X] x11-libs/libXrender >=x11-libs/libXrandr-1.5.0 x11-libs/libxcb x11-libs/libXinerama x11-libs/libXau x11-libs/libICE >=dev-libs/atk-2.5.3[introspection?] >=media-libs/libcanberra-0.26 sys-apps/dbus media-libs/mesa[X(+),egl] wayland? ( >=dev-libs/wayland-protocols-1.19 >=dev-libs/wayland-1.13.0 x11-libs/libdrm:= >=media-libs/mesa-10.3[egl,gbm,wayland,gles2] >=dev-libs/libinput-1.7 systemd? ( sys-apps/systemd ) elogind? ( sys-auth/elogind ) x11-base/xorg-server[wayland] ) udev? ( >=dev-libs/libgudev-232:= >=virtual/libudev-232-r1:= ) x11-libs/libSM input_devices_wacom? ( >=dev-libs/libwacom-0.13 ) >=x11-libs/startup-notification-0.7 screencast? ( >=media-video/pipewire-0.3.0:0/0.3 ) introspection? ( >=dev-libs/gobject-introspection-1.54:= ) gnome-extra/zenity REQUIRED_USE=wayland? ( ^^ ( elogind systemd ) udev ) test? ( wayland ) @@ -13,4 +13,4 @@ RESTRICT=!test? ( test ) SLOT=0/6 SRC_URI=mirror://gnome/sources/mutter/3.36/mutter-3.36.7.tar.xz https://dev.gentoo.org/~leio/distfiles/mutter-3.36.7-patchset.tar.xz _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome.org 532d56d07b9eace4831aaa817d2b756a gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e meson 71d293a701d6362387e1214da368c848 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 ninja-utils 132cbb376048d079b5a012f5467c4e7f python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb virtualx 7e60d3b10c791ab996f717bc1f30072f wrapper 4251d4c84c25f59094fd557e0063a974 xdg c7ba313ea1eaf266f95cc6235f7d6a07 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=1df9ae503fab941f1dff3139f855f4b2 +_md5_=edfa19849542857fed9068d712da4588 diff --git a/metadata/md5-cache/x11-wm/subtle-0.11.3244 b/metadata/md5-cache/x11-wm/subtle-0.11.3244 index 4c4539711ec8..f3498bd3af9e 100644 --- a/metadata/md5-cache/x11-wm/subtle-0.11.3244 +++ b/metadata/md5-cache/x11-wm/subtle-0.11.3244 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 SRC_URI=https://dev.gentoo.org/~radhermit/dist/subtle-0.11.3244.tar.gz -_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb +_eclasses_=estack 686eaab303305a908fd57b2fd7617800 multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb _md5_=58af8881943b5be9628c8b24d712201b diff --git a/metadata/md5-cache/x11-wm/subtle-9999 b/metadata/md5-cache/x11-wm/subtle-9999 index 335c4a55ca3f..0415b5528b72 100644 --- a/metadata/md5-cache/x11-wm/subtle-9999 +++ b/metadata/md5-cache/x11-wm/subtle-9999 @@ -11,5 +11,5 @@ RDEPEND=x11-libs/libX11 xft? ( x11-libs/libXft ) xinerama? ( x11-libs/libXineram REQUIRED_USE=|| ( ruby_targets_ruby25 ruby_targets_ruby26 ) RESTRICT=!test? ( test ) !test? ( test ) SLOT=0 -_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e mercurial d22fe98ea362174612a57c233239102f multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 9991225e034c8185d67fbc7a8816559f toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e mercurial d22fe98ea362174612a57c233239102f multilib 98584e405e2b0264d37e8f728327fed1 ruby-ng 676004cfb6cdf3dedf1c778d56346624 ruby-utils 927b40774937983813d360c726615e54 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974 _md5_=58af8881943b5be9628c8b24d712201b diff --git a/metadata/md5-cache/xfce-base/Manifest.gz b/metadata/md5-cache/xfce-base/Manifest.gz index a49fc8e6e8b8..dc2b41018fc7 100644 Binary files a/metadata/md5-cache/xfce-base/Manifest.gz and b/metadata/md5-cache/xfce-base/Manifest.gz differ diff --git a/metadata/md5-cache/xfce-base/libxfce4util-4.15.5 b/metadata/md5-cache/xfce-base/libxfce4util-4.15.5 new file mode 100644 index 000000000000..8d357d82b1b9 --- /dev/null +++ b/metadata/md5-cache/xfce-base/libxfce4util-4.15.5 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install prepare +DEPEND=>=dev-libs/glib-2.42 introspection? ( dev-libs/gobject-introspection:= ) dev-util/intltool dev-util/gtk-doc-am sys-devel/gettext virtual/pkgconfig vala? ( || ( dev-lang/vala:0.50 dev-lang/vala:0.48 dev-lang/vala:0.46 dev-lang/vala:0.44 dev-lang/vala:0.40 dev-lang/vala:0.36 ) ) +DESCRIPTION=A basic utility library for the Xfce desktop environment +EAPI=7 +HOMEPAGE=https://git.xfce.org/xfce/libxfce4util/ +IUSE=introspection vala +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris +LICENSE=LGPL-2+ GPL-2+ +RDEPEND=>=dev-libs/glib-2.42 introspection? ( dev-libs/gobject-introspection:= ) +REQUIRED_USE=vala? ( introspection ) +SLOT=0/7 +SRC_URI=https://archive.xfce.org/src/xfce/libxfce4util/4.15/libxfce4util-4.15.5.tar.bz2 +_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vala 2cd99cd72bb91f3f190fa4ca576be580 wrapper 4251d4c84c25f59094fd557e0063a974 +_md5_=3f8d9b92f490fdc725847c5296eacf68 diff --git a/metadata/md5-cache/xfce-extra/Manifest.gz b/metadata/md5-cache/xfce-extra/Manifest.gz index 1706865e62ab..56d8ca7559a9 100644 Binary files a/metadata/md5-cache/xfce-extra/Manifest.gz and b/metadata/md5-cache/xfce-extra/Manifest.gz differ diff --git a/metadata/md5-cache/xfce-extra/xfce4-sensors-plugin-1.3.92-r1 b/metadata/md5-cache/xfce-extra/xfce4-sensors-plugin-1.3.92-r1 index 2828852e3219..7b7372286799 100644 --- a/metadata/md5-cache/xfce-extra/xfce4-sensors-plugin-1.3.92-r1 +++ b/metadata/md5-cache/xfce-extra/xfce4-sensors-plugin-1.3.92-r1 @@ -12,4 +12,4 @@ REQUIRED_USE=|| ( hddtemp lm-sensors acpi ) SLOT=0 SRC_URI=https://archive.xfce.org/src/panel-plugins/xfce4-sensors-plugin/1.3/xfce4-sensors-plugin-1.3.92.tar.bz2 _eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e gnome2-utils 893e828f0f25f070f0b38d20c83c7670 l10n 8cdd85e169b835d518bc2fd59f780d8e wrapper 4251d4c84c25f59094fd557e0063a974 xdg-utils ff2ff954e6b17929574eee4efc5152ba -_md5_=5c0f8b45769b59e10b4c4507b7de41df +_md5_=68cc47f4df34689a3543d3863f7f3acf diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index b77077aa718f..4d81361221fb 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Fri, 20 Nov 2020 05:08:24 +0000 +Sun, 22 Nov 2020 21:38:26 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 1256883dda10..4053091d6a79 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Fri 20 Nov 2020 05:08:24 AM UTC +Sun 22 Nov 2020 09:38:26 PM UTC diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 7950e1cde1c1..653a8b8ddefa 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Fri, 20 Nov 2020 05:30:01 +0000 +Sun, 22 Nov 2020 22:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 63a98854919c..c75cd3dddf82 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -916793ed4f9121dd0cf571f86b37611354904719 1605848098 2020-11-20T04:54:58+00:00 +6dd356bb47e026d4f52dda46237491b0d7170357 1606080031 2020-11-22T21:20:31+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 7764c4c3c1b3..cedfdad61f1d 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1605848701 Fri 20 Nov 2020 05:05:01 AM UTC +1606080901 Sun 22 Nov 2020 09:35:01 PM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index b77077aa718f..4d81361221fb 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Fri, 20 Nov 2020 05:08:24 +0000 +Sun, 22 Nov 2020 21:38:26 +0000 diff --git a/net-analyzer/Manifest.gz b/net-analyzer/Manifest.gz index ba7505b5c7d7..5cbdd1499228 100644 Binary files a/net-analyzer/Manifest.gz and b/net-analyzer/Manifest.gz differ diff --git a/net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild b/net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild index dae97e6adc44..55969ac3638c 100644 --- a/net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild +++ b/net-analyzer/fail2ban/fail2ban-0.11.1-r2.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 arm hppa ppc ppc64 sparc x86" +KEYWORDS="~alpha amd64 arm ~arm64 hppa ppc ppc64 sparc x86" IUSE="selinux systemd" RDEPEND=" diff --git a/net-analyzer/goaccess/Manifest b/net-analyzer/goaccess/Manifest index 39e756052332..4c9954832026 100644 --- a/net-analyzer/goaccess/Manifest +++ b/net-analyzer/goaccess/Manifest @@ -1,2 +1,2 @@ -DIST goaccess-1.2.tar.gz 423103 BLAKE2B 87c527a52db9fa69d6e6a02ffbda64a6a32e6214ca6bc1f2654e1451fe5d73e7caa02cf1416c93c511bee329b7885e4914fb7dfd37562ef5347ea3912d030c14 SHA512 bc31ef1e4c92608635856fa73e69b58267c161a7e3c6f2e3ca8860b862ed1c47575b93943dd975a5f8503774ee90ee0649d380563639e30908d876416638f889 DIST goaccess-1.3.tar.gz 541374 BLAKE2B 55942e35d06f1467df9b80a3fc42211e867b08963a7334783c0279ba7b9e0fd8d6e197277bee780547a9b8f6264ae15844374604f6d7c1b3b57f57768c2b2019 SHA512 7ab8a42670c2009459eee6979cb14e32e7e776e89912077882652631d0ce6ff801fba46d91ab5c23af1229f000e220863e9b70336fcd9fe11521d0ae1fd3bde1 +DIST goaccess-1.4.2.tar.gz 633162 BLAKE2B 4da268bb051114893b480e4eef18e007ccffb9b61ae49cc9a96622864716a44793f0895b5d27685e1b5e22c33f1bdd256dc148d26c7b6fefbd982a3f8fdf1960 SHA512 14bc5a08c2e6bb1db8d664a224b778603a358cf3a52a341a3a3e04e84337d0bb574892cb5005dc62098a8a6f0a834d1014479c29593714fdd6a87cedb3f3fb38 diff --git a/net-analyzer/goaccess/goaccess-1.2.ebuild b/net-analyzer/goaccess/goaccess-1.2.ebuild deleted file mode 100644 index fc4075601073..000000000000 --- a/net-analyzer/goaccess/goaccess-1.2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A real-time web log analyzer and interactive viewer that runs in a terminal" -HOMEPAGE="https://goaccess.io" -SRC_URI="https://tar.goaccess.io/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux" -IUSE="btree bzip2 debug geoip geoipv2 getline libressl tokyocabinet ssl unicode zlib" - -RDEPEND="sys-libs/ncurses:0=[unicode?] - geoip? ( - !geoipv2? ( dev-libs/geoip ) - geoipv2? ( dev-libs/libmaxminddb:0= ) - ) - !tokyocabinet? ( dev-libs/glib:2 ) - tokyocabinet? ( - dev-db/tokyocabinet[bzip2?,zlib?] - btree? ( - bzip2? ( app-arch/bzip2 ) - zlib? ( sys-libs/zlib ) - ) - ) - ssl? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -REQUIRED_USE="btree? ( tokyocabinet ) bzip2? ( btree ) geoipv2? ( geoip ) zlib? ( btree )" - -src_configure() { - econf \ - $(use_enable bzip2 bzip) \ - $(use_enable zlib) \ - $(use_enable debug) \ - $(use_enable geoip geoip $(usex geoipv2 mmdb legacy)) \ - $(use_enable tokyocabinet tcb $(usex btree btree memhash)) \ - $(use_enable unicode utf8) \ - $(use_with getline) \ - $(use_with ssl openssl) -} - -pkg_preinst() { - # Change path to GeoIP bases in config - sed -e s':/usr/local:/usr:' -i "${ED%/}"/etc/goaccess.conf || die "sed failed for goaccess.conf" -} diff --git a/net-analyzer/goaccess/goaccess-1.4.2.ebuild b/net-analyzer/goaccess/goaccess-1.4.2.ebuild new file mode 100644 index 000000000000..e029cb0bf444 --- /dev/null +++ b/net-analyzer/goaccess/goaccess-1.4.2.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +if [[ ${PV} = *9999* ]] ; then + EGIT_REPO_URI="https://github.com/allinurl/${PN}.git" + inherit git-r3 +else + SRC_URI="https://tar.goaccess.io/${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~amd64-linux" +fi + +DESCRIPTION="A real-time web log analyzer and interactive viewer that runs in a terminal" +HOMEPAGE="https://goaccess.io" + +LICENSE="MIT" +SLOT="0" +IUSE="debug geoip geoipv2 getline libressl ssl unicode" +REQUIRED_USE="geoipv2? ( geoip )" + +BDEPEND="virtual/pkgconfig" +RDEPEND="sys-libs/ncurses:0=[unicode?] + geoip? ( + !geoipv2? ( dev-libs/geoip ) + geoipv2? ( dev-libs/libmaxminddb:0= ) + ) + ssl? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + )" +DEPEND="${RDEPEND}" + +src_prepare() { + default + + # Change path to GeoIP bases in config + sed -i -e s':/usr/local:/usr:' config/goaccess.conf || die "sed failed for goaccess.conf" + + eautoreconf +} + +src_configure() { + econf \ + "$(use_enable debug)" \ + "$(use_enable geoip geoip "$(usex geoipv2 mmdb legacy)")" \ + "$(use_enable unicode utf8)" \ + "$(use_with getline)" \ + "$(use_with ssl openssl)" +} diff --git a/net-analyzer/goaccess/goaccess-9999.ebuild b/net-analyzer/goaccess/goaccess-9999.ebuild index a5512dc51d48..e029cb0bf444 100644 --- a/net-analyzer/goaccess/goaccess-9999.ebuild +++ b/net-analyzer/goaccess/goaccess-9999.ebuild @@ -1,21 +1,25 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -EGIT_REPO_URI="https://github.com/allinurl/${PN}.git" +inherit autotools -inherit autotools git-r3 +if [[ ${PV} = *9999* ]] ; then + EGIT_REPO_URI="https://github.com/allinurl/${PN}.git" + inherit git-r3 +else + SRC_URI="https://tar.goaccess.io/${P}.tar.gz" + KEYWORDS="~amd64 ~x86 ~amd64-linux" +fi DESCRIPTION="A real-time web log analyzer and interactive viewer that runs in a terminal" HOMEPAGE="https://goaccess.io" -SRC_URI="" LICENSE="MIT" SLOT="0" -KEYWORDS="" -IUSE="btree bzip2 debug geoip geoipv2 getline libressl tokyocabinet ssl unicode zlib" -REQUIRED_USE="btree? ( tokyocabinet ) bzip2? ( btree ) geoipv2? ( geoip ) zlib? ( btree )" +IUSE="debug geoip geoipv2 getline libressl ssl unicode" +REQUIRED_USE="geoipv2? ( geoip )" BDEPEND="virtual/pkgconfig" RDEPEND="sys-libs/ncurses:0=[unicode?] @@ -23,14 +27,6 @@ RDEPEND="sys-libs/ncurses:0=[unicode?] !geoipv2? ( dev-libs/geoip ) geoipv2? ( dev-libs/libmaxminddb:0= ) ) - !tokyocabinet? ( dev-libs/glib:2 ) - tokyocabinet? ( - dev-db/tokyocabinet[bzip2?,zlib?] - btree? ( - bzip2? ( app-arch/bzip2 ) - zlib? ( sys-libs/zlib ) - ) - ) ssl? ( !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) @@ -48,11 +44,8 @@ src_prepare() { src_configure() { econf \ - "$(use_enable bzip2 bzip)" \ - "$(use_enable zlib)" \ "$(use_enable debug)" \ "$(use_enable geoip geoip "$(usex geoipv2 mmdb legacy)")" \ - "$(use_enable tokyocabinet tcb "$(usex btree btree memhash)")" \ "$(use_enable unicode utf8)" \ "$(use_with getline)" \ "$(use_with ssl openssl)" diff --git a/net-dns/Manifest.gz b/net-dns/Manifest.gz index fb966c0c61de..90f80ced40ad 100644 Binary files a/net-dns/Manifest.gz and b/net-dns/Manifest.gz differ diff --git a/net-dns/c-ares/Manifest b/net-dns/c-ares/Manifest index 4ebd15a41e78..e3cae6e2612d 100644 --- a/net-dns/c-ares/Manifest +++ b/net-dns/c-ares/Manifest @@ -1 +1,2 @@ DIST c-ares-1.16.1.tar.gz 1374637 BLAKE2B 0d87538f5d6cac5b6b9c92d6ba5525af0e580e6506bee9270318f0951aaccdc7e135b446381e8150241d367789ccf2f73dbb333d45de4dbb5a87af05483063a8 SHA512 4ac2a5d5c6da74eb1d6155c4eadc7127ab1b53a8d13caec41bd6172db5417a79f3ab022e77ba37d8b13da6893d7ced5fd8baf5cc3950a4154b4de8743ad31471 +DIST c-ares-1.17.1.tar.gz 1518701 BLAKE2B 31dac21ecae231e2a201dc1ba954c1a0663a06f93eb8e7e033ca3c6d385f53e07af0b04854739f1ee8a7f0693f67f620143e152ef092b49342c62279a0480905 SHA512 b11887bcc9274d368088e1a8b6aca62414f20675cf0bc58e948f54fa04c327c39dd23cefe7509eec6397db14b550a3f6b77f5c18b3d735b3eef48ce2da1dcd00 diff --git a/net-dns/c-ares/c-ares-1.17.1.ebuild b/net-dns/c-ares/c-ares-1.17.1.ebuild new file mode 100644 index 000000000000..141ed080a477 --- /dev/null +++ b/net-dns/c-ares/c-ares-1.17.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools eutils multilib-minimal + +DESCRIPTION="C library that resolves names asynchronously" +HOMEPAGE="https://c-ares.haxx.se/" +SRC_URI="https://${PN}.haxx.se/download/${P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris" +IUSE="static-libs" + +# Subslot = SONAME of libcares.so.2 +SLOT="0/2" + +DOCS=( AUTHORS CHANGES NEWS README.md RELEASE-NOTES TODO ) + +MULTILIB_WRAPPED_HEADERS=( + /usr/include/ares_build.h +) + +multilib_src_configure() { + ECONF_SOURCE=${S} \ + econf \ + --enable-nonblocking \ + --enable-symbol-hiding \ + --disable-tests \ + $(use_enable static-libs static) +} + +multilib_src_install_all() { + einstalldocs + find "${ED}" -name "*.la" -delete || die +} diff --git a/net-firewall/Manifest.gz b/net-firewall/Manifest.gz index ebc249f2562e..52c5a571979e 100644 Binary files a/net-firewall/Manifest.gz and b/net-firewall/Manifest.gz differ diff --git a/net-firewall/firehol/firehol-3.1.6-r2.ebuild b/net-firewall/firehol/firehol-3.1.6-r2.ebuild index 997336632666..0a6d297bcce3 100644 --- a/net-firewall/firehol/firehol-3.1.6-r2.ebuild +++ b/net-firewall/firehol/firehol-3.1.6-r2.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/firehol/firehol/releases/download/v${PV}/${P}.tar.xz LICENSE="GPL-2" SLOT="0" IUSE="doc ipv6 ipset" -KEYWORDS="amd64 arm ~ppc ~x86" +KEYWORDS="amd64 arm ~arm64 ~ppc ~x86" RDEPEND="net-firewall/iptables sys-apps/iproute2[-minimal,ipv6?] diff --git a/net-firewall/ipset/Manifest b/net-firewall/ipset/Manifest index c4ce8dc36150..1ac9213bd43c 100644 --- a/net-firewall/ipset/Manifest +++ b/net-firewall/ipset/Manifest @@ -3,3 +3,4 @@ DIST ipset-6.38.tar.bz2 545568 BLAKE2B 14e526ba40f4912cd78d81831d072f9c9c159ac14 DIST ipset-7.5.tar.bz2 675179 BLAKE2B 04d207c4eaed66bf295ebd31a66d4423e68ed7918ef4e7d0b08e7e178216a016e6d454ed4c0f915d36d6266a74ea08c33db69481bf288c6fe7a1cd00c3ed68e5 SHA512 97e2a42bb33dfd2d9c5d258595e4be670d961ce3f5fa537ffb32b748168324f4e572047f026096c142e3a1f5a88caa26da455cbc067121dc9140f79321f272aa DIST ipset-7.6.tar.bz2 676777 BLAKE2B 98b4a0094e4e44dfc8702ad4e61ce3c62de74964afc16ae91d107599fab7f978071693b6e6f57969c35a3dd381fac5b58610fd74a107eebd8af1f8644d819061 SHA512 c4d9c65895335dec8f855fca6c940d2ee19e7b8d2292325778a1608e795e2e35caa787cbcdeb8e2877f3695c641ac348b23ac43f73bdc1a8242e8d04f4944084 DIST ipset-7.7.tar.bz2 678424 BLAKE2B 330eb82ee3cff8a2b09704e6f90a4a1376f6154753a8e386f52ee934b7e1b402d8b9293962563d50501f31540d651374d7899961739bef50ee2f3096fd1b0bfd SHA512 1c8f969eb402ae56eb4c747d89eb5dcbf068004c3c0ae171eb4eddd948f7d8dd14d6e3dc8b713d2909f220359e6760fce3848a4e12f59a575b747f6c38ad80db +DIST ipset-7.9.tar.bz2 679273 BLAKE2B 0e6d216be5c1f51598f74cce8b1166168644152924354d777fc4a0b5433d68d5e04925bf2c88d4a6abf86d7f707795c3f828bf7d00e6a034326c4c3131768f0a SHA512 53d52aa9c0aba728fd620a7b9e232e5366fa45322d3d23150192b53e311877c61175577b6a0fbde95eaa1fb12deca3251a682fd74c3443558e34a1fe2247309e diff --git a/net-firewall/ipset/ipset-7.9.ebuild b/net-firewall/ipset/ipset-7.9.ebuild new file mode 100644 index 000000000000..3cdf4582eb76 --- /dev/null +++ b/net-firewall/ipset/ipset-7.9.ebuild @@ -0,0 +1,112 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +MODULES_OPTIONAL_USE=modules +inherit autotools linux-info linux-mod systemd + +DESCRIPTION="IPset tool for iptables, successor to ippool" +HOMEPAGE="http://ipset.netfilter.org/" +SRC_URI="http://ipset.netfilter.org/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" + +BDEPEND="virtual/pkgconfig" + +RDEPEND=">=net-firewall/iptables-1.4.7 + net-libs/libmnl" +DEPEND="${RDEPEND}" + +DOCS=( ChangeLog INSTALL README UPGRADE ) + +PATCHES=( "${FILESDIR}"/${PN}-7.4-fix-pkgconfig-dir.patch ) + +# configurable from outside, e.g. /etc/portage/make.conf +IP_NF_SET_MAX=${IP_NF_SET_MAX:-256} + +BUILD_TARGETS="modules" +MODULE_NAMES_ARG="kernel/net/netfilter/ipset/:${S}/kernel/net/netfilter/ipset" +MODULE_NAMES="xt_set(kernel/net/netfilter/ipset/:${S}/kernel/net/netfilter/)" +MODULE_NAMES+=" em_ipset(kernel/net/sched/:${S}/kernel/net/sched/)" +for i in ip_set{,_bitmap_{ip{,mac},port},_hash_{ip{,mac,mark,port{,ip,net}},mac,net{,port{,net},iface,net}},_list_set}; do + MODULE_NAMES+=" ${i}(${MODULE_NAMES_ARG})" +done + +pkg_setup() { + get_version + CONFIG_CHECK="NETFILTER" + ERROR_NETFILTER="ipset requires NETFILTER support in your kernel." + # It does still build without NET_NS, but it may be needed in future. + #CONFIG_CHECK="${CONFIG_CHECK} NET_NS" + #ERROR_NET_NS="ipset requires NET_NS (network namespace) support in your kernel." + CONFIG_CHECK+=" !PAX_CONSTIFY_PLUGIN" + ERROR_PAX_CONSTIFY_PLUGIN="ipset contains constified variables (#614896)" + + build_modules=0 + if use modules; then + if linux_config_src_exists && linux_chkconfig_builtin "MODULES" ; then + if linux_chkconfig_present "IP_NF_SET" || \ + linux_chkconfig_present "IP_SET"; then #274577 + eerror "There is IP{,_NF}_SET or NETFILTER_XT_SET support in your kernel." + eerror "Please either build ipset with modules USE flag disabled" + eerror "or rebuild kernel without IP_SET support and make sure" + eerror "there is NO kernel ip_set* modules in /lib/modules//... ." + die "USE=modules and in-kernel ipset support detected." + else + einfo "Modular kernel detected. Gonna build kernel modules..." + build_modules=1 + fi + else + eerror "Nonmodular kernel detected, but USE=modules. Either build" + eerror "modular kernel (without IP_SET) or disable USE=modules" + die "Nonmodular kernel detected, will not build kernel modules" + fi + fi + [[ ${build_modules} -eq 1 ]] && linux-mod_pkg_setup +} + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + econf \ + $(use_with modules kmod) \ + --disable-static \ + --with-maxsets=${IP_NF_SET_MAX} \ + --libdir="${EPREFIX}/$(get_libdir)" \ + --with-ksource="${KV_DIR}" \ + --with-kbuild="${KV_OUT_DIR}" +} + +src_compile() { + einfo "Building userspace" + emake + + if [[ ${build_modules} -eq 1 ]]; then + einfo "Building kernel modules" + set_arch_to_kernel + emake modules + fi +} + +src_install() { + einfo "Installing userspace" + default + + find "${ED}" -name '*.la' -delete || die + + newinitd "${FILESDIR}"/ipset.initd-r4 ${PN} + newconfd "${FILESDIR}"/ipset.confd ${PN} + systemd_newunit "${FILESDIR}"/ipset.systemd ${PN}.service + keepdir /var/lib/ipset + + if [[ ${build_modules} -eq 1 ]]; then + einfo "Installing kernel modules" + linux-mod_src_install + fi +} diff --git a/net-im/Manifest.gz b/net-im/Manifest.gz index 28795c10eb1e..2df9ab78c0d3 100644 Binary files a/net-im/Manifest.gz and b/net-im/Manifest.gz differ diff --git a/net-im/signal-desktop-bin/Manifest b/net-im/signal-desktop-bin/Manifest index 6377ded151e5..4db971d109ba 100644 --- a/net-im/signal-desktop-bin/Manifest +++ b/net-im/signal-desktop-bin/Manifest @@ -1 +1 @@ -DIST signal-desktop_1.37.3_amd64.deb 109368190 BLAKE2B 75ddfa5a7dc82f621862cb9217e53b098705112d239888e518b9cbbd7eb5e38b2b076a6d2958f0e7970b82433723b9aed6513afa5fb7916e2243c1e345500a70 SHA512 6fc226901213111b2acb7ae0f8c85a69eeb00821c204ac270a0ef1547389dbb35434cd7b0f29bb0b695bb8f92c55661fe47edc30c5dd386e7b0fae5d8929bcf8 +DIST signal-desktop_1.38.1_amd64.deb 110370858 BLAKE2B 3701d4f1a6b65a6fd5b2ef67d3b74e37037c10f3eef299806589f842dd350b1d4bd05bbd037c7a8c40e8a70b4c54f9321104e4df2ede8f26215198280831bef9 SHA512 3cb36dfc86a48fdb960c6749e8154b84f9c65bc3d020047a81ae395b6ec403f0ce1452115aca89bfa1607b1e7c2958ff8a2578fb8f93cd69845ca815926c89c0 diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-1.37.3.ebuild b/net-im/signal-desktop-bin/signal-desktop-bin-1.38.1.ebuild similarity index 100% rename from net-im/signal-desktop-bin/signal-desktop-bin-1.37.3.ebuild rename to net-im/signal-desktop-bin/signal-desktop-bin-1.38.1.ebuild diff --git a/net-im/swift/swift-4.0.2-r100.ebuild b/net-im/swift/swift-4.0.2-r100.ebuild new file mode 100644 index 000000000000..c41fea304bf0 --- /dev/null +++ b/net-im/swift/swift-4.0.2-r100.ebuild @@ -0,0 +1,229 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..2} luajit ) +PYTHON_COMPAT=( python3_{6..9} ) + +inherit lua-single python-any-r1 scons-utils toolchain-funcs xdg-utils + +DESCRIPTION="An elegant, secure, adaptable and intuitive XMPP Client" +HOMEPAGE="https://www.swift.im/" +SRC_URI=" + https://swift.im/downloads/releases/${P}/${P}.tar.gz + https://dev.gentoo.org/~conikost/distfiles/patches/swift-4.0.2-python3-compatibility.patch.gz" + +LICENSE="BSD BSD-1 CC-BY-3.0 GPL-3 OFL-1.1" +SLOT="4/0" +KEYWORDS="~amd64" +IUSE="+client expat gconf +icu +idn lua spell test zeroconf" +REQUIRED_USE=" + || ( icu idn ) + gconf? ( client ) + lua? ( ${LUA_REQUIRED_USE} ) + spell? ( client ) +" + +RDEPEND=" + dev-db/sqlite:3 + dev-libs/boost:= + dev-libs/openssl:0= + net-libs/libnatpmp + net-libs/miniupnpc:= + sys-libs/zlib + client? ( + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtmultimedia:5 + dev-qt/qtnetwork:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtwebkit:5 + dev-qt/qtx11extras:5 + net-dns/avahi + ) + expat? ( dev-libs/expat ) + !expat? ( dev-libs/libxml2:2 ) + gconf? ( gnome-base/gconf:2 ) + icu? ( dev-libs/icu:= ) + idn? ( net-dns/libidn:= ) + lua? ( ${LUA_DEPS} ) + spell? ( app-text/hunspell:= ) +" + +DEPEND=" + ${RDEPEND} + >=dev-util/scons-3.0.1-r3 + client? ( dev-qt/linguist-tools:5 ) + test? ( net-dns/avahi ) +" + +# Tests don't run, as they fail with "[QA/UnitTest/**dummy**] Error -6". +RESTRICT="test" + +DOCS=( + "DEVELOPMENT.md" + "README.md" + "Swiften/ChangeLog.md" +) + +PATCHES=( + "${FILESDIR}"/${P}-boost-1.69-compatibility.patch + "${WORKDIR}"/${P}-python3-compatibility.patch + "${FILESDIR}"/${P}-qt-5.11-compatibility.patch + "${FILESDIR}"/${P}-qt-5.15-compatibility.patch +) + +pkg_setup() { + python-any-r1_pkg_setup + use lua && lua-single_pkg_setup +} + +src_prepare() { + default + + # Don't include '/usr/lib*' in the link command line for `swiften-config` + sed -e '/_LIBDIRFLAGS/d' -i Swiften/Config/SConscript || die + + # Use correct LIBDIR for Lua + sed -e "s/lib/$(get_libdir)/g" -i Sluift/SConscript.variant || die + + # Hack for finding Qt system libs + mkdir "${T}"/qt || die + ln -s "${EPREFIX}"/usr/$(get_libdir)/qt5/bin "${T}"/qt/bin || die + ln -s "${EPREFIX}"/usr/$(get_libdir)/qt5 "${T}"/qt/lib || die + ln -s "${EPREFIX}"/usr/include/qt5 "${T}"/qt/include || die + + # Remove parts of Swift, which a user don't want to compile + if ! use client; then rm -fr Swift Slimber || die; fi + if ! use lua; then rm -fr Sluift || die; fi + if ! use zeroconf; then + rm -fr Limber || die + if use client; then rm -fr Slimber || die; fi + fi + + # Remove '3rdParty', as the system libs should be used + # `CppUnit`, `GoogleTest` and `HippoMocks` are needed for tests + local my3rdparty=( + Boost + Breakpad + DocBook + Expat + LCov + Ldns + LibIDN + LibMiniUPnPc + LibNATPMP + Lua + OpenSSL + SCons + SQLite + Unbound + ZLib + ) + + if use test; then + cd 3rdParty && rm -fr "${my3rdparty[@]}" || die + else + rm -fr 3rdParty || die + fi +} + +src_configure() { + MYSCONS=( + ar="$(tc-getAR)" + allow_warnings="yes" + assertions="no" + build_examples="yes" + boost_bundled_enable="false" + boost_force_bundled="false" + cc="$(tc-getCC)" + ccache="no" + ccflags="${CFLAGS}" + coverage="no" + cxx="$(tc-getCXX)" + cxxflags="${CXXFLAGS}" + debug="no" + distcc="no" + experimental="no" + experimental_ft="yes" + hunspell_enable="$(usex spell)" + icu="$(usex icu)" + install_git_hooks="no" + libidn_bundled_enable="false" + libminiupnpc_force_bundled="false" + libnatpmp_force_bundled="false" + link="$(tc-getCXX)" + linkflags="${LDFLAGS}" + lua_includedir="$(lua_get_include_dir)" + lua_libdir="${EPREFIX}/usr/$(get_libdir)" + lua_libname="$(basename -s '.so' $(lua_get_shared_lib))" + max_jobs="no" + optimize="no" + qt="${T}/qt" + qt5="$(usex client)" + swiften_dll="true" + swift_mobile="no" + target="native" + test="none" + try_avahi="$(usex client)" + try_expat="$(usex expat)" + try_gconf="$(usex gconf)" + try_libidn="$(usex idn)" + try_libxml="$(usex !expat)" + tls_backend="openssl" + unbound="no" + V="1" + valgrind="no" + zlib_bundled_enable="false" + ) +} + +src_compile() { + local myesconsinstall=( + Swiften + $(usex client Swift '') + $(usex lua Sluift '') + $(usex zeroconf Limber '') + $(usex zeroconf "$(usex client Slimber '')" '') + ) + + escons "${MYSCONS[@]}" "${myesconsinstall[@]}" +} + +src_test() { + MYSCONS=( + V="1" + ) + + escons "${MYSCONS[@]}" test=unit QA +} + +src_install() { + local myesconsinstall=( + SWIFTEN_INSTALLDIR="${ED}/usr" + SWIFTEN_LIBDIR="${ED}/usr/$(get_libdir)" + $(usex client "SWIFT_INSTALLDIR=${ED}/usr" '') + $(usex lua "SLUIFT_DIR=${ED}/usr" '') + $(usex lua "SLUIFT_INSTALLDIR=${ED}/usr" '') + "${ED}" + ) + + escons "${MYSCONS[@]}" "${myesconsinstall[@]}" + + use zeroconf && dobin Limber/limber + use zeroconf && use client && newbin Slimber/CLI/slimber slimber-cli + use zeroconf && use client && newbin Slimber/Qt/slimber slimber-qt + + einstalldocs +} + +pkg_postinst() { + use client && xdg_icon_cache_update +} + +pkg_postrm() { + use client && xdg_icon_cache_update +} diff --git a/net-irc/Manifest.gz b/net-irc/Manifest.gz index b103db563915..760bfa094e56 100644 Binary files a/net-irc/Manifest.gz and b/net-irc/Manifest.gz differ diff --git a/net-irc/inspircd/Manifest b/net-irc/inspircd/Manifest index 769c1225abd0..c650dfb20e98 100644 --- a/net-irc/inspircd/Manifest +++ b/net-irc/inspircd/Manifest @@ -1,3 +1,3 @@ DIST inspircd-2.0.29.tar.gz 736116 BLAKE2B bd634b81e5a21f4d5e12a4057c4dfb65a241b696be373d24a047594d1d175028dcabff2f28defcf4c340859cfc50637afec755f399c24366e1134c7d69c843f2 SHA512 83da7b089dca8035ffa4f30a2e757661150bb9337aa8124958daa317b44a98fb15fdcb872f8512737b5a39f1b641616eb27c4398d4c8d8fcd40d1f8872bd2052 DIST inspircd-3.4.0.tar.gz 809845 BLAKE2B 6529d53c3cbff07727eceea5e1eb321bb8b7f6b231b3d5ea3ed0ced01fe5b66c2da83039a1ac11ff49e6536ef482483a9be26762feb30511a0016bab07d6790a SHA512 871fefff5e337dc6228fae223ff7ac534e159b5bfb838419247b1d16339c860b0b939a28dd4610cf3b8c37328b5e6ccba2ddd80adbd27638f4f3fa28e4f99066 -DIST inspircd-3.8.0.tar.gz 849843 BLAKE2B 6233d697329d50df272af904a00bde844c2b8121d75638894cda05f4e6b6d04321c969a293b82bff17f0254bed897574bb2a56acc9283c0b9223b0a8b4747ddc SHA512 efb382b5aa744d42712f9f4ad41d3b939b83bbf702aace2daaff257a96480aa1244a20a63a33b8755e9bab6f15fc39ddde910b1d92022ebcca2ab43af7b4f04e +DIST inspircd-3.8.1.tar.gz 850997 BLAKE2B aebf085b21b99fae989d5d75c28223cf5ef5aa8f872886af099800683718e51aa3650a8968968e2434de738a5d5770a26f84a02c9b1270dffdc9efdd2e8c9f86 SHA512 be16dd18882bdb424ebeb131e382db073adaf37914e7c8333bd1c266242f2c48e6c721f0ecae72159bca229790413dabee67fd4a4a3c83588c48c8bb15e604fa diff --git a/net-irc/inspircd/inspircd-3.8.0.ebuild b/net-irc/inspircd/inspircd-3.8.1.ebuild similarity index 100% rename from net-irc/inspircd/inspircd-3.8.0.ebuild rename to net-irc/inspircd/inspircd-3.8.1.ebuild diff --git a/net-libs/Manifest.gz b/net-libs/Manifest.gz index efd4ffa618dd..50e3b93a4d17 100644 Binary files a/net-libs/Manifest.gz and b/net-libs/Manifest.gz differ diff --git a/net-libs/libnpupnp/Manifest b/net-libs/libnpupnp/Manifest index 73b212161a1f..240ceb39013b 100644 --- a/net-libs/libnpupnp/Manifest +++ b/net-libs/libnpupnp/Manifest @@ -1 +1,2 @@ DIST libnpupnp-4.0.13.tar.gz 537389 BLAKE2B 0085d9ea9cf1786bba8e8abb812b0c1279fc30c70a16cb2bf4cfad405ec1346180171dd39296a30f5747cd55ee06fc314bcb49fdb6537a4dfbcf048fb66fd7f5 SHA512 c0332552ab2ba8aea8e72858601f2415a08a68224f724454d230acddf612b2fdd873daf41aeeeb3e1b4d1694665245087b3c4f96c896d36e2e9c017ea95d13aa +DIST libnpupnp-4.0.14.tar.gz 538629 BLAKE2B 3bcd1cf04126aa0d16056865e2f7c90bc479ae4ccea5094b2c44ee687be95fe346494a2d07ab7925963d88e614fff1a451341af7d41c2a16df1208aef728d515 SHA512 b224cadbcd92b8d66118da015db345b3ef5c4858a458ac681d550c1409e62f212d3b2a744a8368fa4149309f29de2edb8cb14c75ebcb14653ee351e0d24cba71 diff --git a/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild new file mode 100644 index 000000000000..733dfdc33817 --- /dev/null +++ b/net-libs/libnpupnp/libnpupnp-4.0.14-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp" +HOMEPAGE="https://framagit.org/medoc92/npupnp" +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-libs/expat + net-libs/libmicrohttpd + net-misc/curl +" + +src_prepare() { + default + ./autogen.sh || die +} + +src_configure() { + econf \ + --enable-client \ + --enable-debug \ + --enable-device \ + --enable-gena \ + --enable-ipv6 \ + --enable-optssdp \ + --enable-reuseaddr \ + --enable-soap \ + --enable-ssdp \ + --enable-tools \ + --enable-webserver +} diff --git a/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild b/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild new file mode 100644 index 000000000000..a00ee17059e3 --- /dev/null +++ b/net-libs/libnpupnp/libnpupnp-4.0.14.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A C++ base UPnP library, derived from Portable UPnP, a.k.a libupnp" +HOMEPAGE="https://framagit.org/medoc92/npupnp" +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-libs/expat + net-libs/libmicrohttpd + net-misc/curl +" + +src_prepare() { + default + ./autogen.sh || die +} + +src_configure() { + econf \ + --enable-client \ + --enable-debug \ + --enable-device \ + --enable-gena \ + --enable-ipv6 \ + --enable-optssdp \ + --enable-reuseaddr \ + --enable-soap \ + --enable-ssdp \ + --enable-tools \ + --enable-webserver +} diff --git a/net-libs/libupnpp/Manifest b/net-libs/libupnpp/Manifest index fd7afeab9826..62d1821ef108 100644 --- a/net-libs/libupnpp/Manifest +++ b/net-libs/libupnpp/Manifest @@ -1,2 +1,3 @@ DIST libupnpp-0.17.0.tar.gz 475725 BLAKE2B 568ead87791db1a41a4e5f93280cc8560336516cf676e1b64c35d0835579501ba61b75ee41e1dd1e58024d771f6f077c3c85515929be1c059a51ca314756fbfb SHA512 da7ef2453a8fad1e226c6252a84d76bf874128d306d4f9ca53e77e64734d113f3ad6dcd79549b2fe2a3cfab22243b5dceb1b7bd1fffeb512ed996b8fc680667e DIST libupnpp-0.19.4.tar.gz 469296 BLAKE2B e1240446bdd48329138183015445778f89abc575ade64a15c8564d2d3a6992b73c8fe7d0e9e99370f37ea851e65fef0a6b52e0fd274d064a5cdbc65ab2129c2d SHA512 4fda8ef9046d18b39cde4c5c6cfca4284f1f6ad76689cdab5a0d584b9fae17adbfe225542b81b88c62e62b65584dab38211a0606ac02ffd0f12abd13246c040f +DIST libupnpp-0.20.0.tar.gz 476361 BLAKE2B 23c319e506a073b769437a842db6cd03709d834cb91b9c7626fdd3ff0573c8a654b8de91f180d152885570e42c53fa58e7f1602f932511a89b532340958329b4 SHA512 18b3026e65b3f1ae0b8d61154325e7f89c808fe2281d7d514358298a29152a4b5903f5cad9d8bbe9db34c5f57efe98989efd9d99c0b512197eb4554b3a4ff3cc diff --git a/net-libs/libupnpp/libupnpp-0.20.0-r1.ebuild b/net-libs/libupnpp/libupnpp-0.20.0-r1.ebuild new file mode 100644 index 000000000000..2ffca9d9e1bf --- /dev/null +++ b/net-libs/libupnpp/libupnpp-0.20.0-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +DESCRIPTION="The libupnpp C++ library wraps libupnp for easier use by upmpdcli and upplay" +HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli" +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + dev-libs/expat + >=net-libs/libnpupnp-4.0.14-r1 + net-misc/curl +" +RDEPEND="${DEPEND}" diff --git a/net-libs/libupnpp/libupnpp-0.20.0.ebuild b/net-libs/libupnpp/libupnpp-0.20.0.ebuild new file mode 100644 index 000000000000..638dc365a3e3 --- /dev/null +++ b/net-libs/libupnpp/libupnpp-0.20.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +DESCRIPTION="The libupnpp C++ library wraps libupnp for easier use by upmpdcli and upplay" +HOMEPAGE="https://www.lesbonscomptes.com/upmpdcli" +SRC_URI="https://www.lesbonscomptes.com/upmpdcli/downloads/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + dev-libs/expat + net-libs/libnpupnp + net-misc/curl +" +RDEPEND="${DEPEND}" diff --git a/net-libs/miniupnpc/Manifest b/net-libs/miniupnpc/Manifest index e8a90f1282f2..eace9f0adc8e 100644 --- a/net-libs/miniupnpc/Manifest +++ b/net-libs/miniupnpc/Manifest @@ -1,5 +1,3 @@ -DIST miniupnpc-2.1.20191224.tar.gz 94740 BLAKE2B 85c0b3eb678685bc7192dbee9440ec5f5be80cbac4d6a4e0a6473662c66f05ef512322cd535a142ffe16d3099a86f78ea70645a7eb2979c373e7a486aeab0cd5 SHA512 d362f914ce9177c1bc46f1f3ae59069c61c0c9c1b6ea7e78003d6b46445d3550835ffc541c2649b5fbc997d035357b461148edb3648135f33d0ce98b54961917 -DIST miniupnpc-2.1.20191224.tar.gz.sig 543 BLAKE2B ddbde04faa7bce62fdbb5b555bda9dc9ff69f09cc97442049adc787a03ec91824f14cdddaef6e577cf8d08fa96202fc792333b8dab7e6e8c30847fa9302a35d0 SHA512 b8885d2002259c95ede7ab57aaf82db83c2bd7ace3d0986179efac4245ffd42161049e0167a9ac1ff18de6c8df4d39356f0fb6aa6dada7523a238b4db4838887 DIST miniupnpc-2.1.20201016.tar.gz 97682 BLAKE2B 2c98f71ff7262a24a69a9a4af411dbeb58c20ec4181bca8bbdd61c628bf5bd49f7e9b763b73ffb5d3508b5b545a0c918828ead2a376b57b8ea5051cd7b8e9c13 SHA512 d619f7e205cac68137020fab31e8bdaeebd09eeaca5e42e1e03a9e0085a64d635ec896862a488b0d57798d1e6ce96e2ba5652f60c0b8df9fc866eea90baea152 DIST miniupnpc-2.1.20201016.tar.gz.sig 543 BLAKE2B b8ddcadb58e7b8dc4646ea1ac4e10331fe70a5b9a27902dd5ad09ac306605160b63f2e21d96eda4aa0f77485800cb9c5aa110f215dbe3536a9f6ec1c4a5e9ed9 SHA512 fb7886d4198bd2ae1eeff293152ff509e7ebe6ff0f9b3c20d5824f7ca9f65091a61db2bc0a8ac9fb0449994aba594cff3bf6c556876dbb47d593ecf8b7b26d10 DIST miniupnpc-2.2.0.tar.gz 98348 BLAKE2B 3464dc7f0b5416b558d0dd49121f3b851d9808a516c19d4f99fdb205e20149f27ef495d9f8da09ad3a28656580bfc16d1cf99ef993e41e9600cfe427b4a776d2 SHA512 b5bb674f162cae3d9e0205a9cdf6acc1fb334ab8ac5330be924411a8fd46833fb916d09f947d1e40d05224df7df1ecf6d812037185690e5022287c2024eb183f diff --git a/net-libs/miniupnpc/miniupnpc-2.1.20191224.ebuild b/net-libs/miniupnpc/miniupnpc-2.1.20191224.ebuild deleted file mode 100644 index 939ae17cc4ef..000000000000 --- a/net-libs/miniupnpc/miniupnpc-2.1.20191224.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs verify-sig - -DESCRIPTION="UPnP client library and a simple UPnP client" -HOMEPAGE="http://miniupnp.free.fr/" -SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz - verify-sig? ( http://miniupnp.free.fr/files/${P}.tar.gz.sig )" - -LICENSE="BSD" -SLOT="0/17" -KEYWORDS="amd64 arm arm64 hppa ~mips ppc ppc64 s390 sparc x86" -IUSE="ipv6 kernel_linux static-libs" - -RDEPEND="" -BDEPEND=" - kernel_linux? ( sys-apps/lsb-release sys-apps/which ) - verify-sig? ( app-crypt/openpgp-keys-miniupnp )" - -VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/miniupnp.asc - -src_prepare() { - eapply_user - - # These bins are not installed, upnpc-static requires building static lib - sed -i -e '/EXECUTABLES =/s/ upnpc-static listdevices//' Makefile || die - # Prevent gzipping manpage. - sed -i -e '/gzip/d' Makefile || die - - if ! use static-libs; then - sed -i \ - -e '/FILESTOINSTALL =/s/ $(LIBRARY)//' \ - -e '/$(INSTALL) -m 644 $(LIBRARY) $(DESTDIR)$(INSTALLDIRLIB)/d' \ - Makefile || die - fi -} - -# Upstream cmake causes more trouble than it fixes, -# so we'll just stay with the Makefile for now. - -src_compile() { - tc-export CC AR - emake upnpc-shared $(usex static-libs upnpc-static '') -} - -src_test() { - emake -j1 HAVE_IPV6=$(usex ipv6) check -} - -src_install() { - emake \ - DESTDIR="${D}" \ - PREFIX="${EPREFIX}/usr" \ - INSTALLDIRLIB="${EPREFIX}/usr/$(get_libdir)" \ - install - - dodoc README Changelog.txt -} diff --git a/net-libs/miniupnpc/miniupnpc-2.1.20201016.ebuild b/net-libs/miniupnpc/miniupnpc-2.1.20201016.ebuild index 3be49cee565c..939ae17cc4ef 100644 --- a/net-libs/miniupnpc/miniupnpc-2.1.20201016.ebuild +++ b/net-libs/miniupnpc/miniupnpc-2.1.20201016.ebuild @@ -12,7 +12,7 @@ SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz LICENSE="BSD" SLOT="0/17" -KEYWORDS="amd64 arm arm64 ~hppa ~mips ppc ppc64 s390 sparc x86" +KEYWORDS="amd64 arm arm64 hppa ~mips ppc ppc64 s390 sparc x86" IUSE="ipv6 kernel_linux static-libs" RDEPEND="" diff --git a/net-libs/nodejs/Manifest b/net-libs/nodejs/Manifest index bc8534112df8..87cfe291987c 100644 --- a/net-libs/nodejs/Manifest +++ b/net-libs/nodejs/Manifest @@ -1,5 +1,4 @@ -DIST node-v12.18.4.tar.xz 23679924 BLAKE2B 14de3c83851b89f85f7d6f549d9e43e3e97c7a84de94eef8c3a2789e960595749726b8039fdff1be822377355ede2bb95bba4fd1d17c3e5165c844a80eb32e53 SHA512 07101a9acc8dee5189f8484746715b57d4227d819e38a79c100da33f803b0f061e7b37fbd4114ce2bc3eea647726f8786880d3096dfab187c177679f3e1c78e8 DIST node-v12.19.1.tar.xz 23829692 BLAKE2B 244ca8ef29e315ce027638d9d5c66469ac8cd69abec47d5bf6370b990da0d9d2a7af812963530e5187d273d3f20638be0d23ccb1c0409fbbd678677740939f4f SHA512 7c628ca214d3b17b34658aae32e335ce863d90853c92f1cd4119e9a82b7097ddf47d0d4cc7c9bbdbfdd4b403811aa6ee08e844078a947f31a3adc78f569b931a DIST node-v14.15.0.tar.xz 33440584 BLAKE2B dda9fb44f163b2268db126dfcda34e80064eba24921e4f8e6c14c212deb9170c79f31f7b2be272c8fa7ca992d14540df490c6cad078833514bd348825934ad95 SHA512 2a0cd1b9d95e0ac228a90aca82cb04b9f4fc4d08ab86f0286eed7a519ca6e756081b37375ad5d14d7f0e09affdd27bad658c3e364237eb3c212fe5b5e27af96e DIST node-v14.15.1.tar.xz 33437304 BLAKE2B f08251d2a76e4030433001fd7f062c71193de190036d1147ade0ea36350df0d65df9e1b749fbac77837dd090cbeda6c133ff88099691c932bc29e75b7bfa2acc SHA512 cbab757e370a09b73c29a9bcb310b4122e4424d6baeaeaf1b10919ed6b348bc6ddbfc0e0eaff99d8ebb4d3d74f0206f575e2656245151eda564dd2cd33ff823a -DIST node-v14.2.0.tar.xz 32884616 BLAKE2B 7bcb07cb7623c5e08c20267c320cdf23ad110f124c5ad1f2447ef8b76ab8dc44ed50dab7c5651424d9d3a36f7eeecdf3292b07c02cb2e22c3fbe4ed633c4b842 SHA512 47e5ec0b7a207082d43419a7e0a6ea9242ec43b4d7c2217eb66d0b45e2f4d5cb561b3f6fe35fdc41a8be95c182dc122ba262f696ebd12833596d71b372ec85d2 +DIST node-v15.2.1.tar.xz 33172472 BLAKE2B d63dbc138ec161253f996fb61c9f40db2eabb5a598804eca7f2446b654ae8a11164820d46ea3c2b41b6a891bb0a3f15fe67712988ed67c1344ab72e2e4749fac SHA512 b05663131d6bb458fe49cf610a7296cdd169b6e957df3e5117ad5553de9891ed4cb71c7d3dc0dbb7774153c884cf245f49faecfa308736086fe6f041f83c8a57 diff --git a/net-libs/nodejs/files/nodejs-13.2.0-paxmarking.patch b/net-libs/nodejs/files/nodejs-13.2.0-paxmarking.patch new file mode 100644 index 000000000000..1061255e1637 --- /dev/null +++ b/net-libs/nodejs/files/nodejs-13.2.0-paxmarking.patch @@ -0,0 +1,71 @@ + Bug: 694100 + Add actions for pax marking mkcodecache and node_mksnapshot + to disable mprotect for pax enable kernel. + Reported-by: Attila Tóth + Co-developed-by: Attila Tóth + Signed-off-by: Magnus Granberg + +--- a/node.gyp 2019-10-23 11:52:41.000000000 +0200 ++++ a/node.gyp 2019-11-12 20:58:43.957881862 +0100 +@@ -233,7 +233,9 @@ + 'deps/acorn-plugins/acorn-static-class-features/index.js', + ], + 'node_mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot<(EXECUTABLE_SUFFIX)', ++ 'node_mksnapshot_u_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot_u<(EXECUTABLE_SUFFIX)', + 'mkcodecache_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mkcodecache<(EXECUTABLE_SUFFIX)', ++ 'mkcodecache_u_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mkcodecache_u<(EXECUTABLE_SUFFIX)', + 'conditions': [ + [ 'node_shared=="true"', { + 'node_target_type%': 'shared_library', +@@ -436,10 +438,24 @@ + ], + 'actions': [ + { ++ 'action_name': 'run_pax_mkcodecache', ++ 'inputs': [ ++ '<(mkcodecache_exec)', ++ ], ++ 'outputs': [ ++ '<(mkcodecache_u_exec)', ++ ], ++ 'action': [ ++ 'bash', ++ '-c', ++ 'mv <(mkcodecache_exec) <(mkcodecache_u_exec) && paxmark.sh m <(mkcodecache_u_exec)', ++ ], ++ }, ++ { + 'action_name': 'run_mkcodecache', + 'process_outputs_as_sources': 1, + 'inputs': [ +- '<(mkcodecache_exec)', ++ '<(mkcodecache_u_exec)', + ], + 'outputs': [ + '<(SHARED_INTERMEDIATE_DIR)/node_code_cache.cc', +@@ -461,10 +477,24 @@ + ], + 'actions': [ + { ++ 'action_name': 'run_pax_mksnapshot', ++ 'inputs': [ ++ '<(node_mksnapshot_exec)', ++ ], ++ 'outputs': [ ++ '<(node_mksnapshot_u_exec)', ++ ], ++ 'action': [ ++ 'bash', ++ '-c', ++ 'mv <(node_mksnapshot_exec) <(node_mksnapshot_u_exec) && paxmark.sh m <(node_mksnapshot_u_exec)', ++ ], ++ }, ++ { + 'action_name': 'node_mksnapshot', + 'process_outputs_as_sources': 1, + 'inputs': [ +- '<(node_mksnapshot_exec)', ++ '<(node_mksnapshot_u_exec)', + ], + 'outputs': [ + '<(SHARED_INTERMEDIATE_DIR)/node_snapshot.cc', diff --git a/net-libs/nodejs/files/nodejs-13.8.0-paxmarking.patch b/net-libs/nodejs/files/nodejs-13.8.0-paxmarking.patch new file mode 100644 index 000000000000..8dbf5f43d486 --- /dev/null +++ b/net-libs/nodejs/files/nodejs-13.8.0-paxmarking.patch @@ -0,0 +1,111 @@ + Bug: 694100 + Add actions for pax marking mkcodecache, node_mksnapshot and mksnapshot + to disable mprotect for pax enable kernel. + Reported-by: Attila Tóth + Co-developed-by: Attila Tóth + Signed-off-by: Magnus Granberg + +--- a/node.gyp 2019-10-23 11:52:41.000000000 +0200 ++++ b/node.gyp 2019-11-12 20:58:43.957881862 +0100 +@@ -233,7 +233,9 @@ + 'deps/acorn-plugins/acorn-static-class-features/index.js', + ], + 'node_mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot<(EXECUTABLE_SUFFIX)', ++ 'node_mksnapshot_u_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)node_mksnapshot_u<(EXECUTABLE_SUFFIX)', + 'mkcodecache_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mkcodecache<(EXECUTABLE_SUFFIX)', ++ 'mkcodecache_u_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mkcodecache_u<(EXECUTABLE_SUFFIX)', + 'conditions': [ + [ 'node_shared=="true"', { + 'node_target_type%': 'shared_library', +@@ -436,10 +438,24 @@ + ], + 'actions': [ + { ++ 'action_name': 'run_pax_mkcodecache', ++ 'inputs': [ ++ '<(mkcodecache_exec)', ++ ], ++ 'outputs': [ ++ '<(mkcodecache_u_exec)', ++ ], ++ 'action': [ ++ 'bash', ++ '-c', ++ 'mv <(mkcodecache_exec) <(mkcodecache_u_exec) && paxmark.sh m <(mkcodecache_u_exec)', ++ ], ++ }, ++ { + 'action_name': 'run_mkcodecache', + 'process_outputs_as_sources': 1, + 'inputs': [ +- '<(mkcodecache_exec)', ++ '<(mkcodecache_u_exec)', + ], + 'outputs': [ + '<(SHARED_INTERMEDIATE_DIR)/node_code_cache.cc', +@@ -461,10 +477,24 @@ + ], + 'actions': [ + { ++ 'action_name': 'run_pax_mksnapshot', ++ 'inputs': [ ++ '<(node_mksnapshot_exec)', ++ ], ++ 'outputs': [ ++ '<(node_mksnapshot_u_exec)', ++ ], ++ 'action': [ ++ 'bash', ++ '-c', ++ 'mv <(node_mksnapshot_exec) <(node_mksnapshot_u_exec) && paxmark.sh m <(node_mksnapshot_u_exec)', ++ ], ++ }, ++ { + 'action_name': 'node_mksnapshot', + 'process_outputs_as_sources': 1, + 'inputs': [ +- '<(node_mksnapshot_exec)', ++ '<(node_mksnapshot_u_exec)', + ], + 'outputs': [ + '<(SHARED_INTERMEDIATE_DIR)/node_snapshot.cc', +--- a/tools/v8_gypfiles/v8.gyp 2019-12-03 16:10:36.000000000 +0100 ++++ b/tools/v8_gypfiles/v8.gyp 2019-12-17 18:37:33.695839254 +0100 +@@ -9,6 +9,7 @@ + 'v8_vector_stores%': 0, + 'v8_embed_script%': "", + 'mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)', ++ 'mksnapshot_u_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot_u<(EXECUTABLE_SUFFIX)', + 'v8_os_page_size%': 0, + 'generate_bytecode_output_root': '<(SHARED_INTERMEDIATE_DIR)/generate-bytecode-output-root', + 'generate_bytecode_builtins_list_output': '<(generate_bytecode_output_root)/builtins-generated/bytecodes-builtins-list.h', +@@ -427,6 +425,20 @@ + }, + 'actions': [ + { ++ 'action_name': 'run_pax_mksnapshot', ++ 'inputs': [ ++ '<(mksnapshot_exec)', ++ ], ++ 'outputs': [ ++ '<(mksnapshot_u_exec)', ++ ], ++ 'action': [ ++ 'bash', ++ '-c', ++ 'mv <(mksnapshot_exec) <(mksnapshot_u_exec) && paxmark.sh m <(mksnapshot_u_exec)', ++ ], ++ }, ++ { + 'action_name': 'run_mksnapshot', + 'message': 'generating: >@(_outputs)', + 'variables': { +@@ -442,7 +454,7 @@ + ], + }, + 'inputs': [ +- '<(mksnapshot_exec)', ++ '<(mksnapshot_u_exec)', + ], + 'outputs': ["<(INTERMEDIATE_DIR)/snapshot.cc"], + 'process_outputs_as_sources': 1, diff --git a/net-libs/nodejs/files/nodejs-15.2.0-global-npm-config.patch b/net-libs/nodejs/files/nodejs-15.2.0-global-npm-config.patch new file mode 100644 index 000000000000..2b0705b1d712 --- /dev/null +++ b/net-libs/nodejs/files/nodejs-15.2.0-global-npm-config.patch @@ -0,0 +1,13 @@ +--- a/deps/npm/node_modules/@npmcli/config/lib/index.js ++++ b/deps/npm/node_modules/@npmcli/config/lib/index.js +@@ -275,8 +275,9 @@ + // default the globalconfig file to that location, instead of the default + // global prefix. It's weird that `npm get globalconfig --prefix=/foo` + // returns `/foo/etc/npmrc`, but better to not change it at this point. ++ // gentoo deviates wrt global config; store in /etc/npm + settableGetter(data, 'globalconfig', () => +- resolve(this[_get]('prefix'), 'etc/npmrc')) ++ resolve('/etc', 'npmrc')) + } + + loadHome () { diff --git a/net-libs/nodejs/metadata.xml b/net-libs/nodejs/metadata.xml index 1f2cfaf97be7..db1b9aefa8e0 100644 --- a/net-libs/nodejs/metadata.xml +++ b/net-libs/nodejs/metadata.xml @@ -3,16 +3,17 @@ williamh@gentoo.org - William Hubbs + William Hubbs marecki@gentoo.org Marek Szuba + Do not Cc on bugs related to grsecurity/PaX - Enable V8 inspector Enable NPM package manager + Enable building under a PaX enabled kernel Enable snapshot creation for faster startup Use system dev-libs/icu instead of the bundled version Use system OpenSSL instead of the bundled one diff --git a/net-libs/nodejs/nodejs-12.18.4-r1.ebuild b/net-libs/nodejs/nodejs-12.18.4-r1.ebuild deleted file mode 100644 index bbdc7bd8dd9b..000000000000 --- a/net-libs/nodejs/nodejs-12.18.4-r1.ebuild +++ /dev/null @@ -1,213 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) -PYTHON_REQ_USE="threads(+)" -inherit bash-completion-r1 flag-o-matic python-any-r1 toolchain-funcs xdg-utils - -DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" -HOMEPAGE="https://nodejs.org/" -SRC_URI=" - https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz -" - -LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x64-macos" -IUSE="cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl +system-ssl systemtap test" -REQUIRED_USE=" - inspector? ( icu ssl ) - npm? ( ssl ) - system-ssl? ( ssl ) -" - -RDEPEND=" - >=app-arch/brotli-1.0.7 - >=dev-libs/libuv-1.39.0:= - >=net-dns/c-ares-1.16.0 - >=net-libs/http-parser-2.9.3:= - >=net-libs/nghttp2-1.40.0 - sys-libs/zlib - icu? ( >=dev-libs/icu-64.2:= ) - system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) -" -BDEPEND=" - ${PYTHON_DEPS} - sys-apps/coreutils - systemtap? ( dev-util/systemtap ) - test? ( net-misc/curl ) -" -DEPEND=" - ${RDEPEND} -" -PATCHES=( - "${FILESDIR}"/${PN}-10.3.0-global-npm-config.patch - "${FILESDIR}"/${PN}-99999999-llhttp.patch -) -RESTRICT="test" -S="${WORKDIR}/node-v${PV}" - -pkg_pretend() { - (use x86 && ! use cpu_flags_x86_sse2) && \ - die "Your CPU doesn't support the required SSE2 instruction." - - ( [[ ${MERGE_TYPE} != "binary" ]] && ! test-flag-CXX -std=c++11 ) && \ - die "Your compiler doesn't support C++11. Use GCC 4.8, Clang 3.3 or newer." -} - -src_prepare() { - tc-export CC CXX PKG_CONFIG - export V=1 - export BUILDTYPE=Release - - # fix compilation on Darwin - # https://code.google.com/p/gyp/issues/detail?id=260 - sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || die - - # less verbose install output (stating the same as portage, basically) - sed -i -e "/print/d" tools/install.py || die - - # proper libdir, hat tip @ryanpcmcquen https://github.com/iojs/io.js/issues/504 - local LIBDIR=$(get_libdir) - sed -i -e "s|lib/|${LIBDIR}/|g" tools/install.py || die - sed -i -e "s/'lib'/'${LIBDIR}'/" deps/npm/lib/npm.js || die - - # Avoid writing a depfile, not useful - sed -i -e "/DEPFLAGS =/d" tools/gyp/pylib/gyp/generator/make.py || die - - sed -i -e "/'-O3'/d" common.gypi node.gypi || die - - # Avoid a test that I've only been able to reproduce from emerge. It doesnt - # seem sandbox related either (invoking it from a sandbox works fine). - # The issue is that no stdin handle is openened when asked for one. - # It doesn't really belong upstream , so it'll just be removed until someone - # with more gentoo-knowledge than me (jbergstroem) figures it out. - rm test/parallel/test-stdout-close-unref.js || die - - # debug builds. change install path, remove optimisations and override buildtype - if use debug; then - sed -i -e "s|out/Release/|out/Debug/|g" tools/install.py || die - BUILDTYPE=Debug - fi - - default -} - -src_configure() { - xdg_environment_reset - - local myconf=( - --shared-brotli - --shared-cares - --shared-http-parser - --shared-libuv - --shared-nghttp2 - --shared-zlib - ) - use debug && myconf+=( --debug ) - use icu && myconf+=( --with-intl=system-icu ) || myconf+=( --with-intl=none ) - use inspector || myconf+=( --without-inspector ) - use npm || myconf+=( --without-npm ) - use snapshot || myconf+=( --without-node-snapshot ) - if use ssl; then - use system-ssl && myconf+=( --shared-openssl --openssl-use-def-ca-store ) - else - myconf+=( --without-ssl ) - fi - - local myarch="" - case ${ABI} in - amd64) myarch="x64";; - arm) myarch="arm";; - arm64) myarch="arm64";; - ppc64) myarch="ppc64";; - x32) myarch="x32";; - x86) myarch="ia32";; - *) myarch="${ABI}";; - esac - - GYP_DEFINES="linux_use_gold_flags=0 - linux_use_bundled_binutils=0 - linux_use_bundled_gold=0" \ - "${EPYTHON}" configure.py \ - --prefix="${EPREFIX}"/usr \ - --dest-cpu=${myarch} \ - $(use_with systemtap dtrace) \ - "${myconf[@]}" || die -} - -src_compile() { - emake -C out mksnapshot - emake -C out -} - -src_install() { - local LIBDIR="${ED}/usr/$(get_libdir)" - default - - # set up a symlink structure that node-gyp expects.. - dodir /usr/include/node/deps/{v8,uv} - dosym . /usr/include/node/src - for var in deps/{uv,v8}/include; do - dosym ../.. /usr/include/node/${var} - done - - if use doc; then - docinto html - dodoc -r "${S}"/doc/* - fi - - if use npm; then - dodir /etc/npm - - # Install bash completion for `npm` - # We need to temporarily replace default config path since - # npm otherwise tries to write outside of the sandbox - local npm_config="usr/$(get_libdir)/node_modules/npm/lib/config/core.js" - sed -i -e "s|'/etc'|'${ED}/etc'|g" "${ED}/${npm_config}" || die - local tmp_npm_completion_file="$(TMPDIR="${T}" mktemp -t npm.XXXXXXXXXX)" - "${ED}/usr/bin/npm" completion > "${tmp_npm_completion_file}" - newbashcomp "${tmp_npm_completion_file}" npm - sed -i -e "s|'${ED}/etc'|'/etc'|g" "${ED}/${npm_config}" || die - - # Move man pages - doman "${LIBDIR}"/node_modules/npm/man/man{1,5,7}/* - - # Clean up - rm "${LIBDIR}"/node_modules/npm/{.mailmap,.npmignore,Makefile} || die - rm -rf "${LIBDIR}"/node_modules/npm/{doc,html,man} || die - - local find_exp="-or -name" - local find_name=() - for match in "AUTHORS*" "CHANGELOG*" "CONTRIBUT*" "README*" \ - ".travis.yml" ".eslint*" ".wercker.yml" ".npmignore" \ - "*.md" "*.markdown" "*.bat" "*.cmd"; do - find_name+=( ${find_exp} "${match}" ) - done - - # Remove various development and/or inappropriate files and - # useless docs of dependend packages. - find "${LIBDIR}"/node_modules \ - \( -type d -name examples \) -or \( -type f \( \ - -iname "LICEN?E*" \ - "${find_name[@]}" \ - \) \) -exec rm -rf "{}" \; - fi - - mv "${ED}"/usr/share/doc/node "${ED}"/usr/share/doc/${PF} || die -} - -src_test() { - out/${BUILDTYPE}/cctest || die - "${PYTHON}" tools/test.py --mode=${BUILDTYPE,,} -J message parallel sequential || die -} - -pkg_postinst() { - elog "The global npm config lives in /etc/npm. This deviates slightly" - elog "from upstream which otherwise would have it live in /usr/etc/." - elog "" - elog "Protip: When using node-gyp to install native modules, you can" - elog "avoid having to download extras by doing the following:" - elog "$ node-gyp --nodedir /usr/include/node " -} diff --git a/net-libs/nodejs/nodejs-12.19.1.ebuild b/net-libs/nodejs/nodejs-12.19.1.ebuild index 613432efea39..bb763d423aa6 100644 --- a/net-libs/nodejs/nodejs-12.19.1.ebuild +++ b/net-libs/nodejs/nodejs-12.19.1.ebuild @@ -6,7 +6,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6..8} ) PYTHON_REQ_USE="threads(+)" -inherit bash-completion-r1 flag-o-matic python-any-r1 toolchain-funcs xdg-utils +inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 toolchain-funcs xdg-utils DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" HOMEPAGE="https://nodejs.org/" @@ -141,6 +141,7 @@ src_configure() { src_compile() { emake -C out mksnapshot + pax-mark m "out/${BUILDTYPE}/mksnapshot" emake -C out } @@ -148,6 +149,8 @@ src_install() { local LIBDIR="${ED}/usr/$(get_libdir)" default + pax-mark -m "${ED}"/usr/bin/node + # set up a symlink structure that node-gyp expects.. dodir /usr/include/node/deps/{v8,uv} dosym . /usr/include/node/src diff --git a/net-libs/nodejs/nodejs-14.15.1.ebuild b/net-libs/nodejs/nodejs-14.15.1.ebuild index fad4f233fa09..0f1006e67884 100644 --- a/net-libs/nodejs/nodejs-14.15.1.ebuild +++ b/net-libs/nodejs/nodejs-14.15.1.ebuild @@ -6,7 +6,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{7..9} ) PYTHON_REQ_USE="threads(+)" -inherit bash-completion-r1 flag-o-matic python-any-r1 toolchain-funcs xdg-utils +inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 toolchain-funcs xdg-utils DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" HOMEPAGE="https://nodejs.org/" @@ -16,7 +16,7 @@ LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" SLOT="0/$(ver_cut 1)" KEYWORDS="amd64 arm arm64 ~ppc64 x86 ~amd64-linux ~x64-macos" -IUSE="cpu_flags_x86_sse2 debug doc +icu inspector +npm +snapshot +ssl system-icu +system-ssl systemtap test" +IUSE="cpu_flags_x86_sse2 debug doc +icu inspector +npm pax_kernel +snapshot +ssl system-icu +system-ssl systemtap test" REQUIRED_USE="inspector? ( icu ssl ) npm? ( ssl ) system-icu? ( icu ) @@ -35,7 +35,8 @@ RDEPEND=">=app-arch/brotli-1.0.9 BDEPEND="${PYTHON_DEPS} sys-apps/coreutils systemtap? ( dev-util/systemtap ) - test? ( net-misc/curl )" + test? ( net-misc/curl ) + pax_kernel? ( sys-apps/elfix )" DEPEND="${RDEPEND}" PATCHES=( @@ -85,6 +86,9 @@ src_prepare() { BUILDTYPE=Debug fi + # We need to disable mprotect on two files when it builds Bug 694100. + use pax_kernel && PATCHES+=( "${FILESDIR}"/${PN}-13.8.0-paxmarking.patch ) + default } @@ -144,6 +148,8 @@ src_install() { local LIBDIR="${ED}/usr/$(get_libdir)" default + pax-mark -m "${ED}"/usr/bin/node + # set up a symlink structure that node-gyp expects.. dodir /usr/include/node/deps/{v8,uv} dosym . /usr/include/node/src diff --git a/net-libs/nodejs/nodejs-14.2.0.ebuild b/net-libs/nodejs/nodejs-15.2.1.ebuild similarity index 78% rename from net-libs/nodejs/nodejs-14.2.0.ebuild rename to net-libs/nodejs/nodejs-15.2.1.ebuild index 4b3509f8db3a..a69a9626746a 100644 --- a/net-libs/nodejs/nodejs-14.2.0.ebuild +++ b/net-libs/nodejs/nodejs-15.2.1.ebuild @@ -2,59 +2,55 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) + +PYTHON_COMPAT=( python3_{7..9} ) PYTHON_REQ_USE="threads(+)" + inherit bash-completion-r1 flag-o-matic python-any-r1 toolchain-funcs xdg-utils DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" HOMEPAGE="https://nodejs.org/" -SRC_URI=" - https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz -" +SRC_URI="https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz" LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" -SLOT="0" -KEYWORDS="ppc" -IUSE="cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl +system-ssl systemtap test" -REQUIRED_USE=" - inspector? ( icu ssl ) +SLOT="0/$(ver_cut 1)" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x64-macos" + +IUSE="cpu_flags_x86_sse2 debug doc +icu inspector +npm +snapshot +ssl system-icu +system-ssl systemtap test" +REQUIRED_USE="inspector? ( icu ssl ) npm? ( ssl ) - system-ssl? ( ssl ) -" + system-icu? ( icu ) + system-ssl? ( ssl )" -RDEPEND=" - >=dev-libs/libuv-1.37.0:= - >=net-dns/c-ares-1.16.0 - >=net-libs/nghttp2-1.40.0 +# FIXME: test-fs-mkdir fails with "no such file or directory". Investigate. +RESTRICT="test" + +RDEPEND=">=app-arch/brotli-1.0.9 + >=dev-libs/libuv-1.40.0:= + >=net-dns/c-ares-1.17.0 + >=net-libs/nghttp2-1.41.0 sys-libs/zlib - icu? ( >=dev-libs/icu-65:= ) - system-ssl? ( >=dev-libs/openssl-1.1.1:0= ) -" -BDEPEND=" - ${PYTHON_DEPS} + system-icu? ( >=dev-libs/icu-67:= ) + system-ssl? ( >=dev-libs/openssl-1.1.1:0= )" +BDEPEND="${PYTHON_DEPS} sys-apps/coreutils systemtap? ( dev-util/systemtap ) - test? ( net-misc/curl ) -" -DEPEND=" - ${RDEPEND} -" + test? ( net-misc/curl )" +DEPEND="${RDEPEND}" + PATCHES=( - "${FILESDIR}"/${PN}-10.3.0-global-npm-config.patch + "${FILESDIR}"/${PN}-15.2.0-global-npm-config.patch ) -RESTRICT="test" + S="${WORKDIR}/node-v${PV}" pkg_pretend() { (use x86 && ! use cpu_flags_x86_sse2) && \ die "Your CPU doesn't support the required SSE2 instruction." - - ( [[ ${MERGE_TYPE} != "binary" ]] && ! test-flag-CXX -std=c++11 ) && \ - die "Your compiler doesn't support C++11. Use GCC 4.8, Clang 3.3 or newer." } src_prepare() { - tc-export CC CXX PKG_CONFIG + tc-export AR CC CXX PKG_CONFIG export V=1 export BUILDTYPE=Release @@ -95,10 +91,20 @@ src_configure() { xdg_environment_reset local myconf=( - --shared-cares --shared-libuv --shared-nghttp2 --shared-zlib + --shared-brotli + --shared-cares + --shared-libuv + --shared-nghttp2 + --shared-zlib ) use debug && myconf+=( --debug ) - use icu && myconf+=( --with-intl=system-icu ) || myconf+=( --with-intl=none ) + if use system-icu; then + myconf+=( --with-intl=system-icu ) + elif use icu; then + myconf+=( --with-intl=full-icu ) + else + myconf+=( --with-intl=none ) + fi use inspector || myconf+=( --without-inspector ) use npm || myconf+=( --without-npm ) use snapshot || myconf+=( --without-node-snapshot ) @@ -150,17 +156,12 @@ src_install() { fi if use npm; then - dodir /etc/npm + keepdir /etc/npm # Install bash completion for `npm` - # We need to temporarily replace default config path since - # npm otherwise tries to write outside of the sandbox - local npm_config="usr/$(get_libdir)/node_modules/npm/lib/config/core.js" - sed -i -e "s|'/etc'|'${ED}/etc'|g" "${ED}/${npm_config}" || die local tmp_npm_completion_file="$(TMPDIR="${T}" mktemp -t npm.XXXXXXXXXX)" "${ED}/usr/bin/npm" completion > "${tmp_npm_completion_file}" newbashcomp "${tmp_npm_completion_file}" npm - sed -i -e "s|'${ED}/etc'|'/etc'|g" "${ED}/${npm_config}" || die # Move man pages doman "${LIBDIR}"/node_modules/npm/man/man{1,5,7}/* diff --git a/net-libs/nodejs/nodejs-99999999.ebuild b/net-libs/nodejs/nodejs-99999999.ebuild index 65d30862d4c6..e7a2c7c7eb93 100644 --- a/net-libs/nodejs/nodejs-99999999.ebuild +++ b/net-libs/nodejs/nodejs-99999999.ebuild @@ -4,7 +4,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6,7,8} ) PYTHON_REQ_USE="threads(+)" -inherit bash-completion-r1 flag-o-matic git-r3 python-any-r1 toolchain-funcs xdg-utils +inherit bash-completion-r1 flag-o-matic git-r3 pax-utils python-any-r1 toolchain-funcs xdg-utils DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" HOMEPAGE="https://nodejs.org/" @@ -13,7 +13,7 @@ EGIT_REPO_URI="https://github.com/nodejs/node" LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" SLOT="0" KEYWORDS="" -IUSE="cpu_flags_x86_sse2 debug doc +icu inspector +npm +snapshot +ssl +system-ssl systemtap test" +IUSE="cpu_flags_x86_sse2 debug doc +icu inspector +npm pax_kernel +snapshot +ssl +system-ssl systemtap test" RESTRICT="!test? ( test )" REQUIRED_USE=" inspector? ( icu ssl ) @@ -35,6 +35,7 @@ BDEPEND=" sys-apps/coreutils systemtap? ( dev-util/systemtap ) test? ( net-misc/curl ) + pax_kernel? ( sys-apps/elfix ) " DEPEND=" ${RDEPEND} @@ -83,6 +84,9 @@ src_prepare() { BUILDTYPE=Debug fi + # We need to disable mprotect on two files when it builds Bug 694100. + use pax_kernel && PATCHES+=( "${FILESDIR}"/${PN}-13.2.0-paxmarking.patch ) + default } @@ -136,6 +140,8 @@ src_install() { local LIBDIR="${ED}/usr/$(get_libdir)" default + pax-mark -m "${ED}"/usr/bin/node + # set up a symlink structure that node-gyp expects.. dodir /usr/include/node/deps/{v8,uv} dosym . /usr/include/node/src diff --git a/net-libs/webkit-gtk/webkit-gtk-2.28.4.ebuild b/net-libs/webkit-gtk/webkit-gtk-2.28.4.ebuild index 27ed996c0ab0..1a0c147ba35d 100644 --- a/net-libs/webkit-gtk/webkit-gtk-2.28.4.ebuild +++ b/net-libs/webkit-gtk/webkit-gtk-2.28.4.ebuild @@ -3,7 +3,7 @@ EAPI=6 CMAKE_MAKEFILE_GENERATOR="ninja" -PYTHON_COMPAT=( python{3_6,3_7} ) +PYTHON_COMPAT=( python3_{6..8} ) USE_RUBY="ruby24 ruby25 ruby26 ruby27" CMAKE_MIN_VERSION=3.10 diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index 0852379a59a1..bef8baf0a34c 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/dhcp/dhcp-4.4.2-r3.ebuild b/net-misc/dhcp/dhcp-4.4.2-r3.ebuild index 0257824a08f6..6cad24e75195 100644 --- a/net-misc/dhcp/dhcp-4.4.2-r3.ebuild +++ b/net-misc/dhcp/dhcp-4.4.2-r3.ebuild @@ -70,6 +70,7 @@ PATCHES=( # Possible upstream candidates "${FILESDIR}/${PN}-4.4.2-fno-common.patch" #710194 + "${FILESDIR}/dhcp-4.4.2-variable-name.patch" #752402 ) src_prepare() { diff --git a/net-misc/dhcp/files/dhcp-4.4.2-variable-name.patch b/net-misc/dhcp/files/dhcp-4.4.2-variable-name.patch new file mode 100644 index 000000000000..9f5085dd5e23 --- /dev/null +++ b/net-misc/dhcp/files/dhcp-4.4.2-variable-name.patch @@ -0,0 +1,25 @@ +From 261c84d91d1b4581df9f7f0ec031908299de7726 Mon Sep 17 00:00:00 2001 +From: Mark Andrews +Date: Thu, 19 Dec 2019 09:27:44 +1100 +Subject: [PATCH] fix variable name in conditional block + +--- + lib/isc/stats.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/isc/stats.c b/lib/isc/stats.c +index 5bce3c1100..a7ab97ce53 100644 +--- a/bind/bind-9.11.14/lib/isc/stats.c ++++ b/bind/bind-9.11.14/lib/isc/stats.c +@@ -297,7 +297,7 @@ setcounter(isc_stats_t *stats, + isc_atomic_store((int32_t *)&stats->counters[counter].lo, + (uint32_t)(value & 0xffffffff)); + # else +- stats->counters[counter] = val; ++ stats->counters[counter] = value; + # endif + #endif + } +-- +GitLab + diff --git a/net-misc/dhcpcd/Manifest b/net-misc/dhcpcd/Manifest index 62c591a3d7ff..b0c251069b85 100644 --- a/net-misc/dhcpcd/Manifest +++ b/net-misc/dhcpcd/Manifest @@ -1,3 +1,3 @@ DIST dhcpcd-8.1.9.tar.xz 230288 BLAKE2B 5606ddfce37c67ac3d60257104fcf15bd7da65021b2c1261a45958b628cd066ccd9bc6b60bbb42f8280fcbbf9d4b1c7666b993c37f150b27ef2a0527a0fd5b96 SHA512 40ac106ffca60b32362aacdfae0fa3a2993a3eed72bf452322412a912f594aaade1c24b862233455033158a6e453ec75d6d14fa52df6b4c5ae435dd6ceb29f2a -DIST dhcpcd-9.3.1.tar.xz 253288 BLAKE2B cba03077a05d89d4ec8dbbc9b46211672ce103af9c960efacbaa7aa4c6cc0f312ade1c09a9b4ea6e5fb360ad780594c2935c54a36dab5e6b3193a527c39f76c1 SHA512 d89141de92e2ee79c68c43e58bb7d604e51edbc93bcf69bdd5fba37a9fbf372d9df963ac3127b7b740856ab43ff330ce9ca6053bf4a814540c177b204e7beb80 DIST dhcpcd-9.3.2.tar.xz 254476 BLAKE2B 86cbb02564474e8ec6809315db10ec06c072ab3e4a563b2a0f1df21d1c02ed3a97b816ed190803910f0cfe39de6420b82cc37ff81e29b67806b250c877b0db34 SHA512 f7e5b060e8b5cd65e6d1660a79d444e066dd8a6c492cc44b9522577687a93d944227ad3ff840ac0f65a9aa725ca1a79a7178330d8445b808409e215ba7f042b0 +DIST dhcpcd-9.3.3.tar.xz 254972 BLAKE2B 6f808d08059ca93fd2af14b9b6efbcece08634a72c8f06bb31a49ee5c6a7f52af6bfeb43e007710b466bd70d4005416d7882fc93ac5b28e1a019f06b9b0afe15 SHA512 1ff58107fe7e45a42c8da32ce6554244c1cac289e0c207f7dd29f5fcab1a2aadd66434604cd35e979e0aa138de9d968e9360b5339d3f233e6c1a83d7a20799c4 diff --git a/net-misc/dhcpcd/dhcpcd-9.3.1.ebuild b/net-misc/dhcpcd/dhcpcd-9.3.3.ebuild similarity index 100% rename from net-misc/dhcpcd/dhcpcd-9.3.1.ebuild rename to net-misc/dhcpcd/dhcpcd-9.3.3.ebuild diff --git a/net-misc/iprange/iprange-1.0.4.ebuild b/net-misc/iprange/iprange-1.0.4.ebuild index 19aed1a10454..3c70abfae233 100644 --- a/net-misc/iprange/iprange-1.0.4.ebuild +++ b/net-misc/iprange/iprange-1.0.4.ebuild @@ -9,4 +9,4 @@ SRC_URI="https://github.com/firehol/${PN}/releases/download/v${PV}/${P}.tar.xz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="amd64 arm ppc ~x86" +KEYWORDS="amd64 arm ~arm64 ppc ~x86" diff --git a/net-misc/memcached/Manifest b/net-misc/memcached/Manifest index 6944c842e005..ed88ef0e388b 100644 --- a/net-misc/memcached/Manifest +++ b/net-misc/memcached/Manifest @@ -2,3 +2,4 @@ DIST memcached-1.5.22.tar.gz 532713 BLAKE2B 90787522f36d9d4389438334572725df1805 DIST memcached-1.6.6.tar.gz 543661 BLAKE2B 04de48d6450961585ac3b1c8ae6f803c59e5bbf34e45aa27c9e53309350608dc3c899cf169095361c4ccdc44e0bcc2860662d7066477abd7fdc8e80e34d22d36 SHA512 dfd19bf42d35fff391bb479338706a83082e3cdd3ff6e225d3d4da9df01b0a1f659a012dc30766651ffd57f0c19128fc4c3df29b721e588c909656d02cfdaa0a DIST memcached-1.6.7.tar.gz 547791 BLAKE2B 7ee39a5867cfaa52eb5cfb947ce42f711e030422b03b5c5547284d5cab91c044d04293cc355da3b868fb0ca02e151aec5980e455c1bb8067e38682209b1e3e4e SHA512 8b4c44ae4da8577cc5431aaca6118fdba27c42418a51a6d319d9040a975371a2fda9fcea2cb44c3d20c92f08961cb5f0ddd28c2f4cd12986b73c9342d91ea2c8 DIST memcached-1.6.8.tar.gz 548024 BLAKE2B ab20f2c2e5a8f6cc4e0e1ef26e21f5d5b0baae35df887abd427d460591f9eadebbc08217a52e153c60b98098051ef855b918b74983bcb26f50b413caf508dca8 SHA512 256dd2b62fe9365183a44d9df99510f99f2fbb01d2afdf1558987331e7e746407f1caf5b93c82cb3e9b22ca8f8bc3d021706faf3849e60e43d9fdf7c1ec7cdcb +DIST memcached-1.6.9.tar.gz 556137 BLAKE2B 429d0d5de480d0a17a2c9942f595fab125d60ef1f3ff88754ab6e97eb9acdb71b26e40323babc7197e41d1605a82d2f094ce5638d2f4442467c8f652e20aaa44 SHA512 2169225aefe6bd7481d919ae3ef95ed85d2ed595f49daceeb13d2dc268097d4aee98cf604824fca103efcdffa7461bb26814209906a5dabf1a5d30af43f6a66c diff --git a/net-misc/memcached/memcached-1.6.9.ebuild b/net-misc/memcached/memcached-1.6.9.ebuild new file mode 100644 index 000000000000..d1349f310a79 --- /dev/null +++ b/net-misc/memcached/memcached-1.6.9.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools eutils flag-o-matic systemd + +MY_PV="${PV/_rc/-rc}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="High-performance, distributed memory object caching system" +HOMEPAGE="http://memcached.org/" +SRC_URI="https://www.memcached.org/files/${MY_P}.tar.gz + https://www.memcached.org/files/old/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="debug sasl seccomp selinux slabs-reassign test" # hugetlbfs later + +RDEPEND=">=dev-libs/libevent-1.4:= + dev-lang/perl + sasl? ( dev-libs/cyrus-sasl ) + seccomp? ( sys-libs/libseccomp ) + selinux? ( sec-policy/selinux-memcached )" +DEPEND="${RDEPEND} + acct-user/memcached + test? ( virtual/perl-Test-Harness >=dev-perl/Cache-Memcached-1.24 )" + +S="${WORKDIR}/${MY_P}" + +RESTRICT="!test? ( test )" + +PATCHES=( + "${FILESDIR}/${PN}-1.2.2-fbsd.patch" + "${FILESDIR}/${PN}-1.4.0-fix-as-needed-linking.patch" + "${FILESDIR}/${PN}-1.4.4-as-needed.patch" + "${FILESDIR}/${PN}-1.4.17-EWOULDBLOCK.patch" +) + +src_prepare() { + sed -i -e 's,-Werror,,g' configure.ac || die + sed -i -e 's,AM_CONFIG_HEADER,AC_CONFIG_HEADERS,' configure.ac || die + eautoreconf + use slabs-reassign && append-flags -DALLOW_SLABS_REASSIGN + + # Tweak upstream systemd unit to use Gentoo variables/envfile. + # As noted by bug #587440 + sed -i -e '/^ExecStart/{ + s,{USER},{MEMCACHED_RUNAS},g; + s,{CACHESIZE},{MEMUSAGE},g; + s,OPTIONS,MISC_OPTS,g; + }; + /Environment=/{s,OPTIONS,MISC_OPTS,g;}; + /EnvironmentFile=/{s,/sysconfig/,/conf.d/,g;}; + ' \ + "${S}"/scripts/memcached.service + default +} + +src_configure() { + econf \ + --disable-docs \ + $(use_enable sasl) + # The xml2rfc tool to build the additional docs requires TCL :-( + # `use_enable doc docs` +} + +src_compile() { + # There is a heavy degree of per-object compile flags + # Users do NOT know better than upstream. Trying to compile the testapp and + # the -debug version with -DNDEBUG _WILL_ fail. + append-flags -UNDEBUG -pthread + emake testapp memcached-debug CFLAGS="${CFLAGS}" + filter-flags -UNDEBUG + emake +} + +src_install() { + emake DESTDIR="${D}" install + dobin scripts/memcached-tool + use debug && dobin memcached-debug + + dodoc AUTHORS ChangeLog NEWS README.md doc/{CONTRIBUTORS,*.txt} + + newconfd "${FILESDIR}/memcached.confd" memcached + newinitd "${FILESDIR}/memcached.init2" memcached + systemd_dounit "${S}/scripts/memcached.service" +} + +pkg_postinst() { + elog "With this version of Memcached Gentoo now supports multiple instances." + elog "To enable this you should create a symlink in /etc/init.d/ for each instance" + elog "to /etc/init.d/memcached and create the matching conf files in /etc/conf.d/" + elog "Please see Gentoo bug #122246 for more info" +} + +src_test() { + emake -j1 test +} diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild index 6b5d53c7649e..2628a6019652 100644 --- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild +++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild @@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86" IUSE="" DEPEND=">=sys-libs/ncurses-5.2:= diff --git a/net-misc/sks/files/sks-1.1.6-use-ocamlfind.patch b/net-misc/sks/files/sks-1.1.6-use-ocamlfind.patch deleted file mode 100644 index c9afc2594091..000000000000 --- a/net-misc/sks/files/sks-1.1.6-use-ocamlfind.patch +++ /dev/null @@ -1,39 +0,0 @@ -Use ocamlfind for finding dependencies, esp. for doing their transitive closure. - -Ideally the build system should be converted to something more modern like -jbuilder. - -Index: sks-1.1.6/Makefile -=================================================================== ---- sks-1.1.6.orig/Makefile -+++ sks-1.1.6/Makefile -@@ -21,10 +21,10 @@ CFLAGS=-O3 $(CINCLUDES) -I . - CXXFLAGS=-O3 $(CINCLUDES) -I . - - ifndef OCAMLC -- OCAMLC=ocamlc -+ OCAMLC=ocamlfind ocamlc - endif - ifndef OCAMLOPT -- OCAMLOPT=ocamlopt -+ OCAMLOPT=ocamlfind ocamlopt - endif - ifndef CAMLP4O - CAMLP4O=camlp4o -@@ -55,12 +55,12 @@ WARNERR=-warn-error A - endif - - CAMLP4=-pp $(CAMLP4O) --CAMLINCLUDE= -I lib -I bdb -I +cryptokit -+CAMLINCLUDE= -package cryptokit,unix,str,bigarray -I lib -I bdb - COMMONCAMLFLAGS=$(CAMLINCLUDE) $(OCAMLLIB) $(CAMLLDFLAGS) -ccopt -Lbdb -dtypes $(WARNERR) - OCAMLDEP=ocamldep $(CAMLP4) --CAMLLIBS=unix.cma str.cma bdb.cma nums.cma bigarray.cma cryptokit.cma --OCAMLFLAGS=$(COMMONCAMLFLAGS) -g $(CAMLLIBS) --OCAMLOPTFLAGS=$(COMMONCAMLFLAGS) -inline 40 $(CAMLLIBS:.cma=.cmxa) -+CAMLLIBS=bdb.cma nums.cma -+OCAMLFLAGS=$(COMMONCAMLFLAGS) -linkpkg -g $(CAMLLIBS) -+OCAMLOPTFLAGS=$(COMMONCAMLFLAGS) -linkpkg -inline 40 $(CAMLLIBS:.cma=.cmxa) - - EXE=sks sks_add_mail - ALL=$(EXE) sks.8.gz diff --git a/net-misc/sks/files/sks-1.1.6-use-ocamlfind2.patch b/net-misc/sks/files/sks-1.1.6-use-ocamlfind2.patch deleted file mode 100644 index 1fba250fd4b3..000000000000 --- a/net-misc/sks/files/sks-1.1.6-use-ocamlfind2.patch +++ /dev/null @@ -1,19 +0,0 @@ -# HG changeset patch -# User Kristian Fiskerstrand -# Date 1499610580 -7200 -# Node ID 719ffdf628a81a2f052f3b6dc746a3e1d37afe30 -# Parent 6352f0dbcadf35aac29c2fbf10fb218ae50d9c77 -Fix nums specification - -diff --git a/Makefile b/Makefile ---- a/Makefile -+++ b/Makefile -@@ -56,7 +56,7 @@ - CAMLINCLUDE= -package cryptokit,unix,str,bigarray -I lib -I bdb - COMMONCAMLFLAGS=$(CAMLINCLUDE) $(OCAMLLIB) $(CAMLLDFLAGS) -ccopt -Lbdb -dtypes $(WARNERR) - OCAMLDEP=ocamldep $(CAMLP4) --CAMLLIBS=bdb.cma nums.cma -+CAMLLIBS=bdb.cma - OCAMLFLAGS=$(COMMONCAMLFLAGS) -linkpkg -g $(CAMLLIBS) - OCAMLOPTFLAGS=$(COMMONCAMLFLAGS) -linkpkg -inline 40 $(CAMLLIBS:.cma=.cmxa) - diff --git a/net-misc/sks/files/sks-1.1.6-use-ocamlfind3.patch b/net-misc/sks/files/sks-1.1.6-use-ocamlfind3.patch deleted file mode 100644 index ea5a82db6530..000000000000 --- a/net-misc/sks/files/sks-1.1.6-use-ocamlfind3.patch +++ /dev/null @@ -1,21 +0,0 @@ -# HG changeset patch -# User Kristian Fiskerstrand -# Date 1499612080 -7200 -# Node ID 0106ba2f6abc8ee2f685026d3f218730114a60fa -# Parent 719ffdf628a81a2f052f3b6dc746a3e1d37afe30 -Add num to findlib packages - -Although nums is detected, making this explicit - -diff --git a/Makefile b/Makefile ---- a/Makefile -+++ b/Makefile -@@ -53,7 +53,7 @@ - endif - - CAMLP4=-pp $(CAMLP4O) --CAMLINCLUDE= -package cryptokit,unix,str,bigarray -I lib -I bdb -+CAMLINCLUDE= -package cryptokit,unix,str,bigarray,num -I lib -I bdb - COMMONCAMLFLAGS=$(CAMLINCLUDE) $(OCAMLLIB) $(CAMLLDFLAGS) -ccopt -Lbdb -dtypes $(WARNERR) - OCAMLDEP=ocamldep $(CAMLP4) - CAMLLIBS=bdb.cma diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index cc7ee7f68357..e4cf35cd360f 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -3,3 +3,4 @@ DIST youtube-dl-2020.11.01.1.tar.gz 3190146 BLAKE2B 9f0a6d5041f12881d0f028459054 DIST youtube-dl-2020.11.12.tar.gz 3188015 BLAKE2B 17267ce8c3068f3a1aca20b23a77a964b005fe4a64a5c37fd3f1d97e4daae4978379ff81b6e4ac4b86fa1f3d27f01b1742dc26e42ea5b8522e3408bfe9f9e944 SHA512 7db373f6cc252635a3613ffe0b3b10640e262778105ebbd78b837fe019b0a2609032d2aeb81b239e000a86220aff99d2c018a9a6325adad6981a8ab64048131c DIST youtube-dl-2020.11.18.tar.gz 3186065 BLAKE2B 1c27ffc59bbf7793c58e554923ea7ef8a528191e896f64e39ecb181582bcd9bfecf6de5622e70c873528b1b0b3a8335a12ab6a7b3ac71d603391ebbf83110b89 SHA512 110de857759b4c4bd0160242adebb3d8690bda2203a28a7b1a2ac1cdd9bca058702fd0b323010629e74bbb2df38f50c67b710bc2a6ad4cc907827ee013d0dbcf DIST youtube-dl-2020.11.19.tar.gz 3188309 BLAKE2B 775700f26491257125eb68ce49c1ec062ae21568cb3f20463330430d225e2af4e02daed839e5c29cded9b92921a16f0a9611fedc748ca1cd6152c33a131d1503 SHA512 042b0fbe0f1100c338924c9278d4071aaf4cd27dfc7c9d951244aec91a9168358e7463352548a5b7c6a567b077a9db69776790c3a35e08bdf6552f465b4f735f +DIST youtube-dl-2020.11.21.1.tar.gz 3193010 BLAKE2B a7c04f83815e5b7b6b75109863cf470ca2f756523c08fdfb65386756c9cbfea80e9ee2583f26cb41aa382f747b125543b86bf521a7c0973632a3ca331f48499c SHA512 8f9b77eabe7821f952b706fff4db7ef4e0627dc8333fdfb5cfd0d1dfe4f3bab9ca54525c8c9ed7c285d75fe08c02060dd05744a9a82a526789c67040f8cbcd09 diff --git a/net-misc/youtube-dl/youtube-dl-2020.11.21.1.ebuild b/net-misc/youtube-dl/youtube-dl-2020.11.21.1.ebuild new file mode 100644 index 000000000000..0839988f367d --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2020.11.21.1.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=(python3_{6..9}) + +DISTUTILS_USE_SETUPTOOLS=rdepend + +inherit bash-completion-r1 distutils-r1 readme.gentoo-r1 + +DESCRIPTION="Download videos from YouTube.com (and more sites...)" +HOMEPAGE="https://youtube-dl.org/ https://github.com/ytdl-org/youtube-dl/" +SRC_URI="https://youtube-dl.org/downloads/${PV}/${P}.tar.gz" +S=${WORKDIR}/${PN} + +LICENSE="public-domain" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +SLOT="0" + +RDEPEND=" + dev-python/pycryptodome[${PYTHON_USEDEP}] +" + +distutils_enable_tests nose + +src_prepare() { + sed -i -e '/flake8/d' Makefile || die + distutils-r1_src_prepare +} + +python_test() { + emake offlinetest +} + +python_install_all() { + dodoc README.txt + doman ${PN}.1 + + newbashcomp ${PN}.bash-completion ${PN} + + insinto /usr/share/zsh/site-functions + newins ${PN}.zsh _${PN} + + insinto /usr/share/fish/vendor_completions.d + doins ${PN}.fish + + distutils-r1_python_install_all + + rm -r "${ED}"/usr/etc || die + rm -r "${ED}"/usr/share/doc/youtube_dl || die +} + +pkg_postinst() { + elog "${PN}(1) / https://bugs.gentoo.org/355661 /" + elog "https://github.com/rg3/${PN}/blob/master/README.md#faq :" + elog + elog "${PN} works fine on its own on most sites. However, if you want" + elog "to convert video/audio, you'll need ffmpeg (media-video/ffmpeg)." + elog "On some sites - most notably YouTube - videos can be retrieved in" + elog "a higher quality format without sound. ${PN} will detect whether" + elog "ffmpeg is present and automatically pick the best option." + elog + elog "Videos or video formats streamed via RTMP protocol can only be" + elog "downloaded when rtmpdump (media-video/rtmpdump) is installed." + elog + elog "Downloading MMS and RTSP videos requires either mplayer" + elog "(media-video/mplayer) or mpv (media-video/mpv) to be installed." + elog + elog "If you want ${PN} to embed thumbnails from the metadata into the" + elog "resulting MP4 files, consider installing media-video/atomicparsley" +} diff --git a/net-misc/zsync/zsync-0.6.2-r1.ebuild b/net-misc/zsync/zsync-0.6.2-r1.ebuild index ca66b738bda6..45f3f2729a6e 100644 --- a/net-misc/zsync/zsync-0.6.2-r1.ebuild +++ b/net-misc/zsync/zsync-0.6.2-r1.ebuild @@ -17,7 +17,7 @@ SRC_URI=" LICENSE="Artistic-2" SLOT="0" -KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" +KEYWORDS="amd64 ~arm ppc ppc64 x86" IUSE="" ZLIB_S="${WORKDIR}/${ZLIB_P}" diff --git a/net-nds/Manifest.gz b/net-nds/Manifest.gz index bc1b3bf60866..3e6d6a824a50 100644 Binary files a/net-nds/Manifest.gz and b/net-nds/Manifest.gz differ diff --git a/net-nds/openldap/Manifest b/net-nds/openldap/Manifest index a86662bb3805..952cd961b19c 100644 --- a/net-nds/openldap/Manifest +++ b/net-nds/openldap/Manifest @@ -1,3 +1,4 @@ DIST openldap-2.4.53.tgz 5883013 BLAKE2B 09d17d2a5438b09a4aa7f4a815e858d8b17ae7873580e5b3bc81d9569e97174703600472b9ecf79a28b7df561ba8214dfb6d08b467c823feeeae7d0cbdd37c6b SHA512 32dcbf18ffa53b3c2c5399f726c7a8970154d40fb88de85896d18ea2abd79c55ebe28fcf5fbfd52771f95561d70ab364db5f667fe2ec0e67b21e281f5112ec99 DIST openldap-2.4.54.tgz 5885717 BLAKE2B 804fec18146d673c78c414914fe37903976de6e1b0b1456f20c545665c9a78d15640e34cebfc4576d7781e67df377c33fed6de1deb984c2be2c9aeeaf4fcfacb SHA512 30cbe23f310f1901a0300ac0d123fc2e6fcc5bde8b15692f2fd8291d1f1e5b7e97426823eb1be9977a15d728fd175c8938c6790a57582a72d10be0b497c3ef5f +DIST openldap-2.4.56.tgz 5885444 BLAKE2B cebb189346f9114ed6e2dbb11a836c0b802e28f42d49351d6e807cba9c0f49e85ab3dbb34260b7c5eb3849c181eb51046ef48f555083647e3ce83209d6224bbb SHA512 cf371db5595d5b6643db3e6788ce56e34fe271c244dd39d781cadd2a7f85cec421a51c11a4857a7e286ba94a27c1f0dab0ff27e8de20208587471f4a589588e6 DIST rfc2307bis.schema-20140524 12262 BLAKE2B 98031f49e9bde1e4821e637af3382364d8344ed7017649686a088070d96a632dffa6c661552352656b1b159c0fd962965580069a64c7f3d5bb6a3ed75f60fd99 SHA512 83b89a1deeefc8566b97e7e865b9b6d04541099cbdf719e24538a7d27d61b6209e87ab9003a9f140bd9afd018ec569e71721e3a24090e1902c8b6659d2ba103e diff --git a/net-nds/openldap/openldap-2.4.56.ebuild b/net-nds/openldap/openldap-2.4.56.ebuild new file mode 100644 index 000000000000..f8eedca45d4f --- /dev/null +++ b/net-nds/openldap/openldap-2.4.56.ebuild @@ -0,0 +1,910 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools db-use flag-o-matic multilib-minimal preserve-libs ssl-cert toolchain-funcs systemd + +BIS_PN=rfc2307bis.schema +BIS_PV=20140524 +BIS_P="${BIS_PN}-${BIS_PV}" + +DESCRIPTION="LDAP suite of application and development tools" +HOMEPAGE="https://www.OpenLDAP.org/" + +# upstream mirrors are mostly not working, using canonical URI +SRC_URI=" + https://openldap.org/software/download/OpenLDAP/openldap-release/${P}.tgz + http://gpl.savoirfairelinux.net/pub/mirrors/openldap/openldap-release/${P}.tgz + http://repository.linagora.org/OpenLDAP/openldap-release/${P}.tgz + http://mirror.eu.oneandone.net/software/openldap/openldap-release/${P}.tgz + mirror://gentoo/${BIS_P}" + +LICENSE="OPENLDAP GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~x86-solaris" + +IUSE_DAEMON="crypt samba tcpd experimental minimal" +IUSE_BACKEND="+berkdb" +IUSE_OVERLAY="overlays perl" +IUSE_OPTIONAL="gnutls iodbc sasl ssl odbc debug ipv6 libressl +syslog selinux static-libs test" +IUSE_CONTRIB="smbkrb5passwd kerberos kinit pbkdf2 sha2" +IUSE_CONTRIB="${IUSE_CONTRIB} -cxx" +IUSE="${IUSE_DAEMON} ${IUSE_BACKEND} ${IUSE_OVERLAY} ${IUSE_OPTIONAL} ${IUSE_CONTRIB}" + +RESTRICT="!test? ( test )" +REQUIRED_USE="cxx? ( sasl ) + pbkdf2? ( ssl ) + test? ( berkdb ) + ?? ( test minimal )" + +# always list newer first +# Do not add any AGPL-3 BDB here! +# See bug 525110, comment 15. +# Advanced usage: OPENLDAP_BDB_SLOTS in the environment can be used to force a slot during build. +BDB_SLOTS="${OPENLDAP_BDB_SLOTS:=5.3 5.1 4.8 4.7 4.6 4.5 4.4}" +BDB_PKGS='' +for _slot in $BDB_SLOTS; do BDB_PKGS="${BDB_PKGS} sys-libs/db:${_slot}" ; done + +# openssl is needed to generate lanman-passwords required by samba +COMMON_DEPEND=" + ssl? ( + !gnutls? ( + !libressl? ( >=dev-libs/openssl-1.0.1h-r2:0=[${MULTILIB_USEDEP}] ) + libressl? ( dev-libs/libressl:0=[${MULTILIB_USEDEP}] ) + ) + gnutls? ( + >=net-libs/gnutls-2.12.23-r6:=[${MULTILIB_USEDEP}] + >=dev-libs/libgcrypt-1.5.3:0=[${MULTILIB_USEDEP}] + ) + ) + sasl? ( dev-libs/cyrus-sasl:= ) + !minimal? ( + sys-devel/libtool + sys-libs/e2fsprogs-libs + >=dev-db/lmdb-0.9.18:= + tcpd? ( sys-apps/tcp-wrappers ) + odbc? ( !iodbc? ( dev-db/unixODBC ) + iodbc? ( dev-db/libiodbc ) ) + perl? ( dev-lang/perl:=[-build(-)] ) + samba? ( + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + ) + berkdb? ( + dash + "${FILESDIR}"/${PN}-2.4.28-fix-dash.patch + + # bug #420959 + "${FILESDIR}"/${PN}-2.4.31-gcc47.patch + + # unbundle lmdb + "${FILESDIR}"/${PN}-2.4.42-mdb-unbundle.patch + + # bug #622464 + "${FILESDIR}"/${PN}-2.4.47-libressl.patch + + # fix some compiler warnings + "${FILESDIR}"/${PN}-2.4.47-warnings.patch +) + +openldap_filecount() { + local dir="$1" + find "${dir}" -type f ! -name '.*' ! -name 'DB_CONFIG*' | wc -l +} + +openldap_find_versiontags() { + # scan for all datadirs + local openldap_datadirs=() + if [[ -f "${EROOT}"/etc/openldap/slapd.conf ]]; then + openldap_datadirs=( $(awk '{if($1 == "directory") print $2 }' "${EROOT}"/etc/openldap/slapd.conf) ) + fi + openldap_datadirs+=( ${OPENLDAP_DEFAULTDIR_VERSIONTAG} ) + + einfo + einfo "Scanning datadir(s) from slapd.conf and" + einfo "the default installdir for Versiontags" + einfo "(${OPENLDAP_DEFAULTDIR_VERSIONTAG} may appear twice)" + einfo + + # scan datadirs if we have a version tag + openldap_found_tag=0 + have_files=0 + for each in ${openldap_datadirs[@]} ; do + CURRENT_TAGDIR="${ROOT}$(sed "s:\/::" <<< ${each})" + CURRENT_TAG="${CURRENT_TAGDIR}/${OPENLDAP_VERSIONTAG}" + if [[ -d "${CURRENT_TAGDIR}" ]] && [[ "${openldap_found_tag}" == 0 ]] ; then + einfo "- Checking ${each}..." + if [[ -r "${CURRENT_TAG}" ]] ; then + # yey, we have one :) + einfo " Found Versiontag in ${each}" + source "${CURRENT_TAG}" + if [[ "${OLDPF}" == "" ]] ; then + eerror "Invalid Versiontag found in ${CURRENT_TAGDIR}" + eerror "Please delete it" + eerror + die "Please kill the invalid versiontag in ${CURRENT_TAGDIR}" + fi + + OLD_MAJOR=$(ver_cut 2-3 ${OLDPF}) + + [[ "$(openldap_filecount ${CURRENT_TAGDIR})" -gt 0 ]] && have_files=1 + + # are we on the same branch? + if [[ "${OLD_MAJOR}" != "${PV:0:3}" ]] ; then + ewarn " Versiontag doesn't match current major release!" + if [[ "${have_files}" == "1" ]] ; then + eerror " Versiontag says other major and you (probably) have datafiles!" + echo + openldap_upgrade_howto + else + einfo " No real problem, seems there's no database." + fi + else + einfo " Versiontag is fine here :)" + fi + else + einfo " Non-tagged dir ${each}" + [[ "$(openldap_filecount ${each})" -gt 0 ]] && have_files=1 + if [[ "${have_files}" == "1" ]] ; then + einfo " EEK! Non-empty non-tagged datadir, counting `ls -a ${each} | wc -l` files" + echo + + eerror + eerror "Your OpenLDAP Installation has a non tagged datadir that" + eerror "possibly contains a database at ${CURRENT_TAGDIR}" + eerror + eerror "Please export data if any entered and empty or remove" + eerror "the directory, installation has been stopped so you" + eerror "can take required action" + eerror + eerror "For a HOWTO on exporting the data, see instructions in the ebuild" + eerror + openldap_upgrade_howto + die "Please move the datadir ${CURRENT_TAGDIR} away" + fi + fi + einfo + fi + done + [[ "${have_files}" == "1" ]] && einfo "DB files present" || einfo "No DB files present" + + # Now we must check for the major version of sys-libs/db linked against. + SLAPD_PATH="${EROOT}/usr/$(get_libdir)/openldap/slapd" + if [[ "${have_files}" == "1" ]] && [[ -f "${SLAPD_PATH}" ]]; then + OLDVER="$(/usr/bin/ldd ${SLAPD_PATH} \ + | awk '/libdb-/{gsub("^libdb-","",$1);gsub(".so$","",$1);print $1}')" + if use berkdb; then + # find which one would be used + for bdb_slot in ${BDB_SLOTS} ; do + NEWVER="$(db_findver "=sys-libs/db-${bdb_slot}*")" + [[ -n "${NEWVER}" ]] && break + done + fi + local fail=0 + if [[ -z "${OLDVER}" ]] && [[ -z "${NEWVER}" ]]; then + : + # Nothing wrong here. + elif [[ -z "${OLDVER}" ]] && [[ -n "${NEWVER}" ]]; then + eerror " Your existing version of OpenLDAP was not built against" + eerror " any version of sys-libs/db, but the new one will build" + eerror " against ${NEWVER} and your database may be inaccessible." + echo + fail=1 + elif [[ -n "${OLDVER}" ]] && [[ -z "${NEWVER}" ]]; then + eerror " Your existing version of OpenLDAP was built against" + eerror " sys-libs/db:${OLDVER}, but the new one will not be" + eerror " built against any version and your database may be" + eerror " inaccessible." + echo + fail=1 + elif [[ "${OLDVER}" != "${NEWVER}" ]]; then + eerror " Your existing version of OpenLDAP was built against" + eerror " sys-libs/db:${OLDVER}, but the new one will build against" + eerror " ${NEWVER} and your database would be inaccessible." + echo + fail=1 + fi + [[ "${fail}" == "1" ]] && openldap_upgrade_howto + fi + + echo + einfo + einfo "All datadirs are fine, proceeding with merge now..." + einfo +} + +openldap_upgrade_howto() { + local d l i + eerror + eerror "A (possible old) installation of OpenLDAP was detected," + eerror "installation will not proceed for now." + eerror + eerror "As major version upgrades can corrupt your database," + eerror "you need to dump your database and re-create it afterwards." + eerror + eerror "Additionally, rebuilding against different major versions of the" + eerror "sys-libs/db libraries will cause your database to be inaccessible." + eerror "" + d="$(date -u +%s)" + l="/root/ldapdump.${d}" + i="${l}.raw" + eerror " 1. /etc/init.d/slapd stop" + eerror " 2. slapcat -l ${i}" + eerror " 3. egrep -v '^(entry|context)CSN:' <${i} >${l}" + eerror " 4. mv /var/lib/openldap-data/ /var/lib/openldap-data-backup/" + eerror " 5. emerge --update \=net-nds/${PF}" + eerror " 6. etc-update, and ensure that you apply the changes" + eerror " 7. slapadd -l ${l}" + eerror " 8. chown ldap:ldap /var/lib/openldap-data/*" + eerror " 9. /etc/init.d/slapd start" + eerror "10. check that your data is intact." + eerror "11. set up the new replication system." + eerror + if [[ "${FORCE_UPGRADE}" != "1" ]]; then + die "You need to upgrade your database first" + else + eerror "You have the magical FORCE_UPGRADE=1 in place." + eerror "Don't say you weren't warned about data loss." + fi +} + +pkg_setup() { + if ! use sasl && use cxx ; then + die "To build the ldapc++ library you must emerge openldap with sasl support" + fi + # Bug #322787 + if use minimal && ! has_version "net-nds/openldap" ; then + einfo "No datadir scan needed, openldap not installed" + elif use minimal && has_version 'net-nds/openldap[minimal]' ; then + einfo "Skipping scan for previous datadirs as requested by minimal useflag" + else + openldap_find_versiontags + fi +} + +src_prepare() { + # ensure correct SLAPI path by default + sed -e 's,\(#define LDAPI_SOCK\).*,\1 "'"${EPREFIX}"'/var/run/openldap/slapd.sock",' \ + -i include/ldap_defaults.h || die + + default + rm -r libraries/liblmdb || die + + pushd build &>/dev/null || die "pushd build" + einfo "Making sure upstream build strip does not do stripping too early" + sed -i.orig \ + -e '/^STRIP/s,-s,,g' \ + top.mk || die "Failed to block stripping" + popd &>/dev/null || die + + # wrong assumption that /bin/sh is /bin/bash + sed \ + -e 's|/bin/sh|/bin/bash|g' \ + -i tests/scripts/* || die "sed failed" + + AT_NOEAUTOMAKE=yes eautoreconf +} + +build_contrib_module() { + # + pushd "${S}/contrib/slapd-modules/$1" &>/dev/null || die "pushd contrib/slapd-modules/$1" + einfo "Compiling contrib-module: $3" + # Make sure it's uppercase + local define_name="$(LC_ALL=C tr '[:lower:]' '[:upper:]' <<< "SLAPD_OVER_${1}")" + "${lt}" --mode=compile --tag=CC \ + "${CC}" \ + -D${define_name}=SLAPD_MOD_DYNAMIC \ + -I"${BUILD_DIR}"/include \ + -I../../../include -I../../../servers/slapd ${CFLAGS} \ + -o ${2%.c}.lo -c $2 || die "compiling $3 failed" + einfo "Linking contrib-module: $3" + "${lt}" --mode=link --tag=CC \ + "${CC}" -module \ + ${CFLAGS} \ + ${LDFLAGS} \ + -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap \ + -o $3.la ${2%.c}.lo || die "linking $3 failed" + popd &>/dev/null || die +} + +src_configure() { + # Bug 408001 + use elibc_FreeBSD && append-cppflags -DMDB_DSYNC=O_SYNC -DMDB_FDATASYNC=fsync + + # connectionless ldap per bug #342439 + append-cppflags -DLDAP_CONNECTIONLESS + + multilib-minimal_src_configure +} + +multilib_src_configure() { + local myconf=() + + use debug && myconf+=( $(use_enable debug) ) + + # ICU exists only in the configure, nowhere in the codebase, bug #510858 + export ac_cv_header_unicode_utypes_h=no ol_cv_lib_icu=no + + if ! use minimal && multilib_is_native_abi; then + local CPPFLAGS=${CPPFLAGS} + + # re-enable serverside overlay chains per bug #296567 + # see ldap docs chaper 12.3.1 for details + myconf+=( --enable-ldap ) + + # backends + myconf+=( --enable-slapd ) + if use berkdb ; then + einfo "Using Berkeley DB for local backend" + myconf+=( --enable-bdb --enable-hdb ) + DBINCLUDE=$(db_includedir ${BDB_SLOTS}) + einfo "Using ${DBINCLUDE} for sys-libs/db version" + # We need to include the slotted db.h dir for FreeBSD + append-cppflags -I${DBINCLUDE} + else + myconf+=( --disable-bdb --disable-hdb ) + fi + for backend in dnssrv ldap mdb meta monitor null passwd relay shell sock; do + myconf+=( --enable-${backend}=mod ) + done + + myconf+=( $(use_enable perl perl mod) ) + + myconf+=( $(use_enable odbc sql mod) ) + if use odbc ; then + local odbc_lib="unixodbc" + if use iodbc ; then + odbc_lib="iodbc" + append-cppflags -I"${EPREFIX}"/usr/include/iodbc + fi + myconf+=( --with-odbc=${odbc_lib} ) + fi + + # slapd options + myconf+=( + $(use_enable crypt) + --disable-slp + $(use_enable samba lmpasswd) + $(use_enable syslog) + ) + if use experimental ; then + myconf+=( + --enable-dynacl + --enable-aci=mod + ) + fi + for option in aci cleartext modules rewrite rlookups slapi; do + myconf+=( --enable-${option} ) + done + + # slapd overlay options + # Compile-in the syncprov, the others as module + myconf+=( --enable-syncprov=yes ) + use overlays && myconf+=( --enable-overlays=mod ) + + else + myconf+=( + --disable-backends + --disable-slapd + --disable-bdb + --disable-hdb + --disable-mdb + --disable-overlays + --disable-syslog + ) + fi + + # basic functionality stuff + myconf+=( + $(use_enable ipv6) + $(multilib_native_use_with sasl cyrus-sasl) + $(multilib_native_use_enable sasl spasswd) + $(use_enable tcpd wrappers) + ) + + # Some cross-compiling tests don't pan out well. + tc-is-cross-compiler && myconf+=( + --with-yielding-select=yes + ) + + local ssl_lib="no" + if use ssl || ( ! use minimal && use samba ) ; then + ssl_lib="openssl" + use gnutls && ssl_lib="gnutls" + fi + + myconf+=( --with-tls=${ssl_lib} ) + + for basicflag in dynamic local proctitle shared; do + myconf+=( --enable-${basicflag} ) + done + + tc-export AR CC CXX + CONFIG_SHELL="/bin/sh" \ + ECONF_SOURCE="${S}" \ + STRIP=/bin/true \ + econf \ + --libexecdir="${EPREFIX}"/usr/$(get_libdir)/openldap \ + $(use_enable static-libs static) \ + "${myconf[@]}" + emake depend +} + +src_configure_cxx() { + # This needs the libraries built by the first build run. + # So we have to run it AFTER the main build, not just after the main + # configure. + local myconf_ldapcpp=( + --with-ldap-includes="${S}"/include + ) + + mkdir -p "${BUILD_DIR}"/contrib/ldapc++ || die + pushd "${BUILD_DIR}/contrib/ldapc++" &>/dev/null || die "pushd contrib/ldapc++" + + local LDFLAGS=${LDFLAGS} CPPFLAGS=${CPPFLAGS} + append-ldflags -L"${BUILD_DIR}"/libraries/liblber/.libs \ + -L"${BUILD_DIR}"/libraries/libldap/.libs + append-cppflags -I"${BUILD_DIR}"/include + ECONF_SOURCE=${S}/contrib/ldapc++ \ + econf "${myconf_ldapcpp[@]}" \ + CC="${CC}" \ + CXX="${CXX}" + popd &>/dev/null || die +} + +multilib_src_compile() { + tc-export AR CC CXX + emake CC="${CC}" AR="${AR}" SHELL="${EPREFIX}"/bin/sh + local lt="${BUILD_DIR}/libtool" + export echo="echo" + + if ! use minimal && multilib_is_native_abi ; then + if use cxx ; then + einfo "Building contrib library: ldapc++" + src_configure_cxx + pushd "${BUILD_DIR}/contrib/ldapc++" &>/dev/null || die "pushd contrib/ldapc++" + emake CC="${CC}" CXX="${CXX}" + popd &>/dev/null || die + fi + + if use smbkrb5passwd ; then + einfo "Building contrib-module: smbk5pwd" + pushd "${S}/contrib/slapd-modules/smbk5pwd" &>/dev/null || die "pushd contrib/slapd-modules/smbk5pwd" + + MY_DEFS="-DDO_SHADOW" + if use samba ; then + MY_DEFS="${MY_DEFS} -DDO_SAMBA" + MY_KRB5_INC="" + fi + if use kerberos ; then + MY_DEFS="${MY_DEFS} -DDO_KRB5" + MY_KRB5_INC="$(krb5-config --cflags)" + fi + + emake \ + DEFS="${MY_DEFS}" \ + KRB5_INC="${MY_KRB5_INC}" \ + LDAP_BUILD="${BUILD_DIR}" \ + CC="${CC}" libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" + popd &>/dev/null || die + fi + + if use overlays ; then + einfo "Building contrib-module: samba4" + pushd "${S}/contrib/slapd-modules/samba4" &>/dev/null || die "pushd contrib/slapd-modules/samba4" + + emake \ + LDAP_BUILD="${BUILD_DIR}" \ + CC="${CC}" libexecdir="/usr/$(get_libdir)/openldap" + popd &>/dev/null || die + fi + + if use kerberos ; then + if use kinit ; then + build_contrib_module "kinit" "kinit.c" "kinit" + fi + pushd "${S}/contrib/slapd-modules/passwd" &>/dev/null || die "pushd contrib/slapd-modules/passwd" + einfo "Compiling contrib-module: pw-kerberos" + "${lt}" --mode=compile --tag=CC \ + "${CC}" \ + -I"${BUILD_DIR}"/include \ + -I../../../include \ + ${CFLAGS} \ + $(krb5-config --cflags) \ + -DHAVE_KRB5 \ + -o kerberos.lo \ + -c kerberos.c || die "compiling pw-kerberos failed" + einfo "Linking contrib-module: pw-kerberos" + "${lt}" --mode=link --tag=CC \ + "${CC}" -module \ + ${CFLAGS} \ + ${LDFLAGS} \ + -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap \ + -o pw-kerberos.la \ + kerberos.lo || die "linking pw-kerberos failed" + popd &>/dev/null || die + fi + + if use pbkdf2; then + pushd "${S}/contrib/slapd-modules/passwd/pbkdf2" &>/dev/null || die "pushd contrib/slapd-modules/passwd/pbkdf2" + einfo "Compiling contrib-module: pw-pbkdf2" + "${lt}" --mode=compile --tag=CC \ + "${CC}" \ + -I"${BUILD_DIR}"/include \ + -I../../../../include \ + ${CFLAGS} \ + -o pbkdf2.lo \ + -c pw-pbkdf2.c || die "compiling pw-pbkdf2 failed" + einfo "Linking contrib-module: pw-pbkdf2" + "${lt}" --mode=link --tag=CC \ + "${CC}" -module \ + ${CFLAGS} \ + ${LDFLAGS} \ + -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap \ + -o pw-pbkdf2.la \ + pbkdf2.lo || die "linking pw-pbkdf2 failed" + popd &>/dev/null || die + fi + + if use sha2 ; then + pushd "${S}/contrib/slapd-modules/passwd/sha2" &>/dev/null || die "pushd contrib/slapd-modules/passwd/sha2" + einfo "Compiling contrib-module: pw-sha2" + "${lt}" --mode=compile --tag=CC \ + "${CC}" \ + -I"${BUILD_DIR}"/include \ + -I../../../../include \ + ${CFLAGS} \ + -o sha2.lo \ + -c sha2.c || die "compiling pw-sha2 failed" + "${lt}" --mode=compile --tag=CC \ + "${CC}" \ + -I"${BUILD_DIR}"/include \ + -I../../../../include \ + ${CFLAGS} \ + -o slapd-sha2.lo \ + -c slapd-sha2.c || die "compiling pw-sha2 failed" + einfo "Linking contrib-module: pw-sha2" + "${lt}" --mode=link --tag=CC \ + "${CC}" -module \ + ${CFLAGS} \ + ${LDFLAGS} \ + -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap \ + -o pw-sha2.la \ + sha2.lo slapd-sha2.lo || die "linking pw-sha2 failed" + popd &>/dev/null || die + fi + + # We could build pw-radius if GNURadius would install radlib.h + pushd "${S}/contrib/slapd-modules/passwd" &>/dev/null || die "pushd contrib/slapd-modules/passwd" + einfo "Compiling contrib-module: pw-netscape" + "${lt}" --mode=compile --tag=CC \ + "${CC}" \ + -I"${BUILD_DIR}"/include \ + -I../../../include \ + ${CFLAGS} \ + -o netscape.lo \ + -c netscape.c || die "compiling pw-netscape failed" + einfo "Linking contrib-module: pw-netscape" + "${lt}" --mode=link --tag=CC \ + "${CC}" -module \ + ${CFLAGS} \ + ${LDFLAGS} \ + -rpath "${EPREFIX}"/usr/$(get_libdir)/openldap/openldap \ + -o pw-netscape.la \ + netscape.lo || die "linking pw-netscape failed" + + #build_contrib_module "acl" "posixgroup.c" "posixGroup" # example code only + #build_contrib_module "acl" "gssacl.c" "gss" # example code only, also needs kerberos + build_contrib_module "addpartial" "addpartial-overlay.c" "addpartial-overlay" + build_contrib_module "allop" "allop.c" "overlay-allop" + build_contrib_module "allowed" "allowed.c" "allowed" + build_contrib_module "autogroup" "autogroup.c" "autogroup" + build_contrib_module "cloak" "cloak.c" "cloak" + # build_contrib_module "comp_match" "comp_match.c" "comp_match" # really complex, adds new external deps, questionable demand + build_contrib_module "denyop" "denyop.c" "denyop-overlay" + build_contrib_module "dsaschema" "dsaschema.c" "dsaschema-plugin" + build_contrib_module "dupent" "dupent.c" "dupent" + build_contrib_module "lastbind" "lastbind.c" "lastbind" + # lastmod may not play well with other overlays + build_contrib_module "lastmod" "lastmod.c" "lastmod" + build_contrib_module "noopsrch" "noopsrch.c" "noopsrch" + #build_contrib_module "nops" "nops.c" "nops-overlay" https://bugs.gentoo.org/641576 + #build_contrib_module "nssov" "nssov.c" "nssov-overlay" RESO:LATER + build_contrib_module "trace" "trace.c" "trace" + popd &>/dev/null || die + # build slapi-plugins + pushd "${S}/contrib/slapi-plugins/addrdnvalues" &>/dev/null || die "pushd contrib/slapi-plugins/addrdnvalues" + einfo "Building contrib-module: addrdnvalues plugin" + "${CC}" -shared \ + -I"${BUILD_DIR}"/include \ + -I../../../include \ + ${CFLAGS} \ + -fPIC \ + ${LDFLAGS} \ + -o libaddrdnvalues-plugin.so \ + addrdnvalues.c || die "Building libaddrdnvalues-plugin.so failed" + popd &>/dev/null || die + fi +} + +multilib_src_test() { + if multilib_is_native_abi; then + cd tests || die + emake tests + fi +} + +multilib_src_install() { + local lt="${BUILD_DIR}/libtool" + emake DESTDIR="${D}" SHELL="${EPREFIX}"/bin/sh install + + if ! use minimal && multilib_is_native_abi; then + # openldap modules go here + # TODO: write some code to populate slapd.conf with moduleload statements + keepdir /usr/$(get_libdir)/openldap/openldap/ + + # initial data storage dir + keepdir /var/lib/openldap-data + use prefix || fowners ldap:ldap /var/lib/openldap-data + fperms 0700 /var/lib/openldap-data + + echo "OLDPF='${PF}'" > "${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}" + echo "# do NOT delete this. it is used" >> "${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}" + echo "# to track versions for upgrading." >> "${ED}${OPENLDAP_DEFAULTDIR_VERSIONTAG}/${OPENLDAP_VERSIONTAG}" + + # use our config + rm "${ED}"/etc/openldap/slapd.conf + insinto /etc/openldap + newins "${FILESDIR}"/${PN}-2.4.40-slapd-conf slapd.conf + configfile="${ED}"/etc/openldap/slapd.conf + + # populate with built backends + ebegin "populate config with built backends" + for x in "${ED}"/usr/$(get_libdir)/openldap/openldap/back_*.so; do + einfo "Adding $(basename ${x})" + sed -e "/###INSERTDYNAMICMODULESHERE###$/a# moduleload\t$(basename ${x})" -i "${configfile}" || die + done + sed -e "s:###INSERTDYNAMICMODULESHERE###$:# modulepath\t${EPREFIX}/usr/$(get_libdir)/openldap/openldap:" -i "${configfile}" + use prefix || fowners root:ldap /etc/openldap/slapd.conf + fperms 0640 /etc/openldap/slapd.conf + cp "${configfile}" "${configfile}".default || die + eend + + # install our own init scripts and systemd unit files + einfo "Install init scripts" + sed -e "s,/usr/lib/,/usr/$(get_libdir)/," "${FILESDIR}"/slapd-initd-2.4.40-r2 > "${T}"/slapd || die + doinitd "${T}"/slapd + newconfd "${FILESDIR}"/slapd-confd-2.4.28-r1 slapd + + einfo "Install systemd service" + sed -e "s,/usr/lib/,/usr/$(get_libdir)/," "${FILESDIR}"/slapd.service > "${T}"/slapd.service || die + systemd_dounit "${T}"/slapd.service + systemd_install_serviced "${FILESDIR}"/slapd.service.conf + systemd_newtmpfilesd "${FILESDIR}"/slapd.tmpfilesd slapd.conf + + # If built without SLP, we don't need to be before avahi + sed -i \ + -e '/before/{s/avahi-daemon//g}' \ + "${ED}"/etc/init.d/slapd \ + || die + + if use cxx ; then + einfo "Install the ldapc++ library" + cd "${BUILD_DIR}/contrib/ldapc++" || die + emake DESTDIR="${D}" libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" install + cd "${S}"/contrib/ldapc++ || die + newdoc README ldapc++-README + fi + + if use smbkrb5passwd ; then + einfo "Install the smbk5pwd module" + cd "${S}/contrib/slapd-modules/smbk5pwd" || die + emake DESTDIR="${D}" \ + LDAP_BUILD="${BUILD_DIR}" \ + libexecdir="${EPREFIX}/usr/$(get_libdir)/openldap" install + newdoc README smbk5pwd-README + fi + + if use overlays ; then + einfo "Install the samba4 module" + cd "${S}/contrib/slapd-modules/samba4" || die + emake DESTDIR="${D}" \ + LDAP_BUILD="${BUILD_DIR}" \ + libexecdir="/usr/$(get_libdir)/openldap" install + newdoc README samba4-README + fi + + einfo "Installing contrib modules" + cd "${S}/contrib/slapd-modules" || die + for l in */*.la */*/*.la; do + [[ -e ${l} ]] || continue + "${lt}" --mode=install cp ${l} \ + "${ED}"/usr/$(get_libdir)/openldap/openldap || \ + die "installing ${l} failed" + done + + dodoc "${FILESDIR}"/DB_CONFIG.fast.example + docinto contrib + doman */*.5 + #newdoc acl/README* + newdoc addpartial/README addpartial-README + newdoc allop/README allop-README + newdoc allowed/README allowed-README + newdoc autogroup/README autogroup-README + newdoc dsaschema/README dsaschema-README + newdoc passwd/README passwd-README + cd "${S}/contrib/slapi-plugins" || die + insinto /usr/$(get_libdir)/openldap/openldap + doins */*.so + docinto contrib + newdoc addrdnvalues/README addrdnvalues-README + + insinto /etc/openldap/schema + newins "${DISTDIR}"/${BIS_P} ${BIS_PN} + + docinto back-sock ; dodoc "${S}"/servers/slapd/back-sock/searchexample* + docinto back-shell ; dodoc "${S}"/servers/slapd/back-shell/searchexample* + docinto back-perl ; dodoc "${S}"/servers/slapd/back-perl/SampleLDAP.pm + + dosbin "${S}"/contrib/slapd-tools/statslog + newdoc "${S}"/contrib/slapd-tools/README README.statslog + fi + + if ! use static-libs ; then + find "${ED}" \( -name '*.a' -o -name '*.la' \) -delete || die + fi +} + +multilib_src_install_all() { + dodoc ANNOUNCEMENT CHANGES COPYRIGHT README + docinto rfc ; dodoc doc/rfc/*.txt +} + +pkg_preinst() { + # keep old libs if any + preserve_old_lib /usr/$(get_libdir)/{liblber,libldap_r,liblber}-2.3$(get_libname 0) + # bug 440470, only display the getting started help there was no openldap before, + # or we are going to a non-minimal build + ! has_version net-nds/openldap || has_version 'net-nds/openldap[minimal]' + OPENLDAP_PRINT_MESSAGES=$((! $?)) +} + +pkg_postinst() { + if ! use minimal ; then + # You cannot build SSL certificates during src_install that will make + # binary packages containing your SSL key, which is both a security risk + # and a misconfiguration if multiple machines use the same key and cert. + if use ssl; then + install_cert /etc/openldap/ssl/ldap + use prefix || chown ldap:ldap "${EROOT}"/etc/openldap/ssl/ldap.* + ewarn "Self-signed SSL certificates are treated harshly by OpenLDAP 2.[12]" + ewarn "Self-signed SSL certificates are treated harshly by OpenLDAP 2.[12]" + ewarn "add 'TLS_REQCERT allow' if you want to use them." + fi + + if use prefix; then + # Warn about prefix issues with slapd + eerror "slapd might NOT be usable on Prefix systems as it requires root privileges" + eerror "to start up, and requires that certain files directories be owned by" + eerror "ldap:ldap. As Prefix does not support changing ownership of files and" + eerror "directories, you will have to manually fix this yourself." + fi + + # These lines force the permissions of various content to be correct + if [[ -d "${EROOT}"/var/run/openldap ]]; then + use prefix || { chown ldap:ldap "${EROOT}"/var/run/openldap || die; } + chmod 0755 "${EROOT}"/var/run/openldap || die + fi + use prefix || chown root:ldap "${EROOT}"/etc/openldap/slapd.conf{,.default} + chmod 0640 "${EROOT}"/etc/openldap/slapd.conf{,.default} || die + use prefix || chown ldap:ldap "${EROOT}"/var/lib/openldap-data + fi + + if has_version 'net-nds/openldap[-minimal]' && ((${OPENLDAP_PRINT_MESSAGES})); then + elog "Getting started using OpenLDAP? There is some documentation available:" + elog "Gentoo Guide to OpenLDAP Authentication" + elog "(https://wiki.gentoo.org/wiki/Centralized_authentication_using_OpenLDAP)" + elog "---" + elog "An example file for tuning BDB backends with openldap is" + elog "DB_CONFIG.fast.example in /usr/share/doc/${PF}/" + fi + + preserve_old_lib_notify /usr/$(get_libdir)/{liblber,libldap,libldap_r}-2.3$(get_libname 0) +} diff --git a/net-nntp/Manifest.gz b/net-nntp/Manifest.gz index 4872f1022cea..0360b7d2ed39 100644 Binary files a/net-nntp/Manifest.gz and b/net-nntp/Manifest.gz differ diff --git a/net-nntp/pan/Manifest b/net-nntp/pan/Manifest index e75bf57877f9..220106490ae3 100644 --- a/net-nntp/pan/Manifest +++ b/net-nntp/pan/Manifest @@ -1 +1,2 @@ DIST pan-0.145.tar.bz2 2307162 BLAKE2B 09535013d8c2fb511b8c79ef185880b69a3f948d0e168b4fb8acc4d3d07d94fb756df171d003b12e1baef3201e2b8be22d583bb9ff551a5ae22f464feaa6f077 SHA512 3dc92d519158ddd480fc43250bf7a3ec67a877e58b0877c02b99f1dfd968bf18c9a20c3d8c4b6acab4132da89b6b91dd2992616ddf46c1c3f9aa0de8f8ee1949 +DIST pan-0.146.tar.bz2 2309326 BLAKE2B 327582ddcf293f4f5dbd15e30b2c604173b4b5a7c249f4d7cc4181d403b0b397257b017a6a0f65f5ad8da369da427b79e7e7de1aaca1a9af8613863380918148 SHA512 6eb2cdf60bb8cc36b53448edd90ccd3d17d7eb9a96958f6d549ee457578d63edfaababd838009be42e2787bdbac64893eb101170a7d394b05b4c4ee095975810 diff --git a/net-nntp/pan/pan-0.146.ebuild b/net-nntp/pan/pan-0.146.ebuild new file mode 100644 index 000000000000..825f855de582 --- /dev/null +++ b/net-nntp/pan/pan-0.146.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome2 + +DESCRIPTION="A newsreader for GNOME" +HOMEPAGE="http://pan.rebelbase.com/" +SRC_URI="http://pan.rebelbase.com/download/releases/${PV}/source/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="dbus gnome-keyring libnotify spell ssl" + +RDEPEND=" + >=dev-libs/glib-2.26:2 + dev-libs/gmime:2.6 + >=sys-libs/zlib-1.2.0 + >=x11-libs/gtk+-2.16:2 + gnome-keyring? ( >=gnome-base/libgnome-keyring-3.2 ) + libnotify? ( >=x11-libs/libnotify-0.4.1:0= ) + spell? ( + >=app-text/enchant-1.6:0/0 + >=app-text/gtkspell-2.0.7:2 ) + ssl? ( >=net-libs/gnutls-3:0= ) +" +DEPEND="${RDEPEND} + app-text/yelp-tools + >=sys-devel/gettext-0.19.7 + virtual/pkgconfig +" + +src_configure() { + # Wait for webkitgtk4 support + # gtk3 support is still not ready (follow what Fedora does) + # gmime:3.0 support claimed to be experimental still in 0.145, waiting with it until it's not experimental anymore or we work towards removing :2.6 + gnome2_src_configure \ + --with-yelp-tools \ + --without-gtk3 \ + --without-gmime30 \ + --without-webkit \ + $(use_with dbus) \ + $(use_enable gnome-keyring gkr) \ + $(use_with spell gtkspell) \ + $(use_enable libnotify) \ + $(use_with ssl gnutls) +} diff --git a/net-print/Manifest.gz b/net-print/Manifest.gz index 8270bdfae30b..04f8690aa962 100644 Binary files a/net-print/Manifest.gz and b/net-print/Manifest.gz differ diff --git a/net-print/hplip/hplip-3.20.9-r4.ebuild b/net-print/hplip/hplip-3.20.9-r5.ebuild similarity index 98% rename from net-print/hplip/hplip-3.20.9-r4.ebuild rename to net-print/hplip/hplip-3.20.9-r5.ebuild index f55a41761741..c7b0fa78fc6b 100644 --- a/net-print/hplip/hplip-3.20.9-r4.ebuild +++ b/net-print/hplip/hplip-3.20.9-r5.ebuild @@ -209,9 +209,11 @@ src_configure() { minimal_build="${minimal_build} --disable-scan-build" fi if use qt5 ; then + minimal_build="${minimal_build} --enable-qt5" minimal_build="${minimal_build} --enable-gui-build" else minimal_build="${minimal_build} --disable-gui-build" + minimal_build="${minimal_build} --disable-qt5" fi fi diff --git a/net-vpn/Manifest.gz b/net-vpn/Manifest.gz index 033f83439008..610f4a9da0e7 100644 Binary files a/net-vpn/Manifest.gz and b/net-vpn/Manifest.gz differ diff --git a/net-vpn/libreswan/libreswan-4.1-r1.ebuild b/net-vpn/libreswan/libreswan-4.1-r1.ebuild new file mode 100644 index 000000000000..e837a675077b --- /dev/null +++ b/net-vpn/libreswan/libreswan-4.1-r1.ebuild @@ -0,0 +1,120 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd toolchain-funcs + +SRC_URI="https://download.libreswan.org/${P}.tar.gz" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +DESCRIPTION="IPsec implementation for Linux, fork of Openswan" +HOMEPAGE="https://libreswan.org/" + +LICENSE="GPL-2 BSD-4 RSA DES" +SLOT="0" +IUSE="caps curl dnssec ldap networkmanager pam seccomp selinux systemd test" +RESTRICT="!test? ( test )" + +DEPEND=" + dev-libs/gmp:0= + dev-libs/libevent:0= + dev-libs/nspr + >=dev-libs/nss-3.42 + >=sys-kernel/linux-headers-4.19 + caps? ( sys-libs/libcap-ng ) + curl? ( net-misc/curl ) + dnssec? ( >=net-dns/unbound-1.9.1-r1:= net-libs/ldns ) + ldap? ( net-nds/openldap ) + pam? ( sys-libs/pam ) + seccomp? ( sys-libs/libseccomp ) + selinux? ( sys-libs/libselinux ) + systemd? ( sys-apps/systemd:0= ) +" +BDEPEND=" + app-text/docbook-xml-dtd:4.1.2 + app-text/xmlto + dev-libs/nss + sys-devel/bison + sys-devel/flex + virtual/pkgconfig + test? ( dev-python/setproctitle ) +" +RDEPEND="${DEPEND} + dev-libs/nss[utils(+)] + sys-apps/iproute2 + !net-vpn/strongswan + selinux? ( sec-policy/selinux-ipsec ) +" + +usetf() { + usex "$1" true false +} + +PATCHES=( "${FILESDIR}/${PN}-3.30-ip-path.patch" ) + +src_prepare() { + sed -i -e 's:/sbin/runscript:/sbin/openrc-run:' initsystems/openrc/ipsec.init.in || die + sed -i -e '/^install/ s/postcheck//' -e '/^doinstall/ s/oldinitdcheck//' initsystems/systemd/Makefile || die + default +} + +src_configure() { + tc-export AR CC + export PREFIX=/usr + export FINALEXAMPLECONFDIR=/usr/share/doc/${PF} + export FINALDOCDIR=/usr/share/doc/${PF}/html + export INITSYSTEM=openrc + export INITDDIRS= + export INITDDIR_DEFAULT=/etc/init.d + export USERCOMPILE=${CFLAGS} + export USERLINK=${LDFLAGS} + export USE_DNSSEC=$(usetf dnssec) + export USE_LABELED_IPSEC=$(usetf selinux) + export USE_LIBCAP_NG=$(usetf caps) + export USE_LIBCURL=$(usetf curl) + export USE_LINUX_AUDIT=$(usetf selinux) + export USE_LDAP=$(usetf ldap) + export USE_NM=$(usetf networkmanager) + export USE_SECCOMP=$(usetf seccomp) + export USE_SYSTEMD_WATCHDOG=$(usetf systemd) + export SD_WATCHDOGSEC=$(usex systemd 200 0) + export USE_XAUTHPAM=$(usetf pam) + export DEBUG_CFLAGS= + export OPTIMIZE_CFLAGS= + export WERROR_CFLAGS= +} + +src_compile() { + emake all + emake -C initsystems INITSYSTEM=systemd SYSTEMUNITDIR="$(systemd_get_systemunitdir)" SYSTEMTMPFILESDIR="/usr/lib/tmpfiles.d" all +} + +src_test() { + : # integration tests only that require set of kvms to be set up +} + +src_install() { + default + emake -C initsystems INITSYSTEM=systemd SYSTEMUNITDIR="$(systemd_get_systemunitdir)" SYSTEMTMPFILESDIR="/usr/lib/tmpfiles.d" DESTDIR="${D}" install + + echo "include /etc/ipsec.d/*.secrets" > "${D}"/etc/ipsec.secrets + fperms 0600 /etc/ipsec.secrets + + keepdir /var/lib/ipsec/nss + fperms 0700 /var/lib/ipsec/nss + + dodoc -r docs + + find "${D}" -type d -empty -delete || die +} + +pkg_postinst() { + local IPSEC_CONFDIR=${ROOT}/var/lib/ipsec/nss + if [[ ! -f ${IPSEC_CONFDIR}/cert8.db && ! -f ${IPSEC_CONFDIR}/cert9.db ]] ; then + ebegin "Setting up NSS database in ${IPSEC_CONFDIR} with empty password" + certutil -N -d "${IPSEC_CONFDIR}" --empty-password + eend $? + einfo "To set a password: certutil -W -d sql:${IPSEC_CONFDIR}" + fi +} diff --git a/net-vpn/ocserv/Manifest b/net-vpn/ocserv/Manifest index 8bbe3efe2faf..66048da92816 100644 --- a/net-vpn/ocserv/Manifest +++ b/net-vpn/ocserv/Manifest @@ -1 +1,2 @@ DIST ocserv-1.0.1.tar.xz 787800 BLAKE2B 655a2a6e1434a5b31b157e0f73df3d6d04011c06fd5a1f39f1152752abdc837974c739bc0694a804a1e96b4e219c78c5cf1a58040bbcdcad3e326d0c9e584c7b SHA512 953e1b6084f68f8627b5383e28b5fcde987881e66feac645a40fa37d895f0711b171c9029c3703773dfbd5432d747f92c71af9240c2df3381599902a7d5fe880 +DIST ocserv-1.1.1.tar.xz 818988 BLAKE2B 06fdc47fcabea162ddd417f315c53e85f4ccdc1dc9b60b624c06ee4adae9d6f0ee96f94c15daafa0633b4925720519da7220914008c64c5771f61416208a570e SHA512 1173416f0d32f9faf98e539c8e73316a50ac93b519d1ade19374a3df865d10d975e13ac53e0c5a5e77c80f3605d7a810287b18b85b798887d227389761b54220 diff --git a/net-vpn/ocserv/ocserv-1.1.1.ebuild b/net-vpn/ocserv/ocserv-1.1.1.ebuild new file mode 100644 index 000000000000..41a683070d56 --- /dev/null +++ b/net-vpn/ocserv/ocserv-1.1.1.ebuild @@ -0,0 +1,81 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd + +DESCRIPTION="Openconnect SSL VPN server" +HOMEPAGE="https://ocserv.gitlab.io/www/index.html" +SRC_URI="ftp://ftp.infradead.org/pub/ocserv/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="geoip kerberos +lz4 otp pam radius +seccomp systemd tcpd test" +RESTRICT="!test? ( test )" + +BDEPEND=" + virtual/pkgconfig + test? ( + net-libs/gnutls[tools(+)] + net-libs/socket_wrapper + net-vpn/openconnect + sys-libs/nss_wrapper + sys-libs/uid_wrapper + ) +" +DEPEND=" + dev-libs/libnl:3= + dev-libs/libev:0= + >=dev-libs/nettle-2.7:0= + dev-libs/pcl:0= + dev-libs/protobuf-c:0= + >=net-libs/gnutls-3.3.0:0= + net-libs/http-parser:0= + sys-libs/readline:0= + sys-libs/talloc:0= + geoip? ( dev-libs/geoip:0= ) + kerberos? ( virtual/krb5 ) + lz4? ( app-arch/lz4:0= ) + otp? ( sys-auth/oath-toolkit:0= ) + pam? ( sys-libs/pam:0= ) + radius? ( net-dialup/freeradius-client:0= ) + seccomp? ( sys-libs/libseccomp:0= ) + systemd? ( sys-apps/systemd:0= ) + tcpd? ( sys-apps/tcp-wrappers:0= ) +" +RDEPEND="${DEPEND}" + +src_configure() { + local myconf=( + --without-root-tests + --without-nuttcp-tests + + $(use_enable seccomp) + $(use_enable systemd) + + $(use_with geoip) + $(use_with kerberos gssapi) + $(use_with lz4) + $(use_with otp liboath) + $(use_with radius) + $(use_with tcpd libwrap) + ) + econf "${myconf[@]}" +} + +src_install() { + default + + dodoc doc/sample.{config,passwd} + use otp && dodoc doc/sample.otp + + doinitd "${FILESDIR}"/ocserv + + if use systemd; then + systemd_dounit doc/systemd/socket-activated/ocserv.{service,socket} + else + systemd_dounit doc/systemd/standalone/ocserv.service + fi +} diff --git a/net-vpn/tor/tor-0.4.4.6.ebuild b/net-vpn/tor/tor-0.4.4.6.ebuild index 75110bc4eea4..1dc0bc5c4717 100644 --- a/net-vpn/tor/tor-0.4.4.6.ebuild +++ b/net-vpn/tor/tor-0.4.4.6.ebuild @@ -15,7 +15,7 @@ S="${WORKDIR}/${MY_PF}" LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos" +KEYWORDS="amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 x86 ~ppc-macos" IUSE="caps doc libressl lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd" DEPEND=" diff --git a/net-wireless/Manifest.gz b/net-wireless/Manifest.gz index e293585003f2..7ea237c84429 100644 Binary files a/net-wireless/Manifest.gz and b/net-wireless/Manifest.gz differ diff --git a/net-wireless/gnuradio/files/gnuradio-3.7.13.5-boost-1.70-asio.patch b/net-wireless/gnuradio/files/gnuradio-3.7.13.5-boost-1.70-asio.patch deleted file mode 100644 index d4925e674eab..000000000000 --- a/net-wireless/gnuradio/files/gnuradio-3.7.13.5-boost-1.70-asio.patch +++ /dev/null @@ -1,18 +0,0 @@ -Bug: https://bugs.gentoo.org/683380 -Patch adapted from FreeBSD: -https://svnweb.freebsd.org/ports/head/comms/gnuradio/files/patch-gr-blocks_lib_socket__pdu__impl.cc?view=markup&pathrev=499093 - ---- a/gr-blocks/lib/socket_pdu_impl.cc -+++ b/gr-blocks/lib/socket_pdu_impl.cc -@@ -165,7 +165,11 @@ - void - socket_pdu_impl::start_tcp_accept() - { -+#if (BOOST_VERSION >= 107000) -+ tcp_connection::sptr new_connection = tcp_connection::make(d_io_service, d_rxbuf.size(), d_tcp_no_delay); -+#else - tcp_connection::sptr new_connection = tcp_connection::make(d_acceptor_tcp->get_io_service(), d_rxbuf.size(), d_tcp_no_delay); -+#endif - - d_acceptor_tcp->async_accept(new_connection->socket(), - boost::bind(&socket_pdu_impl::handle_tcp_accept, this, diff --git a/net-wireless/gnuradio/files/gnuradio-wxpy3.0-compat.patch b/net-wireless/gnuradio/files/gnuradio-wxpy3.0-compat.patch deleted file mode 100644 index 60eb7c7bbbe9..000000000000 --- a/net-wireless/gnuradio/files/gnuradio-wxpy3.0-compat.patch +++ /dev/null @@ -1,50 +0,0 @@ -Description: Update for wxPython 3.0 - wx.InitAllImageHandlers() issues a deprecation warning with wxPython 3.0 - and is a no-op with wxPython 2.8. - Deprecated constants like wxSAVE are gone from the C++ API, so wx.SAVE, etc - are also likely to go from wxPython soon. - The alias "wx.Color" is gone in wxPython 3.0 - only "wx.Colour" is now - supported, so update docstring to use the correct class name. -Author: Olly Betts -Forwarded: no -Last-Update: 2014-08-21 - ---- a/gr-wxgui/python/wxgui/plot.py -+++ b/gr-wxgui/python/wxgui/plot.py -@@ -522,7 +522,7 @@ - self, - "Choose a file with extension bmp, gif, xbm, xpm, png, or jpg", ".", "", - "BMP files (*.bmp)|*.bmp|XBM files (*.xbm)|*.xbm|XPM file (*.xpm)|*.xpm|PNG files (*.png)|*.png|JPG files (*.jpg)|*.jpg", -- wx.SAVE|wx.OVERWRITE_PROMPT -+ wx.FD_SAVE|wx.FD_OVERWRITE_PROMPT - ) - try: - while 1: -@@ -1820,7 +1820,6 @@ - - class MyApp(wx.App): - def OnInit(self): -- wx.InitAllImageHandlers() - frame = TestFrame(None, -1, "PlotCanvas") - #frame.Show(True) - self.SetTopWindow(frame) ---- a/gr-wxgui/python/wxgui/plotter/gltext.py -+++ b/gr-wxgui/python/wxgui/plotter/gltext.py -@@ -50,7 +50,7 @@ - """ - text (String) - Text - font (wx.Font) - Font to draw with (None = System default) -- foreground (wx.Color) - Color of the text -+ foreground (wx.Colour)- Color of the text - or (wx.Bitmap)- Bitmap to overlay the text with - centered (bool) - Center the text - -@@ -317,7 +317,7 @@ - text (string) - displayed text - font (wx.Font) - if None, system default font will be used with font_size - font_size (int) - font size in points -- foreground (wx.Color) - Color of the text -+ foreground (wx.Colour) - Color of the text - or (wx.Bitmap) - Bitmap to overlay the text with - centered (bool) - should the text drawn centered towards position? - diff --git a/profiles/Manifest.gz b/profiles/Manifest.gz index fe04d37e1478..bfa5eed4c768 100644 Binary files a/profiles/Manifest.gz and b/profiles/Manifest.gz differ diff --git a/profiles/arch/arm/package.use.mask b/profiles/arch/arm/package.use.mask index a111dd5abd87..809a40418d95 100644 --- a/profiles/arch/arm/package.use.mask +++ b/profiles/arch/arm/package.use.mask @@ -282,6 +282,8 @@ media-libs/freeimage tiff # Google does not distribute the widevine plugin for ARM. It must be extracted from a Chromebook, # and this kind of reverse engineering work likely violates many agreements, so we mask the flag. www-client/chromium widevine +www-client/vivaldi widevine +www-client/vivaldi-snapshot widevine # Markus Meier (2015-01-17) # Unkeyworded deps, bug #536226 diff --git a/profiles/arch/arm64/package.use.mask b/profiles/arch/arm64/package.use.mask index a179c5dfba11..807bc489f0bb 100644 --- a/profiles/arch/arm64/package.use.mask +++ b/profiles/arch/arm64/package.use.mask @@ -250,6 +250,8 @@ net-fs/samba dmapi sci-libs/gdal armadillo netcdf sys-fs/btrfs-progs reiserfs www-client/chromium widevine +www-client/vivaldi widevine +www-client/vivaldi-snapshot widevine # Matthew Thode (2018-02-23) # net-proxy/haproxy isn't keyworded for arm64 diff --git a/profiles/arch/riscv/package.use.mask b/profiles/arch/riscv/package.use.mask index 51f4f1fca929..79c0321790fa 100644 --- a/profiles/arch/riscv/package.use.mask +++ b/profiles/arch/riscv/package.use.mask @@ -63,7 +63,7 @@ app-arch/unzip natspec app-crypt/gnupg smartcard tofu wks-server app-crypt/mit-krb5 doc test xinetd app-crypt/pinentry fltk gnome-keyring -app-doc/doxygen dot +app-doc/doxygen doc dot app-editors/emacs alsa json lcms mailutils app-misc/pax-utils python app-text/asciidoc test @@ -105,6 +105,7 @@ dev-util/strace unwind dev-vcs/git cvs highlight gnome-keyring subversion tk xinetd dev-vcs/mercurial tk rust zsh-completion media-libs/freetype harfbuzz png +media-libs/mesa lm-sensors unwind media-libs/tiff jbig jpeg test webp net-fs/nfs-utils nfsv41 net-libs/gnutls doc test-full diff --git a/profiles/arch/x86/package.use.mask b/profiles/arch/x86/package.use.mask index f924ec26af0b..8cf9762c70ec 100644 --- a/profiles/arch/x86/package.use.mask +++ b/profiles/arch/x86/package.use.mask @@ -247,6 +247,8 @@ dev-db/mariadb -jdbc # Mike Gilbert (2016-03-03) # chrome-binary-plugins dropped x86 support www-client/chromium widevine +www-client/vivaldi widevine +www-client/vivaldi-snapshot widevine # Ian Delaney (2015-12-02) # mask revdeps of xen that emply a hypervisor in arch x86 diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask index 8c38a335cfca..63c56855f8f4 100644 --- a/profiles/base/package.use.mask +++ b/profiles/base/package.use.mask @@ -116,6 +116,14 @@ dev-util/meson test # Requires dev-vcs/ghp-import that is masked for removal. www-apps/nikola ghpages +# Ulrich Müller (2020-04-08, 2020-11-21) +# Old versions of libjpeg-turbo have known security issues. +# The version included with >=zoom-5.3 has an empty DT_RPATH, +# which is insecure because the loader will search the working +# directory when it finds an empty path. +# Use the bundled lib on your own risk. Bug #715106. +net-im/zoom bundled-libjpeg-turbo + # Alfredo Tupone (2020-04-04) # Ada support is not yet ready for sys-deve/gcc sys-devel/gcc ada @@ -397,11 +405,6 @@ sci-libs/linux-gpib php # Globally mask pie use flag. Selectively unmask on specific profiles. sys-devel/gcc pie -# Pawel Hajdan jr (2017-03-02) -# Known build issue with system libvpx: -# https://bugs.gentoo.org/show_bug.cgi?id=611394 ->=www-client/chromium-58.0.3026.3 system-libvpx - # Mike Gilbert (2017-02-16) # Multiple test failures. sys-boot/grub:2 test diff --git a/profiles/desc/l10n.desc b/profiles/desc/l10n.desc index d45d7fa984e9..0788287d85c1 100644 --- a/profiles/desc/l10n.desc +++ b/profiles/desc/l10n.desc @@ -90,6 +90,7 @@ fil - Filipino fo - Faroese fr - French fr-CA - French (Canada) +fur - Friulian fy - Western Frisian ga - Irish gd - Scottish Gaelic @@ -201,6 +202,7 @@ sw - Swahili (macrolanguage) sw-TZ - Swahili (Tanzania) syc - Classical Syriac syr - Syriac +szl - Silesian ta - Tamil ta-LK - Tamil (Sri Lanka) te - Telugu @@ -222,6 +224,7 @@ uk - Ukrainian ur - Urdu uz - Uzbek ve - Venda +vec - Venetian vi - Vietnamese vls - Vlaams xh - Xhosa diff --git a/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc b/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc index dad9dcbc5852..ed5226a858d2 100644 --- a/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc +++ b/profiles/features/prefix/standalone/kernel-2.6.16+/profile.bashrc @@ -14,6 +14,12 @@ elif [[ ${CATEGORY}/${PN} == dev-qt/qtcore && ${EBUILD_PHASE} == configure ]]; t elif [[ ${CATEGORY}/${PN} == dev-lang/ocaml && ${EBUILD_PHASE} == configure ]]; then einfo "Removing dup3 and pipe2 definitions..." sed -e '/hasgot dup3/,/^fi/d;/hasgot pipe2/,/^fi/d' -i "${S}"/configure || die +elif [[ ${CATEGORY}/${PN} == sys-apps/util-linux && ${EBUILD_PHASE} == configure ]]; then + einfo "Removing CLOEXEC related functions..." + sed -r -e 's/inotify_init1\(.*\)/inotify_init\(\)/' \ + -e '/open\(/s/\| *O_CLOEXEC//' \ + -e 's/epoll_create1\(EPOLL_CLOEXEC/epoll_create\(1/' \ + -i "${S}"/libmount/src/monitor.c fi # Local Variables: diff --git a/profiles/package.deprecated b/profiles/package.deprecated index a08ef1f2b83a..429d872be612 100644 --- a/profiles/package.deprecated +++ b/profiles/package.deprecated @@ -17,6 +17,10 @@ #--- END OF EXAMPLES --- +# Andreas Sturmlechner (2020-11-20) +# dev-qt/qtwebkit is in the process of being removed, tracker bug #684580 +dev-qt/qtwebkit + # Thomas Deutschmann (2020-09-08) # Dead implementations, please migrate to >=zeromq-4 dev-perl/ZMQ-LibZMQ2 diff --git a/profiles/package.mask b/profiles/package.mask index 5f591fe46568..4b2155b256af 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -32,6 +32,22 @@ #--- END OF EXAMPLES --- +# David Seifert (2020-11-22) +# Upstream abandoned since 2012, tons of QA issues and +# build bugs, esoteric NIH build system. Bug #293567, #670954, +# #697444, #699320, #708058, #746230, Removal in 30 days. +games-emulation/fakenes + +# Joonas Niilola (2020-11-22) +# Abandoned upstream, unbuildable, unkeyworded in ::gentoo. +# Removal in 14 days. Bug #https://bugs.gentoo.org/752456 +app-accessibility/simon + +# Andreas Sturmlechner (2020-11-21) +# Dead upstream, depends on deprecated kde-frameworks/kmediaplayer +# Masked for removal in 30 days. +media-video/kmplayer + # Michał Górny (2020-11-19) # These packages are maintained by the Python project, or have # no maintainer. They have not been ported to Python 3.8 yet. @@ -398,37 +414,6 @@ dev-perl/ZMQ-LibZMQ2 # bug #654244, #740952, #726912, #723060 dev-lang/j -# David Seifert (2020-10-24) -# EAPI 4, broken since 2012, upstream disappeared, multiple QA issues, -# build system is completely broken. Removal in 30 days, -# Bug #625118, #725438, #746029. -sci-electronics/alliance - -# David Seifert (2020-10-24) -# EAPI 4, multiple QA issues, performs dangerous pointer-to-int -# casts, can trash your computer, last release over 10 years ago. -# Removal in 30 days. Bug #124755, #713472, #726020, #740912, #742434. -sys-power/nvram-wakeup - -# David Seifert (2020-10-24) -# EAPI 4, doesn't build, outdated, ebuild has multiple QA issues. -# Removal in 30 days. Bug #463188, #531104, #613116, #740926. -sys-cluster/mvapich2 - -# David Seifert (2020-10-24) -# EAPI 4, fetch restricted, download link disappeared, fails to build. -# Removal in 30 days. Bug #365713, #405277, #405437, #414793, #415699, -# #422799, #479288, #740928. -sys-cluster/maui - -# David Seifert (2020-10-24) -# EAPI 4, abandoned upstream, fails to build, security vulnerabilities. -# .NET is practically abandoned in Gentoo and needs a complete reboot. -# Removal in 30 days. Bug #681194, #722256, #740986, #740988, #740990. -dev-dotnet/gio-sharp -dev-dotnet/ikvm-bin -dev-dotnet/log4net - # Michał Górny (2020-10-24) # Last release in 2004, next release 'Soon(tm)'. Fails to build # due to horrible code hacks. @@ -442,16 +427,6 @@ gnome-base/libbonobo gnome-base/libgnome-keyring gnome-base/orbit -# Andreas Sturmlechner (2020-10-23) -# Depends on deprecated QtWebKit, needs a new maintainer and version bump. -# Bug #688850, security bug #744199. Removal in 30 days. -media-video/shotcut - -# Andreas Sturmlechner (2020-10-23) -# Depends on deprecated QtWebKit with no work towards QtWebEngine port at all. -# Bug #688850. Removal in 30 days. -media-libs/webvfx - # Michał Górny (2020-10-23) # Fails to build. Needs a dedicated maintainer and a version bump. # Removal in 30 days. Bug #635592. @@ -485,12 +460,15 @@ dev-lua/luacrypto # All these ebuilds require slotted Lua, which is still masked. # Ulrich Müller (2020-11-06) # Added sci-visualization/gnuplot. +>=app-benchmarks/sysbench-1.0.20-r100 >=app-benchmarks/wrk-4.1.0-r100 >=app-misc/worker-3.8.3-r100 =dev-libs/efl-1.25.1-r10 >=dev-lua/lua-bit32-5.3.5-r100 >=dev-lua/lua-zlib-1.2-r100 >=dev-lua/luaevent-0.4.6-r100 +>=dev-lua/luasec-0.9-r100 +>=dev-lua/luasocket-3.0_rc1_p20200328-r100 >=dev-lua/luv-1.32.0.0-r100 >=dev-lua/luadbi-0.7.2-r100 >=dev-lua/lutok-0.4-r10 @@ -503,6 +481,7 @@ dev-lua/luacrypto >=games-engines/love-11.3-r100:0 >=mail-filter/imapfilter-2.6.16-r100 >=net-analyzer/suricata-6.0.0-r100 +>=net-im/swift-4.0.2-r100 >=net-p2p/eiskaltdcpp-2.2.10-r100 >=sci-visualization/gnuplot-5.4.0-r100 >=www-apache/mod_security-2.9.3-r100 @@ -543,6 +522,9 @@ net-fs/openafs-kernel =dev-python/pypy3-7.3.2_p37* =dev-python/pypy3-exe-7.3.2_p37* =dev-python/pypy3-exe-bin-7.3.2_p37* +=dev-python/pypy3-7.3.3_p37* +=dev-python/pypy3-exe-7.3.3_p37* +=dev-python/pypy3-exe-bin-7.3.3_p37* # Michał Górny (2020-09-09) # These packages (or package versions) still require Python 2.7. diff --git a/profiles/use.local.desc b/profiles/use.local.desc index e08bbc6c70f3..61c4271f5530 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -283,7 +283,10 @@ app-benchmarks/filebench:auto-completion - Enable command-line autocompletion us app-benchmarks/httperf:idleconn - Build with the idleconn program app-benchmarks/ioping:netdata - Add support for netdata app-benchmarks/ramspeed:pic - Force shared libraries to be built as PIC (this is slower) -app-benchmarks/sysbench:aio - Enable libaio support +app-benchmarks/sysbench:aio - Add support for AIO. +app-benchmarks/sysbench:attachsql - Add support for AttachSQL. +app-benchmarks/sysbench:drizzle - Add support for Drizzles. +app-benchmarks/sysbench:largefile - Add support for large files. app-cdr/brasero:libburn - Enable dev-libs/libburn backend app-cdr/brasero:nautilus - Build the gnome-base/nautilus extension app-cdr/brasero:packagekit - Enable support for the distro-neutral package manager GUI PackageKit @@ -989,11 +992,13 @@ app-office/kmymoney:quotes - Enable Online Stock Quote retrieval app-office/kraft:pim - Enable support for KDE PIM resources integration app-office/libalkimia:webengine - Use dev-qt/qtwebengine for embedded web browser widget app-office/libreoffice:base - Enable full support for LibreOffice Base databases (involves additional bundled libs) +app-office/libreoffice:clang - Use Clang compiler instead of GCC app-office/libreoffice:coinmp - Use sci-libs/coinor-mp as alternative solver app-office/libreoffice:googledrive - Enable support for remote files on Google Drive app-office/libreoffice:mariadb - Prefer mariadb connector over mysql connector app-office/libreoffice:odk - Build the Office Development Kit app-office/libreoffice:pdfimport - Enable PDF import via the Poppler library +app-office/libreoffice:vulkan - Enable Vulkan usage via the skia library (clang recommended) app-office/libreoffice-l10n:offlinehelp - Install help files locally instead of using the LibreOffice Wiki app-office/lyx:aspell - Add support for aspell spellchecking app-office/lyx:dia - Add support for diagrams (app-office/dia) @@ -4354,7 +4359,6 @@ media-libs/vulkan-loader:layers - Include the vulkan layers media-libs/waffle:egl - Enable EGL support media-libs/waffle:gbm - Enable support for the Generic Buffer Manager (gbm) media-libs/waffle:wayland - Enable Wayland support -media-libs/webvfx:doc - Install doxygen developer documentation media-libs/x264:interlaced - enable interlaced encoding support, this can decrease encoding speed by up to 2% media-libs/x264:opencl - Add support for OpenCL. media-libs/x264:pic - disable optimized assembly code that is not PIC friendly @@ -6067,6 +6071,7 @@ net-libs/nghttp2:hpack-tools - Install HPACK (header compression) helper tools net-libs/nghttp2:utils - Install nghttp, nghttpd and nghttpx net-libs/nodejs:inspector - Enable V8 inspector net-libs/nodejs:npm - Enable NPM package manager +net-libs/nodejs:pax_kernel - Enable building under a PaX enabled kernel net-libs/nodejs:snapshot - Enable snapshot creation for faster startup net-libs/nodejs:system-icu - Use system dev-libs/icu instead of the bundled version net-libs/nodejs:system-ssl - Use system OpenSSL instead of the bundled one @@ -7642,6 +7647,7 @@ sys-apps/elfix:ptpax - Enable PT_PAX_FLAGS support. sys-apps/elfix:xtpax - Enable XATTR_PAX_FLAGS support. sys-apps/etckeeper:cron - Install cron script sys-apps/ethtool:netlink - Enable netlink interface via net-libs/libmnl +sys-apps/firejail:X - Enable X11 sandboxing sys-apps/firejail:apparmor - Enable support for custom AppArmor profiles sys-apps/firejail:chroot - Enable chrooting to custom directory sys-apps/firejail:contrib - Install contrib scripts @@ -7651,10 +7657,8 @@ sys-apps/firejail:globalcfg - Enable global config file sys-apps/firejail:network - Enable networking features sys-apps/firejail:overlayfs - Enable overlayfs sys-apps/firejail:private-home - Enable private home feature -sys-apps/firejail:seccomp - Enable system call filtering sys-apps/firejail:userns - Enable attaching a new user namespace to a sandbox (--noroot option) sys-apps/firejail:whitelist - Enable whitelist -sys-apps/firejail:x11 - Enable X11 sandboxing sys-apps/firejail-lts:apparmor - Enable support for custom AppArmor profiles sys-apps/firejail-lts:globalcfg - Enable global config file sys-apps/firejail-lts:network - Enable networking features @@ -8046,16 +8050,11 @@ sys-cluster/lustre:dlc - Enable Dynamic LNET Configuration sys-cluster/lustre:server - Enable kernels server modules sys-cluster/lustre:tests - Enable installation of tests sys-cluster/lustre:utils - Enable lustre utils -sys-cluster/maui:pbs - Enable pbs integration -sys-cluster/maui:slurm - Enable slurm integration sys-cluster/minikube:libvirt - Build plugin for kvm sys-cluster/mpich:mpi-threads - Enable MPI_THREAD_MULTIPLE sys-cluster/mpich:romio - Build the ROMIO MPI-IO component sys-cluster/mpich2:mpi-threads - Enable MPI_THREAD_MULTIPLE sys-cluster/mpich2:romio - Enable romio, a high-performance portable MPI-IO implementation -sys-cluster/mvapich2:large-cluster - Automatically generated description for large-cluster -sys-cluster/mvapich2:medium-cluster - Automatically generated description for medium-cluster -sys-cluster/mvapich2:romio - Automatically generated description for romio sys-cluster/neutron:compute-only - Only install things needed on compute hosts sys-cluster/neutron:dhcp - Installs the initscripts for the neutron dhcp service sys-cluster/neutron:haproxy - haproxy backend support @@ -8557,14 +8556,11 @@ www-client/chromium:hangouts - Enable support for Google Hangouts features such www-client/chromium:headless - Build Ozone only with headless backend, NOT RECOMMENDED for general use. www-client/chromium:js-type-check - Enable JavaScript type-checking for Chrome's web technology-based UI. Requires Java. www-client/chromium:official - Enable Official build instead of Developer build. -www-client/chromium:ozone - Enable Ozone platform abstraction layer with X11 backend. -www-client/chromium:ozone-wayland - Enable Wayland backend for Ozone. www-client/chromium:pic - Disable optimized assembly code that is not PIC friendly www-client/chromium:proprietary-codecs - Enable codecs for patent-encumbered audio and video formats. www-client/chromium:suid - Build the SUID sandbox, which is only needed on CONFIG_USER_NS=n kernels www-client/chromium:system-ffmpeg - Use system ffmpeg instead of the bundled one www-client/chromium:system-icu - Use system icu instead of the bundled one -www-client/chromium:system-libvpx - Use system libvpx instead of the bundled one www-client/chromium:tcmalloc - Use bundled tcmalloc instead of system malloc www-client/chromium:widevine - Unsupported closed-source DRM capability (required by Netflix VOD) www-client/dillo:xembed - Enable X11 XEmbed support @@ -8626,6 +8622,8 @@ www-client/uget:aria2 - Enable support for net-misc/aria2 through xmlrpc. You'll www-client/uget:control-socket - Enable JSON-RPC over unix domain socket www-client/uget:openssl - Use dev-libs/openssl instead of net-libs/gnutls www-client/uget:rss - Enable uGet feed messages +www-client/vivaldi-snapshot:proprietary-codecs - Use system media-video/ffmpeg to support patent-encumbered media codecs +www-client/vivaldi-snapshot:widevine - Unsupported closed-source DRM capability (required by Netflix VOD) www-client/w3m:gdk-pixbuf - Enable support for x11-libs/gdk-pixbuf www-client/w3m:lynxkeymap - If you prefer Lynx-like key binding www-misc/litmus:libproxy - Support for automatic proxy configuratino management through net-libs/libproxy. diff --git a/sci-calculators/Manifest.gz b/sci-calculators/Manifest.gz index a390026fd237..d44a604b5bc7 100644 Binary files a/sci-calculators/Manifest.gz and b/sci-calculators/Manifest.gz differ diff --git a/sci-calculators/galculator/files/galculator-2.1.4-fno-common.patch b/sci-calculators/galculator/files/galculator-2.1.4-fno-common.patch new file mode 100644 index 000000000000..32fa609d19c9 --- /dev/null +++ b/sci-calculators/galculator/files/galculator-2.1.4-fno-common.patch @@ -0,0 +1,27 @@ +From 501a9e3feeb2e56889c0ff98ab6d0ab20348ccd6 Mon Sep 17 00:00:00 2001 +From: Kentaro Hayashi +Date: Sat, 1 Aug 2020 22:25:37 +0900 +Subject: [PATCH] Fix multiple definition of `prefs` compile error with GCC-10 + +This commit fixes the following error: + + libtool: link: gcc -pthread -I/usr/include/gtk-3.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/at-spi-2.0 -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/gtk-3.0 -I/usr/include/gio-unix-2.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/fribidi -I/usr/include/harfbuzz -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -g -O2 -fdebug-prefix-map=/workspace/galculator-2.1.4=. -fstack-protector-strong -Wformat -Werror=format-security -Wall -Wl,-z -Wl,relro -o galculator galculator-main.o galculator-math_functions.o galculator-display.o galculator-general_functions.o galculator-calc_basic.o galculator-config_file.o galculator-callbacks.o galculator-ui.o galculator-flex_parser.o -Wl,--export-dynamic -Wl,--as-needed -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lm -lquadmath -pthread +/usr/bin/ld: galculator-config_file.o:./src/config_file.c:42: multiple definition of `prefs'; galculator-main.o:./src/main.c:52: first defined here + collect2: error: ld returned 1 exit status +--- + src/main.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/main.c b/src/main.c +index 10d0868..d22fea0 100644 +--- a/src/main.c ++++ b/src/main.c +@@ -49,7 +49,7 @@ + + #define MASK_NUMLOCK GDK_MOD2_MASK + +-s_preferences prefs; ++extern s_preferences prefs; + s_current_status current_status = {0, 0, 0, 0, FALSE, FALSE, TRUE}; + s_array memory; + s_constant *constant; diff --git a/sci-calculators/galculator/galculator-2.1.4-r1.ebuild b/sci-calculators/galculator/galculator-2.1.4-r1.ebuild new file mode 100644 index 000000000000..6a7c796d3cfa --- /dev/null +++ b/sci-calculators/galculator/galculator-2.1.4-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit xdg + +DESCRIPTION="GTK+ based algebraic and RPN calculator" +HOMEPAGE="http://galculator.mnim.org/" +SRC_URI="http://galculator.mnim.org/downloads/${P}.tar.bz2" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" + +RDEPEND=" + dev-libs/glib:2 + x11-libs/gtk+:3 + x11-libs/pango" +DEPEND="${RDEPEND}" +BDEPEND=" + dev-util/intltool + sys-devel/flex + sys-devel/gettext + virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${P}-fno-common.patch ) + +src_prepare() { + default + + # bug 566290 + echo "src/flex_parser.c" >> po/POTFILES.skip || die +} + +src_install() { + default + dodoc doc/shortcuts +} diff --git a/sci-chemistry/Manifest.gz b/sci-chemistry/Manifest.gz index bc1b4f63d7ff..164880108d31 100644 Binary files a/sci-chemistry/Manifest.gz and b/sci-chemistry/Manifest.gz differ diff --git a/sci-chemistry/mopac7/files/Makefile b/sci-chemistry/mopac7/files/Makefile index 50370b3c2784..bcada8b0a889 100644 --- a/sci-chemistry/mopac7/files/Makefile +++ b/sci-chemistry/mopac7/files/Makefile @@ -16,8 +16,3 @@ clean: libgmxmopac7: $(objects) $(FC) -shared $(LDFLAGS) -Wl,-soname,libgmxmopac7.so.$(MAJOR) -o $@.so.$(VERSION) $^ $(LIBS) ln -sf $@.so.$(VERSION) libgmxmopac7.so - -static: $(objects) - ar rcv libgmxmopac7.a *.o - ranlib libgmxmopac7.a - diff --git a/sci-chemistry/procheck/procheck-3.5.4-r3.ebuild b/sci-chemistry/procheck/procheck-3.5.4-r3.ebuild index cc536d671b84..1a700ee4110f 100644 --- a/sci-chemistry/procheck/procheck-3.5.4-r3.ebuild +++ b/sci-chemistry/procheck/procheck-3.5.4-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,7 +6,7 @@ EAPI=6 inherit fortran-2 multilib toolchain-funcs versionator DESCRIPTION="Checks the stereochemical quality of a protein structure" -HOMEPAGE="http://www.biochem.ucl.ac.uk/~roman/procheck/procheck.html" +HOMEPAGE="https://www.ebi.ac.uk/thornton-srv/software/PROCHECK" SRC_URI=" ${P}.tar.gz ${P}-README doc? ( ${P}-manual.tar.gz )" @@ -24,7 +24,7 @@ RESTRICT="fetch" S="${WORKDIR}/${PN}" pkg_nofetch() { - elog "Please visit http://www.ebi.ac.uk/thornton-srv/software/PROCHECK/download.html" + elog "Please visit https://www.ebi.ac.uk/thornton-srv/software/PROCHECK/download.html" elog "and follow the instruction for downloading." elog "Files should be renamed in the following way before being copied to your" elog "DISTDIR directory:" diff --git a/sci-electronics/Manifest.gz b/sci-electronics/Manifest.gz index d87ee19cab50..b9465df5d3a8 100644 Binary files a/sci-electronics/Manifest.gz and b/sci-electronics/Manifest.gz differ diff --git a/sci-electronics/alliance/Manifest b/sci-electronics/alliance/Manifest deleted file mode 100644 index 1e44e70d2d2a..000000000000 --- a/sci-electronics/alliance/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST alliance-5.0-20110203.tar.gz 8112254 BLAKE2B 77c81348f432f2b424c2cff3ff188bec72e9ba77777bb31a91a6b9d63ec3b0a61848f4dd2246ddcfdf0bf4199423ffedcc62ac6beac8ca52ece345ce6ebb4f05 SHA512 03859d4d5167c223c2af9784843303a46d9a47e7fb26c2dadd60361b6735f6afb75c3097460dd804ef339c72f2bf0f60e78713be88d2c5ad06ad8b0c376857c8 diff --git a/sci-electronics/alliance/alliance-5.0.20110203.ebuild b/sci-electronics/alliance/alliance-5.0.20110203.ebuild deleted file mode 100644 index aa8045c61de5..000000000000 --- a/sci-electronics/alliance/alliance-5.0.20110203.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit versionator flag-o-matic eutils - -MY_PV=$(replace_version_separator 2 '-' ) -UPSTREAM_VERSION=$(get_version_component_range 1-2) -URL="http://www-asim.lip6.fr/pub/alliance/distribution/${UPSTREAM_VERSION}" - -DESCRIPTION="Digital IC design tools (simulation, synthesis, place/route, etc...)" -HOMEPAGE="https://soc-extras.lip6.fr/en/alliance-abstract-en/" -SRC_URI="${URL}/${PN}-${MY_PV}.tar.gz" - -LICENSE="GPL-2 LGPL-2" - -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=">=x11-libs/motif-2.3:0 - x11-libs/libXpm - x11-libs/libXt" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}-${UPSTREAM_VERSION}" - -src_prepare() { - #fix buffer overrun (bug 340789) - epatch \ - "${FILESDIR}"/${PN}-${UPSTREAM_VERSION}.20070718-overun.patch \ - "${FILESDIR}"/${P}-impl-dec.patch -} - -src_configure() { - # Fix bug #134285 - replace-flags -O3 -O2 - - # Alliance requires everything to be in the same directory - econf \ - --prefix=/usr/lib/${PN} \ - --mandir=/usr/lib/${PN}/man \ - --with-x \ - --with-motif \ - --with-xpm \ - --with-alc-shared -} - -src_compile() { - # See bug #134145 - emake -j1 -} - -src_install() { - make install DESTDIR="${D}" - insinto /etc - newins distrib/etc/alc_env.sh alliance.env -} - -pkg_postinst() { - elog "Users should source /etc/alliance.env before working with Alliance tools." -} diff --git a/sci-electronics/alliance/files/alliance-5.0.20070718-overun.patch b/sci-electronics/alliance/files/alliance-5.0.20070718-overun.patch deleted file mode 100644 index 50cfc30be23f..000000000000 --- a/sci-electronics/alliance/files/alliance-5.0.20070718-overun.patch +++ /dev/null @@ -1,12 +0,0 @@ -# fix buffer overun (bug 340789) ---- druc/src/drucbath.c.orig 2010-10-15 14:15:52.000000000 +0000 -+++ druc/src/drucbath.c 2010-10-15 14:19:03.000000000 +0000 -@@ -66,7 +66,7 @@ - rdsins_list *InstanceCourante; - char *TmpErrorFileName; - FILE *TmpErrorFile; --char DrucTmpFileBuffer [ DRUC_MAX_STRING_BUFFER + 1 ]; -+char DrucTmpFileBuffer [ DRUC_MAX_FILE_BUFFER + 1 ]; - - fputs ( "\n" , - DrucErrorFile diff --git a/sci-electronics/alliance/files/alliance-5.0.20110203-impl-dec.patch b/sci-electronics/alliance/files/alliance-5.0.20110203-impl-dec.patch deleted file mode 100644 index c1ef31619167..000000000000 --- a/sci-electronics/alliance/files/alliance-5.0.20110203-impl-dec.patch +++ /dev/null @@ -1,119 +0,0 @@ - dreal/src/GRD_error.c | 1 + - lynx/src/cutelbow.c | 1 + - lynx/src/parse.c | 1 + - mips_asm/src/mips_util.c | 1 + - proof/src/proof_main.c | 1 + - proof/src/proof_util.c | 1 + - xfsm/src/XFS_error.c | 1 + - xgra/src/XGR_error.c | 1 + - xsch/src/XSC_error.c | 1 + - 9 files changed, 9 insertions(+), 0 deletions(-) - -diff --git a/dreal/src/GRD_error.c b/dreal/src/GRD_error.c -index e3baba6..c00bf13 100644 ---- a/dreal/src/GRD_error.c -+++ b/dreal/src/GRD_error.c -@@ -46,6 +46,7 @@ - # include - # include - # include -+# include - # include "mut.h" - # include "mph.h" - # include "rds.h" -diff --git a/lynx/src/cutelbow.c b/lynx/src/cutelbow.c -index 7411f35..306649b 100644 ---- a/lynx/src/cutelbow.c -+++ b/lynx/src/cutelbow.c -@@ -43,6 +43,7 @@ - \------------------------------------------------------------*/ - - # include -+# include - - # include "mut.h" - # include "mlo.h" -diff --git a/lynx/src/parse.c b/lynx/src/parse.c -index ed8a2e5..9077c3f 100644 ---- a/lynx/src/parse.c -+++ b/lynx/src/parse.c -@@ -43,6 +43,7 @@ - \------------------------------------------------------------*/ - - # include -+# include - - # include "mut.h" - # include "mlo.h" -diff --git a/mips_asm/src/mips_util.c b/mips_asm/src/mips_util.c -index f5fa55f..5ad6a4f 100644 ---- a/mips_asm/src/mips_util.c -+++ b/mips_asm/src/mips_util.c -@@ -30,6 +30,7 @@ - /* ###--------------------------------------------------------------### */ - - #include -+#include - #include "mut.h" - #include "log.h" - #include "beh.h" -diff --git a/proof/src/proof_main.c b/proof/src/proof_main.c -index b6eee94..3d8a91a 100644 ---- a/proof/src/proof_main.c -+++ b/proof/src/proof_main.c -@@ -32,6 +32,7 @@ - - #include - #include -+#include - #include "mut.h" - #include "log.h" - #include "beh.h" -diff --git a/proof/src/proof_util.c b/proof/src/proof_util.c -index 841937f..fa20ba1 100644 ---- a/proof/src/proof_util.c -+++ b/proof/src/proof_util.c -@@ -31,6 +31,7 @@ - - #include - #include -+#include - - #include "mut.h" - #include "log.h" -diff --git a/xfsm/src/XFS_error.c b/xfsm/src/XFS_error.c -index 20ccd0a..5aded2b 100644 ---- a/xfsm/src/XFS_error.c -+++ b/xfsm/src/XFS_error.c -@@ -46,6 +46,7 @@ - # include - # include - # include -+# include - # include "mut.h" - # include "aut.h" - # include "abl.h" -diff --git a/xgra/src/XGR_error.c b/xgra/src/XGR_error.c -index 3204423..b2d35c5 100644 ---- a/xgra/src/XGR_error.c -+++ b/xgra/src/XGR_error.c -@@ -46,6 +46,7 @@ - # include - # include - # include -+# include - # include "mut.h" - # include "aut.h" - # include "XSB.h" -diff --git a/xsch/src/XSC_error.c b/xsch/src/XSC_error.c -index 9bdf65e..b8c5689 100644 ---- a/xsch/src/XSC_error.c -+++ b/xsch/src/XSC_error.c -@@ -46,6 +46,7 @@ - # include - # include - # include -+# include - # include "mut.h" - # include "aut.h" - # include "mlo.h" diff --git a/sci-electronics/alliance/metadata.xml b/sci-electronics/alliance/metadata.xml deleted file mode 100644 index 72c53d956621..000000000000 --- a/sci-electronics/alliance/metadata.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - sci-electronics@gentoo.org - Gentoo Electronics Project - - - Alliance is a complete set of free CAD tools and portable libraries for VLSI - design. It includes a VHDL compiler and simulator, logic synthesis tools, and - automatic place and route tools. A complete set of portable CMOS libraries is - provided. Alliance is the result of a twelve year effort spent at ASIM - department of LIP6 laboratory of the Pierre et Marie Curie University (Paris - VI, France). Alliance has been used for research projects such as the 875 000 - transistors StaCS superscalar microprocessor and 400 000 transistors IEEE - Gigabit HSL Router. - - diff --git a/sci-geosciences/Manifest.gz b/sci-geosciences/Manifest.gz index 0f553929d265..c095b4a0ca6e 100644 Binary files a/sci-geosciences/Manifest.gz and b/sci-geosciences/Manifest.gz differ diff --git a/sci-geosciences/qgis/Manifest b/sci-geosciences/qgis/Manifest index 93502ed33773..d86c91000ad6 100644 --- a/sci-geosciences/qgis/Manifest +++ b/sci-geosciences/qgis/Manifest @@ -1,2 +1,3 @@ DIST qgis-3.16.0.tar.bz2 113238659 BLAKE2B 42bdf8d0d69b28c20aa0decd79883c3b83d2ff9aa9d7633866b6c7d624ad20cb602beeca0e22585077c3d0ceba791e51b81ba221bc305c9bd2ebff71a4ea4bd4 SHA512 c87959a6412f85b6e4d30d4677e0e0914fd9a1009348c8bfe6063d7e1a9416f0a33ae63ded15273d8edde26ae0e6c32ba4d62d83c33c2c6251c444360dc47d10 +DIST qgis-3.16.1.tar.bz2 113943328 BLAKE2B 0c0f9c0a038e87d7f16e66a00cd6844db27b9238ef4f42cf2504a5e498843d4f93bde42542cf7bedcc7f58303daa4fdc7d9cb9e1954958a0de29e294e502a461 SHA512 2df53731468b734c95ad32cd8ecc930dd113b1084c4d3971aba2aaf58b473dc8e0dd204d979b74ee79d443cd95e4f91c51d071eb645254142a76d7a4d0bc3dc8 DIST qgis_sample_data-2.8.14.tar.gz 22119181 BLAKE2B 2d0565e91ec8119382bc9ab8e262dc04227fe8289146794891759ff5a32012245270614ba1119a6329fc45cf56852830c2079589309aa3467873f71f5c608eac SHA512 6b2653d5b57ffc2c2317639dac212429840984ac917ca3e452b39aabb99ea106d1a77c1c1dd967244ef16ede9deae751b170affdf08b72239eafed5b8977da3d diff --git a/sci-geosciences/qgis/files/qgis-9999-default-qmldir.patch b/sci-geosciences/qgis/files/qgis-3.16.1-default-qmldir.patch similarity index 68% rename from sci-geosciences/qgis/files/qgis-9999-default-qmldir.patch rename to sci-geosciences/qgis/files/qgis-3.16.1-default-qmldir.patch index afcaa693cedf..9a57d45984e2 100644 --- a/sci-geosciences/qgis/files/qgis-9999-default-qmldir.patch +++ b/sci-geosciences/qgis/files/qgis-3.16.1-default-qmldir.patch @@ -1,17 +1,18 @@ -From 9d095f7d502cbcea8c70c127be322568b71f6663 Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner -Date: Sun, 28 Apr 2019 12:41:51 +0200 +From ad432e066fcc3d985fb5a451ad128cdf35c1dad9 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Fri, 20 Nov 2020 20:41:36 +0100 Subject: [PATCH] cmake: Fix DEFAULT_QML_DIR path to comply with LFS layout +Signed-off-by: Andreas Sturmlechner --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt -index 4626042ca4..fe93ff3c4f 100644 +index 61b4c863d0..e7d0bdc8d3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -660,7 +660,7 @@ IF (WITH_CORE) +@@ -750,7 +750,7 @@ if (WITH_CORE) set (DEFAULT_LIBEXEC_SUBDIR lib${LIB_SUFFIX}/qgis) set (DEFAULT_PLUGIN_SUBDIR lib${LIB_SUFFIX}/qgis/plugins) set (DEFAULT_INCLUDE_SUBDIR include/qgis) @@ -21,5 +22,5 @@ index 4626042ca4..fe93ff3c4f 100644 set (DEFAULT_SERVER_MODULE_SUBDIR ${DEFAULT_LIBEXEC_SUBDIR}/server) endif() -- -2.21.0 +2.29.2 diff --git a/sci-geosciences/qgis/files/qgis-9999-featuresummary.patch b/sci-geosciences/qgis/files/qgis-3.16.1-featuresummary.patch similarity index 60% rename from sci-geosciences/qgis/files/qgis-9999-featuresummary.patch rename to sci-geosciences/qgis/files/qgis-3.16.1-featuresummary.patch index 8fa7ab0e8428..b1098175647c 100644 --- a/sci-geosciences/qgis/files/qgis-9999-featuresummary.patch +++ b/sci-geosciences/qgis/files/qgis-3.16.1-featuresummary.patch @@ -1,18 +1,19 @@ -From 0744b51784b779eab4bb2e78ed084d31258b5b4d Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner -Date: Sun, 28 Apr 2019 00:10:21 +0200 +From f0fd6e80ad034cf7c49f4ba3708819424b6857b2 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Fri, 20 Nov 2020 20:41:06 +0100 Subject: [PATCH] cmake: Use FeatureSummary +Signed-off-by: Andreas Sturmlechner --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt -index 4dff8ea0f4..4626042ca4 100644 +index f581b2c889..61b4c863d0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -71,6 +71,8 @@ IF(NOT MSVC) - endif(USE_CCACHE) +@@ -111,6 +111,8 @@ if (FORCE_STATIC_PROVIDERS) + set (HAVE_STATIC_PROVIDERS TRUE) endif() +include(FeatureSummary) @@ -20,12 +21,12 @@ index 4dff8ea0f4..4626042ca4 100644 # in generated makefiles use relative paths so the project dir is moveable # Note commented out since it cause problems but it would be nice to resolve these and enable # -@@ -937,3 +939,5 @@ ENDIF (WITH_CORE) +@@ -1035,3 +1037,5 @@ endif() if (UNIX AND NOT APPLE) add_subdirectory(linux) endif() + +FEATURE_SUMMARY(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) -- -2.21.0 +2.29.2 diff --git a/sci-geosciences/qgis/qgis-3.16.1.ebuild b/sci-geosciences/qgis/qgis-3.16.1.ebuild new file mode 100644 index 000000000000..54158d96a48a --- /dev/null +++ b/sci-geosciences/qgis/qgis-3.16.1.ebuild @@ -0,0 +1,206 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7,8,9} ) +PYTHON_REQ_USE="sqlite" + +if [[ ${PV} = *9999 ]]; then + EGIT_REPO_URI="https://github.com/${PN}/${PN^^}.git" + inherit git-r3 +else + SRC_URI="https://qgis.org/downloads/${P}.tar.bz2 + examples? ( https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> qgis_sample_data-2.8.14.tar.gz )" + KEYWORDS="~amd64 ~x86" +fi +inherit cmake desktop python-single-r1 qmake-utils xdg + +DESCRIPTION="User friendly Geographic Information System" +HOMEPAGE="https://www.qgis.org/en/site/" + +LICENSE="GPL-2+ GPL-3+" +SLOT="0" +IUSE="3d examples georeferencer grass hdf5 mapserver netcdf opencl oracle polar postgres python qml" + +REQUIRED_USE="${PYTHON_REQUIRED_USE} mapserver? ( python )" + +BDEPEND="${PYTHON_DEPS} + dev-qt/linguist-tools:5 + sys-devel/bison + sys-devel/flex +" +COMMON_DEPEND=" + >=app-crypt/qca-2.3.0:2[ssl] + >=dev-db/spatialite-4.2.0 + dev-db/sqlite:3 + dev-libs/expat + dev-libs/libzip:= + dev-libs/protobuf:= + dev-libs/qtkeychain:= + dev-qt/designer:5 + dev-qt/qtconcurrent:5 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5[ssl] + dev-qt/qtpositioning:5 + dev-qt/qtprintsupport:5 + dev-qt/qtserialport:5 + dev-qt/qtsql:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + media-gfx/exiv2:= + >=sci-libs/gdal-3.0.4:=[geos] + sci-libs/geos + sci-libs/libspatialindex:= + >=sci-libs/proj-6.3.1:= + sys-libs/zlib + >=x11-libs/qscintilla-2.10.3:= + >=x11-libs/qwt-6.1.3-r2:6=[svg] + 3d? ( dev-qt/qt3d:5 ) + georeferencer? ( sci-libs/gsl:= ) + grass? ( =sci-geosciences/grass-7*:= ) + hdf5? ( sci-libs/hdf5:= ) + mapserver? ( dev-libs/fcgi ) + netcdf? ( sci-libs/netcdf:= ) + opencl? ( virtual/opencl ) + oracle? ( + dev-db/oracle-instantclient:= + sci-libs/gdal:=[oracle] + ) + polar? ( >=x11-libs/qwtpolar-1.1.1-r2 ) + postgres? ( dev-db/postgresql:= ) + python? ( + ${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/httplib2[${PYTHON_MULTI_USEDEP}] + dev-python/jinja[${PYTHON_MULTI_USEDEP}] + dev-python/markupsafe[${PYTHON_MULTI_USEDEP}] + dev-python/owslib[${PYTHON_MULTI_USEDEP}] + dev-python/pygments[${PYTHON_MULTI_USEDEP}] + dev-python/PyQt5[designer,gui,network,printsupport,sql,svg,${PYTHON_MULTI_USEDEP}] + dev-python/python-dateutil[${PYTHON_MULTI_USEDEP}] + dev-python/pytz[${PYTHON_MULTI_USEDEP}] + dev-python/pyyaml[${PYTHON_MULTI_USEDEP}] + >=dev-python/qscintilla-python-2.10.3[${PYTHON_MULTI_USEDEP}] + dev-python/requests[${PYTHON_MULTI_USEDEP}] + dev-python/sip:=[${PYTHON_MULTI_USEDEP}] + dev-python/six[${PYTHON_MULTI_USEDEP}] + >=sci-libs/gdal-2.2.3[python,${PYTHON_MULTI_USEDEP}] + postgres? ( dev-python/psycopg:2[${PYTHON_MULTI_USEDEP}] ) + ') + ) + qml? ( dev-qt/qtdeclarative:5 ) +" +DEPEND="${COMMON_DEPEND} + dev-qt/qttest:5 +" +RDEPEND="${COMMON_DEPEND} + sci-geosciences/gpsbabel +" + +# Disabling test suite because upstream disallow running from install path +RESTRICT="test" + +PATCHES=( + # git master + "${FILESDIR}/${PN}-3.16.0-cmake-lib-suffix.patch" + # TODO upstream + "${FILESDIR}/${P}-featuresummary.patch" + "${FILESDIR}/${P}-default-qmldir.patch" +) + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_prepare() { + cmake_src_prepare + sed -e "/QtWebKit.*.py/d" \ + -i python/PyQt/CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + -DQGIS_MANUAL_SUBDIR=share/man/ + -DQGIS_LIB_SUBDIR=$(get_libdir) + -DQGIS_PLUGIN_SUBDIR=$(get_libdir)/qgis + -DQWT_INCLUDE_DIR=/usr/include/qwt6 + -DQWT_LIBRARY=/usr/$(get_libdir)/libqwt6-qt5.so + -DPEDANTIC=OFF + -DUSE_CCACHE=OFF + -DWITH_ANALYSIS=ON + -DWITH_APIDOC=OFF + -DWITH_GUI=ON + -DWITH_INTERNAL_MDAL=ON # not packaged, bug 684538 + -DWITH_QSPATIALITE=ON + -DENABLE_TESTS=OFF + -DWITH_3D=$(usex 3d) + -DWITH_GEOREFERENCER=$(usex georeferencer) + -DWITH_GRASS7=$(usex grass) + $(cmake_use_find_package hdf5 HDF5) + -DWITH_SERVER=$(usex mapserver) + $(cmake_use_find_package netcdf NetCDF) + -DUSE_OPENCL=$(usex opencl) + -DWITH_ORACLE=$(usex oracle) + -DWITH_QWTPOLAR=$(usex polar) + -DWITH_POSTGRESQL=$(usex postgres) + -DWITH_BINDINGS=$(usex python) + -DWITH_CUSTOM_WIDGETS=$(usex python) + -DWITH_QUICK=$(usex qml) + -DWITH_QTWEBKIT=OFF + ) + + if use grass; then + mycmakeargs+=( + -DGRASS_PREFIX7=/usr/$(get_libdir)/grass70 + ) + fi + + use python && mycmakeargs+=( -DBINDINGS_GLOBAL_INSTALL=ON ) || + mycmakeargs+=( -DWITH_QGIS_PROCESS=OFF ) # FIXME upstream issue #39973 + + # bugs 612956, 648726 + addpredict /dev/dri/renderD128 + addpredict /dev/dri/renderD129 + + cmake_src_configure +} + +src_install() { + cmake_src_install + + insinto /usr/share/mime/packages + doins debian/qgis.xml + + if use examples; then + docinto examples + dodoc -r "${WORKDIR}"/qgis_sample_data/. + docompress -x /usr/share/doc/${PF}/examples + fi + + if use python; then + python_optimize + python_optimize "${ED}"/usr/share/qgis/python + fi + + if use grass; then + python_fix_shebang "${ED}"/usr/share/qgis/grass/scripts + fi +} + +pkg_postinst() { + if use postgres; then + elog "If you don't intend to use an external PostGIS server" + elog "you should install:" + elog " dev-db/postgis" + elif use python; then + elog "Support of PostgreSQL is disabled." + elog "But some installed python-plugins import the psycopg2 module." + elog "If you do not need these plugins just disable them" + elog "in the Plugins menu, else you need to set USE=\"postgres\"" + fi + + xdg_pkg_postinst +} diff --git a/sci-geosciences/qgis/qgis-9999.ebuild b/sci-geosciences/qgis/qgis-9999.ebuild index 3f589eac32d7..e895dc655819 100644 --- a/sci-geosciences/qgis/qgis-9999.ebuild +++ b/sci-geosciences/qgis/qgis-9999.ebuild @@ -107,8 +107,8 @@ PATCHES=( # git master "${FILESDIR}/${PN}-3.16.0-cmake-lib-suffix.patch" # TODO upstream - "${FILESDIR}/${PN}-9999-featuresummary.patch" - "${FILESDIR}/${PN}-9999-default-qmldir.patch" + "${FILESDIR}/${PN}-3.16.1-featuresummary.patch" + "${FILESDIR}/${PN}-3.16.1-default-qmldir.patch" ) pkg_setup() { diff --git a/sci-libs/Manifest.gz b/sci-libs/Manifest.gz index dae04d6ff1e7..92cc7f1b0806 100644 Binary files a/sci-libs/Manifest.gz and b/sci-libs/Manifest.gz differ diff --git a/sci-libs/mpfi/Manifest b/sci-libs/mpfi/Manifest index e8c03ff1f9a6..6e2dfd16d376 100644 --- a/sci-libs/mpfi/Manifest +++ b/sci-libs/mpfi/Manifest @@ -1 +1,2 @@ DIST mpfi-1.5.3.tar.bz2 447256 BLAKE2B 67bb9af362ec96c015571cbdaba09befc2241e0113b6177dd76eec97b619bbf9c924ba4d16583df664cafdb1a78c8700712e30633e91e5ae6f1d5e084c3ede5c SHA512 9c3cdf665fccff8b383c96827f4acb7aa62efdf7854cff271455273f00f8e7ecf84fbe191b02e5f51fe067aaae564fd2a0add062070ff5c1f542d61a021f967d +DIST mpfi-1.5.4.tgz 261696 BLAKE2B 264453870fbf18afc0876eef72a3fc9690e9eee1da5179831a24409159abe75b88dc373e2d20b8171c846e870ded876715b2c9034ab4f0d0f0ff10e34abd099d SHA512 72ba7d8c950f4d4e2c7a3da8570cdcec08f75b73580cdf64c4cc3b24f8add23c46ccf78a6de2158e81bd77e6efabceebbae418988d536e7484356b8102e10ce1 diff --git a/sci-libs/mpfi/mpfi-1.5.4.ebuild b/sci-libs/mpfi/mpfi-1.5.4.ebuild new file mode 100644 index 000000000000..7c513767c675 --- /dev/null +++ b/sci-libs/mpfi/mpfi-1.5.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Multiple precision interval arithmetic library based on MPFR" +HOMEPAGE="http://perso.ens-lyon.fr/nathalie.revol/software.html" +SRC_URI="https://gforge.inria.fr/frs/download.php/file/38111/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" + +DEPEND=" + dev-libs/gmp:0= + dev-libs/mpfr:0=" +RDEPEND="${DEPEND}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf --disable-static +} + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} diff --git a/sci-mathematics/Manifest.gz b/sci-mathematics/Manifest.gz index 40f2bcefa64e..d3f74aba2e15 100644 Binary files a/sci-mathematics/Manifest.gz and b/sci-mathematics/Manifest.gz differ diff --git a/sci-mathematics/cgal/Manifest b/sci-mathematics/cgal/Manifest index 249dc57f583b..a8c424b9974f 100644 --- a/sci-mathematics/cgal/Manifest +++ b/sci-mathematics/cgal/Manifest @@ -1,2 +1,4 @@ DIST CGAL-4.11.3-doc_html.tar.xz 30576756 BLAKE2B 6d32f3bca1c5aee4ed09eb96a35113a8a71bf14679e204683268ccee56f4a4799ef696bebd5ec0fd6add964e23273efc87167c122a5dc781c9cc7b2f5b938c29 SHA512 a729bea11a9b853a8197cc7ebb089005f98868e393e91142946d45a485e2e9ac9eacce1b230d91240080033b5c31bfd0195820ee5ae7f621bdd75f1abf19244f DIST CGAL-4.11.3.tar.xz 14657412 BLAKE2B a10457d255fcdd822f90419ff6af5389c50e88b254ed7f37471e24bb8523732b5aa6bd1ee5e67f14fcf0d8e79abf86e798ddeb3e0ce965dc2cde5667377bf5e0 SHA512 44cdd5fb313841d208ffeb9a96aa8db5111defd581b749c80f655390b5468f7c18b61df0ac2bdeb5259507341cc451fcd8cd50f7ff0571efdcb76eb920f92f7e +DIST CGAL-5.1-doc_html.tar.xz 50630976 BLAKE2B 559287263b189ec5ac4a0b3445e1cc5862471285f28caca40f48b25b64eaef3426c42a178e4cb4db69a1e324963a9af665e84ca8f44da8b55ebb344f18f56fdc SHA512 ada944d73d3e6465a14d87ee87d1cabaee2c4848622b5360c14d6a9b5ff5ba3e19859943ecb7595b0dec7e950f214aa47b6ab389c23dd5f2794fc21a9e3a17db +DIST CGAL-5.1.tar.xz 22850692 BLAKE2B 42320e07e222c3f69febe7dc478c74ef6cde0de723ea2d84c891b6e598d02c38026e9246edd467cadea8d66e527000a9b4af296ab026dd42c7876acea9824ccb SHA512 41085eeb113cec0eede2e21df05c9d2530db5988b4f9d0379f8de7c655cab09266620eebe017e0141c0ccdbcbafe8c074fd5bec46a40aaba95aa7521732e4423 diff --git a/sci-mathematics/cgal/cgal-5.1.ebuild b/sci-mathematics/cgal/cgal-5.1.ebuild new file mode 100644 index 000000000000..4dde3874c447 --- /dev/null +++ b/sci-mathematics/cgal/cgal-5.1.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +MY_P=CGAL-${PV} + +DESCRIPTION="C++ library for geometric algorithms and data structures" +HOMEPAGE="https://www.cgal.org/" +SRC_URI=" + https://github.com/CGAL/cgal/releases/download/v${PV}/${MY_P}.tar.xz + doc? ( https://github.com/CGAL/cgal/releases/download/v${PV}/${MY_P}-doc_html.tar.xz )" + +S="${WORKDIR}/${MY_P}" + +LICENSE="LGPL-3 GPL-3 Boost-1.0" +SLOT="0/14" +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples +gmp mpfi ntl qt5" + +RDEPEND=" + dev-cpp/eigen + dev-libs/boost:=[threads] + dev-libs/mpfr:= + sys-libs/zlib + x11-libs/libX11:= + virtual/glu:= + virtual/opengl:= + gmp? ( dev-libs/gmp:=[cxx] ) + mpfi? ( sci-libs/mpfi ) + ntl? ( dev-libs/ntl ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtopengl:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + app-arch/xz-utils + virtual/pkgconfig +" + +PATCHES=( "${FILESDIR}"/${PN}-4.11.1-fix-buildsystem.patch ) + +src_prepare() { + cmake_src_prepare + # modules provided by dev-cpp/eigen + rm cmake/modules/FindEigen3.cmake || die +} + +src_configure() { + local mycmakeargs=( + -DCGAL_INSTALL_LIB_DIR="$(get_libdir)" + -DCGAL_INSTALL_CMAKE_DIR="$(get_libdir)/cmake/CGAL" + -DCGAL_HEADER_ONLY=OFF + -DWITH_LEDA=OFF + -DWITH_Eigen3=ON + -DWITH_ZLIB=ON + -DWITH_GMP=$(usex gmp) + -DWITH_GMPXX=$(usex gmp) + -DWITH_MPFI=$(usex mpfi) + -DWITH_NTL=$(usex ntl) + -DWITH_CGAL_Qt5=$(usex qt5) + ) + cmake_src_configure +} + +src_install() { + use doc && local HTML_DOCS=( "${WORKDIR}"/doc_html/. ) + cmake_src_install + if use examples; then + dodoc -r examples demo + fi +} diff --git a/sci-mathematics/cgal/metadata.xml b/sci-mathematics/cgal/metadata.xml index ec85a1dbc69a..d26f70426b39 100644 --- a/sci-mathematics/cgal/metadata.xml +++ b/sci-mathematics/cgal/metadata.xml @@ -5,6 +5,14 @@ sci-mathematics@gentoo.org Gentoo Mathematics Project + + gentoo@aisha.cc + Aisha Tammy + + + proxy-maint@gentoo.org + Proxy Maintainers + The Computational Geometry Algorithms Library is a collaborative open source library containing: diff --git a/sys-apps/Manifest.gz b/sys-apps/Manifest.gz index 6fc9ec32f477..55a3260a448c 100644 Binary files a/sys-apps/Manifest.gz and b/sys-apps/Manifest.gz differ diff --git a/sys-apps/dbus/dbus-1.12.20.ebuild b/sys-apps/dbus/dbus-1.12.20.ebuild index 6017973b2ca3..2f77997e4d1d 100644 --- a/sys-apps/dbus/dbus-1.12.20.ebuild +++ b/sys-apps/dbus/dbus-1.12.20.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://dbus.freedesktop.org/releases/dbus/${P}.tar.gz" LICENSE="|| ( AFL-2.1 GPL-2 )" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="debug doc elogind kernel_linux selinux static-libs systemd test user-session X" RESTRICT="!test? ( test )" diff --git a/sys-apps/firejail/Manifest b/sys-apps/firejail/Manifest index dcab03c7dff3..c58b96b657aa 100644 --- a/sys-apps/firejail/Manifest +++ b/sys-apps/firejail/Manifest @@ -1,2 +1 @@ -DIST firejail-0.9.62.tar.gz 918477 BLAKE2B 8654539a6a115b6f69ea94a0b699c9129cfcecaf3d478409eaf288b953563768716eae9b9a83ddc538249322daa62a764bc2eb286eddaa14fc0e5fa887c0e319 SHA512 dfdbfbffdcb9a239e071983035d57350440eb58d79bb4375bc1fe585471a260c8b090bea59ac939739ac3daddf296c041ab4cc47ebbf718b0c9deae47f16af9f DIST firejail-0.9.64.tar.xz 419464 BLAKE2B 9425910bd78739dc628a05247877f3e96065f9eab6be1fa87a70932ff04a53817e03cd67a81b35b0e5a69b5598fc5be9d6191f9c5c2bf511bc76c1edaf0eb22d SHA512 89bab9aee944ebde6221a96f0f028380f607cd49046cad5348d5974efcc92c50a172edf5e50c56606091d2060d1d8f0c50a41f05f63327672a3c3cb48eb93699 diff --git a/sys-apps/firejail/firejail-0.9.62-r1.ebuild b/sys-apps/firejail/firejail-0.9.62-r1.ebuild deleted file mode 100644 index 0521f812dbf4..000000000000 --- a/sys-apps/firejail/firejail-0.9.62-r1.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -if [[ ${PV} != 9999 ]]; then - KEYWORDS="amd64 ~x86" - SRC_URI="https://github.com/netblue30/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -else - inherit git-r3 - EGIT_REPO_URI="https://github.com/netblue30/firejail.git" - EGIT_BRANCH="master" -fi - -DESCRIPTION="Security sandbox for any type of processes" -HOMEPAGE="https://firejail.wordpress.com/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="apparmor +chroot contrib debug +file-transfer +globalcfg +network +overlayfs +private-home +seccomp +suid test +userns vim-syntax +whitelist x11" -RESTRICT="!test? ( test )" - -RDEPEND="apparmor? ( sys-libs/libapparmor )" - -DEPEND="${RDEPEND} - !sys-apps/firejail-lts - test? ( dev-tcltk/expect )" - -src_prepare() { - default - - find ./contrib -type f -name '*.py' | xargs sed --in-place 's-#!/usr/bin/python3-#!/usr/bin/env python3-g' || die - - find -type f -name Makefile.in | xargs sed -i -r \ - -e '/^\tinstall .*COPYING /d' \ - -e '/CFLAGS/s: (-O2|-ggdb) : :g' || die - - sed -i -r -e '/CFLAGS/s: (-O2|-ggdb) : :g' ./src/common.mk.in || die - - # remove compression of man pages - sed -i -e '/gzip -9n $$man; \\/d' Makefile.in || die - sed -i -e '/rm -f $$man.gz; \\/d' Makefile.in || die - sed -i -r -e 's|\*\.([[:digit:]])\) install -c -m 0644 \$\$man\.gz|\*\.\1\) install -c -m 0644 \$\$man|g' Makefile.in || die -} - -src_configure() { - econf \ - --disable-firetunnel \ - $(use_enable apparmor) \ - $(use_enable chroot) \ - $(use_enable contrib contrib-install) \ - $(use_enable file-transfer) \ - $(use_enable globalcfg) \ - $(use_enable network) \ - $(use_enable overlayfs) \ - $(use_enable private-home) \ - $(use_enable seccomp) \ - $(use_enable suid) \ - $(use_enable userns) \ - $(use_enable whitelist) \ - $(use_enable x11) -} - -src_compile() { - emake CC="$(tc-getCC)" -} - -src_install() { - default - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/ftdetect - doins contrib/vim/ftdetect/firejail.vim - - insinto /usr/share/vim/vimfiles/syntax - doins contrib/vim/syntax/firejail.vim - fi -} diff --git a/sys-apps/firejail/firejail-0.9.62.ebuild b/sys-apps/firejail/firejail-0.9.62.ebuild deleted file mode 100644 index 1b6e14740a13..000000000000 --- a/sys-apps/firejail/firejail-0.9.62.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -if [[ ${PV} != 9999 ]]; then - KEYWORDS="amd64 ~x86" - SRC_URI="https://github.com/netblue30/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" -else - inherit git-r3 - EGIT_REPO_URI="https://github.com/netblue30/firejail.git" - EGIT_BRANCH="master" -fi - -DESCRIPTION="Security sandbox for any type of processes" -HOMEPAGE="https://firejail.wordpress.com/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="apparmor +chroot contrib debug +file-transfer +globalcfg +network +overlayfs +private-home +seccomp +suid test +userns vim-syntax +whitelist x11" - -DEPEND="!sys-apps/firejail-lts - apparmor? ( sys-libs/libapparmor ) - test? ( dev-tcltk/expect )" - -RDEPEND="apparmor? ( sys-libs/libapparmor )" - -# TODO: enable tests -RESTRICT="test" - -src_prepare() { - default - - find ./contrib -type f -name '*.py' | xargs sed --in-place 's-#!/usr/bin/python3-#!/usr/bin/env python3-g' || die - - find -type f -name Makefile.in | xargs sed --in-place --regexp-extended \ - --expression='/^\tinstall .*COPYING /d' \ - --expression='/CFLAGS/s: (-O2|-ggdb) : :g' || die - - sed --in-place --regexp-extended '/CFLAGS/s: (-O2|-ggdb) : :g' ./src/common.mk.in || die - - # remove compression of man pages - sed --in-place '/gzip -9n $$man; \\/d' Makefile.in || die - sed --in-place '/rm -f $$man.gz; \\/d' Makefile.in || die - sed --in-place --regexp-extended 's|\*\.([[:digit:]])\) install -c -m 0644 \$\$man\.gz|\*\.\1\) install -c -m 0644 \$\$man|g' Makefile.in || die -} - -src_configure() { - econf \ - --disable-firetunnel \ - $(use_enable apparmor) \ - $(use_enable chroot) \ - $(use_enable contrib contrib-install) \ - $(use_enable file-transfer) \ - $(use_enable globalcfg) \ - $(use_enable network) \ - $(use_enable overlayfs) \ - $(use_enable private-home) \ - $(use_enable seccomp) \ - $(use_enable suid) \ - $(use_enable userns) \ - $(use_enable whitelist) \ - $(use_enable x11) -} - -src_install() { - default - - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/ftdetect - doins contrib/vim/ftdetect/firejail.vim - - insinto /usr/share/vim/vimfiles/syntax - doins contrib/vim/syntax/firejail.vim - fi -} diff --git a/sys-apps/firejail/firejail-0.9.64-r1.ebuild b/sys-apps/firejail/firejail-0.9.64-r1.ebuild new file mode 100644 index 000000000000..32dabff199ad --- /dev/null +++ b/sys-apps/firejail/firejail-0.9.64-r1.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6..9} ) + +inherit toolchain-funcs python-single-r1 linux-info + +if [[ ${PV} != 9999 ]]; then + KEYWORDS="~amd64 ~x86" + SRC_URI="https://github.com/netblue30/${PN}/releases/download/${PV}/${P}.tar.xz" +else + inherit git-r3 + EGIT_REPO_URI="https://github.com/netblue30/firejail.git" + EGIT_BRANCH="master" +fi + +DESCRIPTION="Security sandbox for any type of processes" +HOMEPAGE="https://firejail.wordpress.com/" + +LICENSE="GPL-2" +SLOT="0" +IUSE="X apparmor +chroot contrib +dbusproxy +file-transfer +globalcfg +network +overlayfs +private-home +suid test +userns +whitelist" +RESTRICT="!test? ( test )" + +RDEPEND="!sys-apps/firejail-lts + apparmor? ( sys-libs/libapparmor ) + contrib? ( ${PYTHON_DEPS} ) + dbusproxy? ( sys-apps/xdg-dbus-proxy )" + +DEPEND="${RDEPEND} + sys-libs/libseccomp + test? ( dev-tcltk/expect )" + +REQUIRED_USE="contrib? ( ${PYTHON_REQUIRED_USE} )" + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_prepare() { + default + + find -type f -name Makefile.in -exec sed -i -r -e '/^\tinstall .*COPYING /d; /CFLAGS/s: (-O2|-ggdb) : :g' {} + || die + + sed -i -r -e '/CFLAGS/s: (-O2|-ggdb) : :g' ./src/common.mk.in || die + + # remove compression of man pages + sed -i -r -e '/rm -f \$\$man.gz; \\/d; /gzip -9n \$\$man; \\/d; s|\*\.([[:digit:]])\) install -m 0644 \$\$man\.gz|\*\.\1\) install -m 0644 \$\$man|g' Makefile.in || die + + if use contrib; then + python_fix_shebang -f contrib/*.py + fi + + # some tests were missing from this release's tarball + if use test; then + sed -i -r -e 's/^(test:.*) test-private-lib (.*)/\1 \2/; s/^(test:.*) test-fnetfilter (.*)/\1 \2/' Makefile.in || die + fi +} + +src_configure() { + econf \ + --disable-firetunnel \ + $(use_enable apparmor) \ + $(use_enable chroot) \ + $(use_enable dbusproxy) \ + $(use_enable file-transfer) \ + $(use_enable globalcfg) \ + $(use_enable network) \ + $(use_enable overlayfs) \ + $(use_enable private-home) \ + $(use_enable suid) \ + $(use_enable userns) \ + $(use_enable whitelist) \ + $(use_enable X x11) +} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + default + + if use contrib; then + python_scriptinto /usr/$(get_libdir)/firejail + python_doscript contrib/*.py + insinto /usr/$(get_libdir)/firejail + dobin contrib/*.sh + fi +} + +pkg_postinst() { + CONFIG_CHECK="~SQUASHFS" + local ERROR_SQUASHFS="CONFIG_SQUASHFS: required for firejail --appimage mode" + check_extra_config +} diff --git a/sys-apps/firejail/firejail-9999.ebuild b/sys-apps/firejail/firejail-9999.ebuild index 8dfef8571888..5858a542c311 100644 --- a/sys-apps/firejail/firejail-9999.ebuild +++ b/sys-apps/firejail/firejail-9999.ebuild @@ -3,9 +3,13 @@ EAPI=7 +PYTHON_COMPAT=( python3_{6..9} ) + +inherit toolchain-funcs python-single-r1 linux-info + if [[ ${PV} != 9999 ]]; then KEYWORDS="~amd64 ~x86" - SRC_URI="https://github.com/netblue30/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + SRC_URI="https://github.com/netblue30/${PN}/releases/download/${PV}/${P}.tar.xz" else inherit git-r3 EGIT_REPO_URI="https://github.com/netblue30/firejail.git" @@ -17,32 +21,37 @@ HOMEPAGE="https://firejail.wordpress.com/" LICENSE="GPL-2" SLOT="0" -IUSE="apparmor +chroot contrib debug +file-transfer +globalcfg +network +overlayfs +private-home +seccomp +suid test +userns vim-syntax +whitelist x11" +IUSE="X apparmor +chroot contrib +dbusproxy +file-transfer +globalcfg +network +overlayfs +private-home +suid test +userns +whitelist" +RESTRICT="!test? ( test )" -DEPEND="!sys-apps/firejail-lts +RDEPEND="!sys-apps/firejail-lts apparmor? ( sys-libs/libapparmor ) + contrib? ( ${PYTHON_DEPS} ) + dbusproxy? ( sys-apps/xdg-dbus-proxy )" + +DEPEND="${RDEPEND} + sys-libs/libseccomp test? ( dev-tcltk/expect )" -RDEPEND="apparmor? ( sys-libs/libapparmor )" +REQUIRED_USE="contrib? ( ${PYTHON_REQUIRED_USE} )" -# TODO: enable tests -RESTRICT="test" +pkg_setup() { + python-single-r1_pkg_setup +} src_prepare() { default - find ./contrib -type f -name '*.py' | xargs sed --in-place 's-#!/usr/bin/python3-#!/usr/bin/env python3-g' || die - - find -type f -name Makefile.in | xargs sed --in-place --regexp-extended \ - --expression='/^\tinstall .*COPYING /d' \ - --expression='/CFLAGS/s: (-O2|-ggdb) : :g' || die + find -type f -name Makefile.in -exec sed -i -r -e '/^\tinstall .*COPYING /d; /CFLAGS/s: (-O2|-ggdb) : :g' {} + || die - sed --in-place --regexp-extended '/CFLAGS/s: (-O2|-ggdb) : :g' ./src/common.mk.in || die + sed -i -r -e '/CFLAGS/s: (-O2|-ggdb) : :g' ./src/common.mk.in || die # remove compression of man pages - sed --in-place '/gzip -9n $$man; \\/d' Makefile.in || die - sed --in-place '/rm -f $$man.gz; \\/d' Makefile.in || die - sed --in-place --regexp-extended 's|\*\.([[:digit:]])\) install -c -m 0644 \$\$man\.gz|\*\.\1\) install -c -m 0644 \$\$man|g' Makefile.in || die + sed -i -r -e '/rm -f \$\$man.gz; \\/d; /gzip -9n \$\$man; \\/d; s|\*\.([[:digit:]])\) install -m 0644 \$\$man\.gz|\*\.\1\) install -m 0644 \$\$man|g' Makefile.in || die + + if use contrib; then + python_fix_shebang -f contrib/*.py + fi } src_configure() { @@ -50,27 +59,35 @@ src_configure() { --disable-firetunnel \ $(use_enable apparmor) \ $(use_enable chroot) \ - $(use_enable contrib contrib-install) \ + $(use_enable dbusproxy) \ $(use_enable file-transfer) \ $(use_enable globalcfg) \ $(use_enable network) \ $(use_enable overlayfs) \ $(use_enable private-home) \ - $(use_enable seccomp) \ $(use_enable suid) \ $(use_enable userns) \ $(use_enable whitelist) \ - $(use_enable x11) + $(use_enable X x11) +} + +src_compile() { + emake CC="$(tc-getCC)" } src_install() { default - if use vim-syntax; then - insinto /usr/share/vim/vimfiles/ftdetect - doins contrib/vim/ftdetect/firejail.vim - - insinto /usr/share/vim/vimfiles/syntax - doins contrib/vim/syntax/firejail.vim + if use contrib; then + python_scriptinto /usr/$(get_libdir)/firejail + python_doscript contrib/*.py + insinto /usr/$(get_libdir)/firejail + dobin contrib/*.sh fi } + +pkg_postinst() { + CONFIG_CHECK="~SQUASHFS" + local ERROR_SQUASHFS="CONFIG_SQUASHFS: required for firejail --appimage mode" + check_extra_config +} diff --git a/sys-apps/firejail/metadata.xml b/sys-apps/firejail/metadata.xml index 4f451a1baece..a41213b778f7 100644 --- a/sys-apps/firejail/metadata.xml +++ b/sys-apps/firejail/metadata.xml @@ -31,9 +31,8 @@ Enable networking features Enable overlayfs Enable private home feature - Enable system call filtering Enable attaching a new user namespace to a sandbox (--noroot option) Enable whitelist - Enable X11 sandboxing + Enable X11 sandboxing diff --git a/sys-apps/hdparm/Manifest b/sys-apps/hdparm/Manifest index 8f621eb7d101..e5b6718b411d 100644 --- a/sys-apps/hdparm/Manifest +++ b/sys-apps/hdparm/Manifest @@ -1,2 +1,2 @@ -DIST hdparm-9.56.tar.gz 137213 BLAKE2B ffea04fb2cb14fd9ee01f0583c5fbe8d0c24d3dcecaa68750653e0475d97b86f1a39bde43ca1feb68f393606613c6a4cc8090e714eb60b1a30e223929b1fcadd SHA512 5dee7211a2528920bd197d45217a7b58df933c2500d224d39a8bb89c4d3f340962953e17b7b5f66fd52205a3a3b225d5bc0b75fc7af0f064f8ea092b55090b03 DIST hdparm-9.58.tar.gz 138845 BLAKE2B 29e2697afaedcfbb1d7dea2238f9477afd932d553166437abbf068b8b3f3a5445a0b8542714d8a15e3c64f42a794c2603fe626ed936b4dbdeb8e4fe63afc5f46 SHA512 42fb70f494aae4cc205ca68c3e883e1f4fc33e8ced1914e280e9f3faa7233d3f839e59178ec09ddb9d32e9d2bca122ce324645ecb5ac73defa284030ac7d3cea +DIST hdparm-9.60.tar.gz 155220 BLAKE2B c09a2bd7a61a77d87f7bbd45881d5956392dbedf1f329be59049de68ee8491857b1958f8e5e85086ed53deaad37fc476cfb87f45bf27084719c07d25608ffdc0 SHA512 e40b3b48b409014acd0ec0bd7ff821e850b127627b1f5114c442eeaf0b93f02c6933f93a221037255499b741071c0a5cb4d9cf7f9a06ff92a416caf82673a0ed diff --git a/sys-apps/hdparm/files/hdparm-9.60-build.patch b/sys-apps/hdparm/files/hdparm-9.60-build.patch new file mode 100644 index 000000000000..3cc1a7564e35 --- /dev/null +++ b/sys-apps/hdparm/files/hdparm-9.60-build.patch @@ -0,0 +1,32 @@ +* drop hardcoded -O2 flag from CFLAGS +* fix hardcoded `make` and hardcoded -j4 flags +* respect CFLAGS when linking + +--- hdparm-9.60/Makefile ++++ hdparm-9.60/Makefile +@@ -13,7 +13,7 @@ + CC ?= gcc + STRIP ?= strip + +-CFLAGS := -O2 -W -Wall -Wbad-function-cast -Wcast-align -Wpointer-arith -Wcast-qual -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -fkeep-inline-functions -Wwrite-strings -Waggregate-return -Wnested-externs -Wtrigraphs $(CFLAGS) ++CFLAGS += -W -Wall -Wbad-function-cast -Wcast-align -Wpointer-arith -Wcast-qual -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -fkeep-inline-functions -Wwrite-strings -Waggregate-return -Wnested-externs -Wtrigraphs + + INSTALL = install + INSTALL_DATA = $(INSTALL) -m 644 +@@ -22,14 +22,13 @@ + + OBJS = hdparm.o identify.o sgio.o sysfs.o geom.o fallocate.o fibmap.o fwdownload.o dvdspeed.o wdidle3.o apt.o + +-all: +- $(MAKE) -j4 hdparm ++all: hdparm + + static: + LDFLAGS=-static $(MAKE) + + hdparm: Makefile hdparm.h sgio.h $(OBJS) +- $(CC) $(LDFLAGS) -o hdparm $(OBJS) ++ $(CC) $(CFLAGS) $(LDFLAGS) -o hdparm $(OBJS) + $(STRIP) hdparm + + hdparm.o: hdparm.h sgio.h diff --git a/sys-apps/hdparm/hdparm-9.56.ebuild b/sys-apps/hdparm/hdparm-9.60.ebuild similarity index 83% rename from sys-apps/hdparm/hdparm-9.56.ebuild rename to sys-apps/hdparm/hdparm-9.60.ebuild index acb642f6568a..1bfffb80b2fa 100644 --- a/sys-apps/hdparm/hdparm-9.56.ebuild +++ b/sys-apps/hdparm/hdparm-9.60.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 inherit toolchain-funcs flag-o-matic @@ -11,11 +11,11 @@ SRC_URI="mirror://sourceforge/hdparm/${P}.tar.gz" LICENSE="BSD GPL-2" # GPL-2 only SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" IUSE="static" PATCHES=( - "${FILESDIR}"/${PN}-9.51-build.patch + "${FILESDIR}"/${PN}-9.60-build.patch ) src_prepare() { diff --git a/sys-apps/pkgcore/pkgcore-9999.ebuild b/sys-apps/pkgcore/pkgcore-9999.ebuild index 4d3887960e30..92b8f06a6e33 100644 --- a/sys-apps/pkgcore/pkgcore-9999.ebuild +++ b/sys-apps/pkgcore/pkgcore-9999.ebuild @@ -41,7 +41,7 @@ python_test() { } python_install_all() { - local DOCS=( AUTHORS NEWS.rst ) + local DOCS=( NEWS.rst ) [[ ${PV} == *9999 ]] || doman man/* distutils-r1_python_install_all } diff --git a/sys-apps/portage/Manifest b/sys-apps/portage/Manifest index d7c26d10983a..37d756e3aaa4 100644 --- a/sys-apps/portage/Manifest +++ b/sys-apps/portage/Manifest @@ -1,5 +1,6 @@ DIST portage-2.3.89-bug-718578.patch 1325 BLAKE2B 7a3bc520274617736eac2e3d078e90d151bdb5d8615f6217a499c0f5d4c80813f2c753e7902cf34482df0725ad0b43a38707764c8be14aae9f7ca34f0bd8721f SHA512 6f1c5d7b42beb8078c45cccbad2bd65374b69af92521d9be3beb6784477ca5bcdd75d8e762b239e44e3121e6fe5e3a040c92c9b61521e4a9b1d6bafee10d4c88 DIST portage-2.3.99.tar.bz2 1051210 BLAKE2B dd3f990dbc87e655a767ce01e1ee3f0b1d5226fa818949408e54b81a2f96e50a4215a79af42b00dc795792858c4f86453b238b14baef4f0793c937b5617534b8 SHA512 176842318a4134ce54c5aa6485fef296f5a14edd2a72421c2011973a0f1a6af39bc5398f1e9eb3b8666d5fc307589c5b91ab93c219bdedb2d307357d8ddefbf5 +DIST portage-3.0.10.tar.bz2 1048234 BLAKE2B 9011c7a3a7ea6c5c78190c5344370d26700e4bf95e56fdf7036c3c4e1ef2e8bf691f5ee21142aaa4e15d5798404e5abadfdb2b5fea288451666840f0adb0ef77 SHA512 d5823fa263876350f5128e03c92350a90f665a5539e0eeea1cfb9320a1c83cfdffe91315bfa54dbc1ba6ffb42fdcbda3b0b728f79aaf3ef254ebb7fd09563188 DIST portage-3.0.4.tar.bz2 1042654 BLAKE2B 6f869b2eb24f9e590bf8e01172050105a1bd9ea88657db5893133b4620231a0ddcda871d6fcc10623f7f2ef809116310c76355263819be6c3734b0ca184d5fc0 SHA512 7a0c39cd4ed65aebd84ff8bbadba29760b3aa392a0d606c5b29a1112fd0845c42f74eebb0728a069b2b097a6eb7eec2d18af615fd9edcc38f1018ae6ff686812 DIST portage-3.0.8.tar.bz2 1046968 BLAKE2B 662147c37a9e7b81030fadb4d6438b734ee57a9eb9bfcee80991d137a017aa3541565961282ebf8736db71aeb05532ffa139ff3a34a84bc9064cf74427acb666 SHA512 5f97870a11ecca30ffe8f463f87cd16a1edb52b44832c6eaba15cadcfde2b4f7edf963749e45c8043b45b38e53ee210dc913aa2d2432a2bd3928cc27c8765a85 DIST portage-3.0.9.tar.bz2 1047839 BLAKE2B 44cf96ac69c1b6d2f95aea8b6e87af5665bfa797ef97d3ae09d4faeefa5b36671f542a5bb8b141b0d914afef96d536a63da4539d27336471621363008d2f73bd SHA512 01ad255a12381fb3b52a8d6c1b04cb377c52b8856973aa296a1086f2d89dd6458244486a0d477e95d4247c3edf7e8e3bb20523263979401443b212085737e618 diff --git a/sys-apps/portage/portage-3.0.10-r1.ebuild b/sys-apps/portage/portage-3.0.10-r1.ebuild new file mode 100644 index 000000000000..671587b66362 --- /dev/null +++ b/sys-apps/portage/portage-3.0.10-r1.ebuild @@ -0,0 +1,272 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=no +PYTHON_COMPAT=( pypy3 python3_{6..9} ) +PYTHON_REQ_USE='bzip2(+),threads(+)' + +inherit distutils-r1 linux-info tmpfiles prefix + +DESCRIPTION="Portage is the package management and distribution system for Gentoo" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +SLOT="0" +IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify selinux test xattr" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( dev-vcs/git )" +DEPEND="!build? ( $(python_gen_impl_dep 'ssl(+)') ) + >=app-arch/tar-1.27 + dev-lang/python-exec:2 + >=sys-apps/sed-4.0.5 sys-devel/patch + doc? ( app-text/xmlto ~app-text/docbook-xml-dtd-4.4 ) + apidoc? ( + dev-python/sphinx + dev-python/sphinx-epytext + )" +# Require sandbox-2.2 for bug #288863. +# For whirlpool hash, require python[ssl] (bug #425046). +# For compgen, require bash[readline] (bug #445576). +# app-portage/gemato goes without PYTHON_USEDEP since we're calling +# the executable. +RDEPEND=" + app-arch/zstd + >=app-arch/tar-1.27 + dev-lang/python-exec:2 + >=sys-apps/findutils-4.4 + !build? ( + >=sys-apps/sed-4.0.5 + app-shells/bash:0[readline] + >=app-admin/eselect-1.2 + rsync-verify? ( + >=app-portage/gemato-14.5[${PYTHON_USEDEP}] + >=app-crypt/openpgp-keys-gentoo-release-20180706 + >=app-crypt/gnupg-2.2.4-r2[ssl(-)] + ) + ) + elibc_glibc? ( >=sys-apps/sandbox-2.2 ) + elibc_musl? ( >=sys-apps/sandbox-2.2 ) + elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) + kernel_linux? ( sys-apps/util-linux ) + >=app-misc/pax-utils-0.1.17 + selinux? ( >=sys-libs/libselinux-2.0.94[python,${PYTHON_USEDEP}] ) + xattr? ( kernel_linux? ( + >=sys-apps/install-xattr-0.3 + ) ) + !> cnf/make.globals || die + fi + + if use native-extensions; then + printf "[build_ext]\nportage-ext-modules=true\n" >> \ + setup.cfg || die + fi + + if ! use ipc ; then + einfo "Disabling ipc..." + sed -e "s:_enable_ipc_daemon = True:_enable_ipc_daemon = False:" \ + -i lib/_emerge/AbstractEbuildProcess.py || \ + die "failed to patch AbstractEbuildProcess.py" + fi + + if use xattr && use kernel_linux ; then + einfo "Adding FEATURES=xattr to make.globals ..." + echo -e '\nFEATURES="${FEATURES} xattr"' >> cnf/make.globals \ + || die "failed to append to make.globals" + fi + + if use build || ! use rsync-verify; then + sed -e '/^sync-rsync-verify-metamanifest/s|yes|no|' \ + -e '/^sync-webrsync-verify-signature/s|yes|no|' \ + -i cnf/repos.conf || die "sed failed" + fi + + if [[ -n ${EPREFIX} ]] ; then + einfo "Setting portage.const.EPREFIX ..." + hprefixify -e "s|^(EPREFIX[[:space:]]*=[[:space:]]*\").*|\1${EPREFIX}\"|" \ + -w "/_BINARY/" lib/portage/const.py + + einfo "Prefixing shebangs ..." + while read -r -d $'\0' ; do + local shebang=$(head -n1 "$REPLY") + if [[ ${shebang} == "#!"* && ! ${shebang} == "#!${EPREFIX}/"* ]] ; then + sed -i -e "1s:.*:#!${EPREFIX}${shebang:2}:" "$REPLY" || \ + die "sed failed" + fi + done < <(find . -type f ! -name etc-update -print0) + + einfo "Adjusting make.globals, repos.conf and etc-update ..." + hprefixify cnf/{make.globals,repos.conf} bin/etc-update + + if use prefix-guest ; then + sed -e "s|^\(main-repo = \).*|\\1gentoo_prefix|" \ + -e "s|^\\[gentoo\\]|[gentoo_prefix]|" \ + -e "s|^\(sync-uri = \).*|\\1rsync://rsync.prefix.bitzolder.nl/gentoo-portage-prefix|" \ + -i cnf/repos.conf || die "sed failed" + fi + + einfo "Adding FEATURES=force-prefix to make.globals ..." + echo -e '\nFEATURES="${FEATURES} force-prefix"' >> cnf/make.globals \ + || die "failed to append to make.globals" + fi + + cd "${S}/cnf" || die + if [ -f "make.conf.example.${ARCH}".diff ]; then + patch make.conf.example "make.conf.example.${ARCH}".diff || \ + die "Failed to patch make.conf.example" + else + eerror "" + eerror "Portage does not have an arch-specific configuration for this arch." + eerror "Please notify the arch maintainer about this issue. Using generic." + eerror "" + fi +} + +python_compile_all() { + local targets=() + use doc && targets+=( docbook ) + use apidoc && targets+=( apidoc ) + + if [[ ${targets[@]} ]]; then + esetup.py "${targets[@]}" + fi +} + +python_test() { + esetup.py test +} + +python_install() { + # Install sbin scripts to bindir for python-exec linking + # they will be relocated in pkg_preinst() + distutils-r1_python_install \ + --system-prefix="${EPREFIX}/usr" \ + --bindir="$(python_get_scriptdir)" \ + --docdir="${EPREFIX}/usr/share/doc/${PF}" \ + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \ + --portage-bindir="${EPREFIX}/usr/lib/portage/${EPYTHON}" \ + --sbindir="$(python_get_scriptdir)" \ + --sysconfdir="${EPREFIX}/etc" \ + "${@}" +} + +python_install_all() { + distutils-r1_python_install_all + + local targets=() + use doc && targets+=( + install_docbook + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" + ) + use apidoc && targets+=( + install_apidoc + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" + ) + + # install docs + if [[ ${targets[@]} ]]; then + esetup.py "${targets[@]}" + fi + + dotmpfiles "${FILESDIR}"/portage-ccache.conf + + # Due to distutils/python-exec limitations + # these must be installed to /usr/bin. + local sbin_relocations='archive-conf dispatch-conf emaint env-update etc-update fixpackages regenworld' + einfo "Moving admin scripts to the correct directory" + dodir /usr/sbin + for target in ${sbin_relocations}; do + einfo "Moving /usr/bin/${target} to /usr/sbin/${target}" + mv "${ED}/usr/bin/${target}" "${ED}/usr/sbin/${target}" || die "sbin scripts move failed!" + done +} + +pkg_preinst() { + python_setup + local sitedir=$(python_get_sitedir) + [[ -d ${D}${sitedir} ]] || die "${D}${sitedir}: No such directory" + env -u DISTDIR \ + -u PORTAGE_OVERRIDE_EPREFIX \ + -u PORTAGE_REPOSITORIES \ + -u PORTDIR \ + -u PORTDIR_OVERLAY \ + PYTHONPATH="${D}${sitedir}${PYTHONPATH:+:${PYTHONPATH}}" \ + "${PYTHON}" -m portage._compat_upgrade.default_locations || die + + env -u BINPKG_COMPRESS \ + PYTHONPATH="${D}${sitedir}${PYTHONPATH:+:${PYTHONPATH}}" \ + "${PYTHON}" -m portage._compat_upgrade.binpkg_compression || die + + # elog dir must exist to avoid logrotate error for bug #415911. + # This code runs in preinst in order to bypass the mapping of + # portage:portage to root:root which happens after src_install. + keepdir /var/log/portage/elog + # This is allowed to fail if the user/group are invalid for prefix users. + if chown portage:portage "${ED}"/var/log/portage{,/elog} 2>/dev/null ; then + chmod g+s,ug+rwx "${ED}"/var/log/portage{,/elog} + fi + + if has_version "<${CATEGORY}/${PN}-2.3.77"; then + elog "The emerge --autounmask option is now disabled by default, except for" + elog "portions of behavior which are controlled by the --autounmask-use and" + elog "--autounmask-license options. For backward compatibility, previous" + elog "behavior of --autounmask=y and --autounmask=n is entirely preserved." + elog "Users can get the old behavior simply by adding --autounmask to the" + elog "make.conf EMERGE_DEFAULT_OPTS variable. For the rationale for this" + elog "change, see https://bugs.gentoo.org/658648." + fi +} diff --git a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild index 4c6ac9a06cb9..ea7de1bf2eba 100644 --- a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild +++ b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-246.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> systemd-${P LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT public-domain" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~amd64 arm arm64 ppc ppc64 ~sparc x86" IUSE="test" RESTRICT="!test? ( test )" diff --git a/sys-apps/unscd/Manifest b/sys-apps/unscd/Manifest index 2c8fedc46f24..9e99f8188338 100644 --- a/sys-apps/unscd/Manifest +++ b/sys-apps/unscd/Manifest @@ -1,2 +1 @@ -DIST nscd-0.53.c 73206 BLAKE2B ce3b8e02ce8879664bde7ee7362ee0d920ad9e9cd24da08b02e83d49b2e0bef7fb1b3c6635bc4e8a26d901170943a78bae608903459e4447edf004e5ef716468 SHA512 d14362d21282d0ea919af3b353f7838d1514c293b49df084bc8df424392b4121dba3443a07118f4c8c1cfdca0cbf8ebddde24cf73459b06349e9d1a68801403c DIST nscd-0.54-r1.c 73304 BLAKE2B 5c35fec2f4f3447c5d6500a7fc50c97347923d62d084134ced5c412307e8db6079e01302b16ac3e1940ee9194a31ebec464e3bd838fd8b6a650b8c0bdc66349d SHA512 88f40a10ff9ba0f46ef6f266a8ab610bf54c1d322d11df47e616e3cc007edaebdf673ec71a314b7c672d2aa7a2eac799abb0bdf87aaebd71fb8d2f7ef4e33ab6 diff --git a/sys-apps/unscd/unscd-0.53.ebuild b/sys-apps/unscd/unscd-0.53.ebuild deleted file mode 100644 index f3e81790194e..000000000000 --- a/sys-apps/unscd/unscd-0.53.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit systemd toolchain-funcs - -DESCRIPTION="simple & stable nscd replacement" -HOMEPAGE="https://busybox.net/~vda/unscd/README" -SRC_URI="https://busybox.net/~vda/unscd/nscd-${PV}.c" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -RDEPEND="sys-libs/glibc[nscd(+)]" -DEPEND="${RDEPEND}" - -S=${WORKDIR} - -src_unpack() { - cp "${DISTDIR}"/nscd-${PV}.c ${PN}.c || die -} - -src_compile() { - tc-export CC - emake unscd -} - -src_install() { - newinitd "${FILESDIR}"/unscd.initd-r1 unscd - systemd_newtmpfilesd "${FILESDIR}"/unscd-tmpfiles.conf unscd.conf - systemd_dounit "${FILESDIR}"/unscd.service - dosbin unscd -} diff --git a/sys-apps/util-linux/files/util-linux-2.36.1-libmount_dont_use_symfollow.patch b/sys-apps/util-linux/files/util-linux-2.36.1-libmount_dont_use_symfollow.patch new file mode 100644 index 000000000000..7c0b73f49d78 --- /dev/null +++ b/sys-apps/util-linux/files/util-linux-2.36.1-libmount_dont_use_symfollow.patch @@ -0,0 +1,40 @@ +From 76bb9b30cfcf54b59591a57a3d2a747e514469b2 Mon Sep 17 00:00:00 2001 +From: Karel Zak +Date: Thu, 19 Nov 2020 09:49:16 +0100 +Subject: [PATCH] libmount: don't use "symfollow" for helpers on user mounts + +Addresses: https://github.com/karelzak/util-linux/issues/1193 +Signed-off-by: Karel Zak +--- + libmount/src/context_mount.c | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/libmount/src/context_mount.c b/libmount/src/context_mount.c +index 8c394c1ff..dd1786176 100644 +--- a/libmount/src/context_mount.c ++++ b/libmount/src/context_mount.c +@@ -415,6 +415,9 @@ static int generate_helper_optstr(struct libmnt_context *cxt, char **optstr) + * string, because there is nothing like MS_EXEC (we only have + * MS_NOEXEC in mount flags and we don't care about the original + * mount string in libmount for VFS options). ++ * ++ * This use-case makes sense for MS_SECURE flags only (see ++ * mnt_optstr_get_flags() and mnt_context_merge_mflags()). + */ + if (!(cxt->mountflags & MS_NOEXEC)) + mnt_optstr_append_option(optstr, "exec", NULL); +@@ -422,11 +425,8 @@ static int generate_helper_optstr(struct libmnt_context *cxt, char **optstr) + mnt_optstr_append_option(optstr, "suid", NULL); + if (!(cxt->mountflags & MS_NODEV)) + mnt_optstr_append_option(optstr, "dev", NULL); +- if (!(cxt->mountflags & MS_NOSYMFOLLOW)) +- mnt_optstr_append_option(optstr, "symfollow", NULL); + } + +- + if (cxt->flags & MNT_FL_SAVED_USER) + rc = mnt_optstr_set_option(optstr, "user", cxt->orig_user); + if (rc) +-- +2.29.2 + diff --git a/sys-apps/util-linux/util-linux-2.36.1.ebuild b/sys-apps/util-linux/util-linux-2.36.1-r1.ebuild similarity index 99% rename from sys-apps/util-linux/util-linux-2.36.1.ebuild rename to sys-apps/util-linux/util-linux-2.36.1-r1.ebuild index 902e36ad068a..f7acbfdb1510 100644 --- a/sys-apps/util-linux/util-linux-2.36.1.ebuild +++ b/sys-apps/util-linux/util-linux-2.36.1-r1.ebuild @@ -75,6 +75,10 @@ RESTRICT="!test? ( test )" S="${WORKDIR}/${MY_P}" +PATCHES=( + "${FILESDIR}/${P}-libmount_dont_use_symfollow.patch" #755878 +) + src_prepare() { default diff --git a/sys-cluster/Manifest.gz b/sys-cluster/Manifest.gz index abf6e0cf420b..032d9f0c7684 100644 Binary files a/sys-cluster/Manifest.gz and b/sys-cluster/Manifest.gz differ diff --git a/sys-cluster/ceph/ceph-15.2.6.ebuild b/sys-cluster/ceph/ceph-15.2.6.ebuild index f8190628700f..9e98afd12a09 100644 --- a/sys-cluster/ceph/ceph-15.2.6.ebuild +++ b/sys-cluster/ceph/ceph-15.2.6.ebuild @@ -17,7 +17,7 @@ if [[ ${PV} == *9999* ]]; then SRC_URI="" else SRC_URI="https://download.ceph.com/tarballs/${P}.tar.gz" - KEYWORDS="~amd64" + KEYWORDS="~amd64 ~arm64" fi DESCRIPTION="Ceph distributed filesystem" diff --git a/sys-cluster/glusterfs/files/glusterfs-6.7-fix-seek.patch b/sys-cluster/glusterfs/files/glusterfs-6.7-fix-seek.patch deleted file mode 100644 index 07d1ecef0376..000000000000 --- a/sys-cluster/glusterfs/files/glusterfs-6.7-fix-seek.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff --git a/xlators/performance/open-behind/src/open-behind.c b/xlators/performance/open-behind/src/open-behind.c -index 70a144abb5..95e00dbd79 100644 ---- a/xlators/performance/open-behind/src/open-behind.c -+++ b/xlators/performance/open-behind/src/open-behind.c -@@ -708,6 +708,32 @@ ob_fstat(call_frame_t *frame, xlator_t *this, fd_t *fd, dict_t *xdata) - return 0; - } - -+int -+ob_seek(call_frame_t *frame, xlator_t *this, fd_t *fd, off_t offset, -+ gf_seek_what_t what, dict_t *xdata) -+{ -+ call_stub_t *stub = NULL; -+ fd_t *wind_fd = NULL; -+ -+ wind_fd = ob_get_wind_fd(this, fd, NULL); -+ -+ stub = fop_seek_stub(frame, default_seek_resume, wind_fd, offset, what, -+ xdata); -+ -+ fd_unref(wind_fd); -+ -+ if (!stub) -+ goto err; -+ -+ open_and_resume(this, wind_fd, stub); -+ -+ return 0; -+err: -+ STACK_UNWIND_STRICT(fstat, frame, -1, ENOMEM, 0, 0); -+ -+ return 0; -+} -+ - int - ob_flush(call_frame_t *frame, xlator_t *this, fd_t *fd, dict_t *xdata) - { -@@ -1256,6 +1282,7 @@ struct xlator_fops fops = { - .flush = ob_flush, - .fsync = ob_fsync, - .fstat = ob_fstat, -+ .seek = ob_seek, - .ftruncate = ob_ftruncate, - .fsetxattr = ob_fsetxattr, - .setxattr = ob_setxattr, diff --git a/sys-cluster/maui/Manifest b/sys-cluster/maui/Manifest deleted file mode 100644 index 2b74152b5002..000000000000 --- a/sys-cluster/maui/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST maui-3.3.1.tar.gz 901179 BLAKE2B 57c207c3760b929140ccf998532131d2a879278cb47218a673cba1dda67f8d77180eadaf72c6bbf4c0917db78de5301f851324980917d772d9b955e551ad16f2 SHA512 e22a0f08b40d810792175b5bc15a53831e84eeab43ddc79ebc3e10a2d5c0b77a4634ff67975f9dae06fbb84f84cb3a95e9cbfcb8086734dbd41caee3359675b0 diff --git a/sys-cluster/maui/files/maui-3.3.1-torque_4.patch b/sys-cluster/maui/files/maui-3.3.1-torque_4.patch deleted file mode 100644 index 1e0631555736..000000000000 --- a/sys-cluster/maui/files/maui-3.3.1-torque_4.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -ur maui-3.3.1.orig/src/moab/MPBSI.c maui-3.3.1/src/moab/MPBSI.c ---- maui-3.3.1.orig/src/moab/MPBSI.c 2013-07-31 09:36:31.831849229 -0700 -+++ maui-3.3.1/src/moab/MPBSI.c 2013-07-31 09:37:12.951107957 -0700 -@@ -174,8 +174,8 @@ - - extern int pbs_errno; - --extern int get_svrport(const char *,char *,int); --extern int openrm(char *,int); -+extern unsigned int get_svrport(char *,char *,unsigned int); -+extern int openrm(char *,unsigned int); - extern int addreq(int,char *); - extern int closerm(int); - extern int pbs_stagein(int,char *,char *,char *); diff --git a/sys-cluster/maui/files/maui.initd b/sys-cluster/maui/files/maui.initd deleted file mode 100644 index df4f64474f1f..000000000000 --- a/sys-cluster/maui/files/maui.initd +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net - after pbs_server slurmctld - before pbs_mom slurmd - after logger -} - -start() { - ebegin "Starting Maui scheduler" - start-stop-daemon --start --exec /usr/sbin/maui - eend ${?} -} - -stop() { - ebegin "Stopping Maui scheduler" - start-stop-daemon --stop -p /var/spool/maui/maui.pid - eend ${?} -} -# vim:ts=4 diff --git a/sys-cluster/maui/maui-3.3.1-r3.ebuild b/sys-cluster/maui/maui-3.3.1-r3.ebuild deleted file mode 100644 index 82459ce3849b..000000000000 --- a/sys-cluster/maui/maui-3.3.1-r3.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit eutils multilib - -DESCRIPTION="Maui Cluster Scheduler" -HOMEPAGE="http://www.adaptivecomputing.com/products/open-source/maui/" -SRC_URI="http://www.adaptivecomputing.com/download/${PN}/${P}.tar.gz" - -LICENSE="maui" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux" -IUSE="pbs slurm" - -REQUIRED_USE="^^ ( pbs slurm )" - -DEPEND=" - pbs? ( >=sys-cluster/torque-4 ) - slurm? ( sys-cluster/slurm )" -RDEPEND="${DEPEND}" - -RESTRICT="fetch mirror" - -pkg_setup() { - if use slurm; then - if [ -z ${MAUI_KEY} ]; then - eerror "You should set MAUI_KEY to any integer value in make.conf" - return 1 - fi - fi -} - -src_prepare() { - sed -e "s:\$(INST_DIR)/lib:\$(INST_DIR)/$(get_libdir):" \ - -i src/{moab,server,mcom}/Makefile || die - - epatch "${FILESDIR}"/${P}-torque_4.patch -} - -src_configure() { - local myconf - use pbs && myconf="--with-pbs=${EPREFIX}/usr" - use slurm && myconf+=" --with-wiki --with-key=${MAUI_KEY}" - econf \ - --with-spooldir="${EPREFIX}"/var/spool/${PN} \ - ${myconf} -} - -src_install() { - emake BUILDROOT="${D}" INST_DIR="${ED}/usr" install - dodoc docs/README CHANGELOG - dohtml docs/mauidocs.html - newinitd "${FILESDIR}/${PN}.initd" ${PN} -} - -pkg_nofetch() { - einfo "Please visit ${HOMEPAGE}, obtain the file" - einfo "${P}.tar.gz and put it in your DISTDIR directory." -} diff --git a/sys-cluster/maui/metadata.xml b/sys-cluster/maui/metadata.xml deleted file mode 100644 index 9baf5ea25211..000000000000 --- a/sys-cluster/maui/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - cluster@gentoo.org - Gentoo Cluster Project - - - Enable pbs integration - Enable slurm integration - - diff --git a/sys-cluster/mvapich2/Manifest b/sys-cluster/mvapich2/Manifest deleted file mode 100644 index 9c59e1fd9d10..000000000000 --- a/sys-cluster/mvapich2/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST mvapich2-1.6.tgz 23239787 BLAKE2B 4cdd286d7a13f70b50ced6ac6cb3df51065225a33141410b699246f2b99d0f4b57611cd95f39806387c71d0f07257560c6f210ed4bbb8ce5fa5d2b8b7071db2c SHA512 4a4aac17742f347c4daed40a8360576ff4c644c549d4a3b364c7d2b1eada6aecc514b447b4613111e113d8f9be79b5101a999298cf89ff19ce63523a54702289 diff --git a/sys-cluster/mvapich2/metadata.xml b/sys-cluster/mvapich2/metadata.xml deleted file mode 100644 index ba65afe10755..000000000000 --- a/sys-cluster/mvapich2/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - cluster@gentoo.org - Gentoo Cluster Project - - - Automatically generated description for large-cluster - Automatically generated description for medium-cluster - Automatically generated description for romio - - diff --git a/sys-cluster/mvapich2/mvapich2-1.6.ebuild b/sys-cluster/mvapich2/mvapich2-1.6.ebuild deleted file mode 100644 index 6d9ecdeadbc7..000000000000 --- a/sys-cluster/mvapich2/mvapich2-1.6.ebuild +++ /dev/null @@ -1,142 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit flag-o-matic fortran-2 toolchain-funcs - -DESCRIPTION="MVAPICH2 MPI-over-infiniband package auto-configured for OpenIB" -HOMEPAGE="http://mvapich.cse.ohio-state.edu/" -SRC_URI="http://mvapich.cse.ohio-state.edu/download/mvapich2/mvapich2-${PV/_/-}.tgz" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="~amd64 ~x86" -IUSE="debug fortran large-cluster medium-cluster romio threads" - -RDEPEND=" - sys-fabric/libibverbs - sys-fabric/libibumad - sys-fabric/libibmad - sys-fabric/librdmacm" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/mvapich2-${PV/_/-}" - -pkg_setup() { - fortran-2_pkg_setup - - if [ -z "${MVAPICH_HCA_TYPE}" ]; then - elog "${PN} needs to know which HCA it should optimize for. This is" - elog "passed to the ebuild with the variable, \${MVAPICH_HCA_TYPE}." - elog "Please choose one of: _MLX_PCI_EX_SDR_, _MLX_PCI_EX_DDR_," - elog "_MLX_PCI_X, _PATH_HT_, or _IBM_EHCA_." - elog "See make.mvapich2.detect in ${S} for more information." - die "MVAPICH_HCA_TYPE undefined" - fi - - case ${ARCH} in - amd64) - if grep Intel /proc/cpuinfo &>/dev/null; then - BUILD_ARCH=-D_EM64T_ - else - BUILD_ARCH=-D_X86_64_ - fi - ;; - x86) - BUILD_ARCH=-D_IA32_ - ;; - ia64) - BUILD_ARCH=-D_IA64_ - ;; - ppc64) - BUILD_ARCH=-D_PPC64_ - ;; - *) - die "unsupported architecture: ${ARCH}" - ;; - esac -} - -src_prepare() { - einfo "Disabling examples" - # Examples are always compiled with the default 'all' target. This - # causes problems when we don't build support for everything, including - # threads, mpe2, etc. So we're not going to build them. - sed -i 's:.*cd examples && ${MAKE} all.*::' Makefile.in -} - -src_configure() { - local c="--with-device=osu_ch3:mrail - --with-rdma=gen2 - --with-pm=mpd - $(use_enable romio) - --with-mpe=no" - - # TODO Shared libs should build with this, but they don't - # --enable-shared=gcc" - - local enable_srq - local vcluster=-D_SMALL_CLUSTER - - use large-cluster && vcluster=-D_LARGE_CLUSTER - use medium-cluster && vcluster=-D_MEDIUM_CLUSTER - [ "${MVAPICH_HCA_TYPE}" == "_MLX_PCI_X_" ] && enable_srq="-DSRQ" - - append-ldflags "-lrdmacm" - append-flags "-DADAPTIVE_RDMA_FAST_PATH -DRDMA_CM" - - append-ldflags "-libverbs -libumad -libmad" - - append-flags "${BUILD_ARCH} -DUSE_INLINE -D_SMP_ -D_GNU_SOURCE" - append-flags "${enable_srq} -DUSE_HEADER_CACHING -DLAZY_MEM_UNREGISTER" - append-flags "-DONE_SIDED -D${MVAPICH_HCA_TYPE} ${vcluster}" - append-flags "-DMPID_USE_SEQUENCE_NUMBERS -DUSE_MPD_RING" - - use debug && c="${c} --enable-g=all --enable-debuginfo" - - if use threads; then - c="${c} --enable-threads=multiple --with-thread-package=pthreads" - append-flags "-pthread" - else - c="${c} --with-thread-package=none" - fi - - # enable f90 support for appropriate compilers - if use fortran; then - case "$(tc-getFC)" in - gfortran|ifort|f95) - c="${c} --enable-f77 --enable-f90";; - g77|f77|f2c) - c="${c} --enable-f77 --disable-f90";; - esac - else - c="${c} --disable-f77 --disable-f90" - fi - - sed -i \ - -e 's/ ${exec_prefix}/ ${DESTDIR}${exec_prefix}/' \ - -e 's/ ${libdir}/ ${DESTDIR}${libdir}/' \ - ${S/-beta2/}/Makefile.in - sed -i '/bindir/s/ ${bindir}/ ${DESTDIR}${bindir}/' ${S/-beta2/}/src/pm/mpd/Makefile.in - cd ${S/-beta2/} - - econf ${c} -} - -src_install() { - emake DESTDIR="${D}" - dodoc CHANGES_MPICH2 COPYRIGHT COPYRIGHT_MVAPICH2 LICENSE.TXT \ - README* RELEASE_NOTES* -} - -pkg_postinst() { - einfo "To allow normal users to use infiniband, it is necessary to" - einfo "increase the system limits on locked memory." - einfo "You must increase the kernel.shmmax sysctl value, and increase" - einfo "the memlock limits in /etc/security/limits.conf. i.e.:" - echo - einfo "echo 'kernel.shmmax = 512000000' >> /etc/sysctl.conf" - einfo "echo 512000000 > /proc/sys/kernel/shmmax" - einfo "echo -e '* soft memlock 500000\n* hard memlock 500000' > /etc/security/limits.conf" -} diff --git a/sys-cluster/nova/Manifest b/sys-cluster/nova/Manifest index ef01e7be3c96..d0c8578df849 100644 --- a/sys-cluster/nova/Manifest +++ b/sys-cluster/nova/Manifest @@ -1,8 +1,10 @@ DIST nova-21.1.0.tar.gz 9213435 BLAKE2B e84bc5131c4bd5ca50ab2783b8b6c606eac0abdaf622fb9a32b9c86fb91ac569f92459da199b4d4bbf679710e593f7ce5539c7f85f89446a463064a108b58d3b SHA512 abb6db64bf25806a9037df1b54bb5874e0599654b8cabafbb6ac659358124a5aa62668117e0a529677e1997d7d89b4265fbb9de4613f28d00d71bdfc4e94c471 DIST nova-21.1.1.tar.gz 9300545 BLAKE2B 757e7da69a10da73f7786e71e81ffc126304f8bff65910d3cb7ee8bf8fddc70490451b8173ac1a26e0b256e6cf54f4292617481c5fc7394e727ad2da20ed4607 SHA512 c44f0ca3b689cf3a3f364654bbdc8d4a425c702506be2d4e2d00002baf3395b5212807f1cc696488602d642c3565a7a84a407357d3621028c39e844c2ac4c466 DIST nova-22.0.0.tar.gz 9168828 BLAKE2B 6ae28abd6e14a50c7d28564bcd7df0ab5681c5a89b4b561a68231d14f92faca4d394b2669b0f60292bc0a00589e36663f6529059a26fd6a5e3991066abda0070 SHA512 4b6b889550f839711462dba8b541977e35aecc062a3f86414b94338666807d31b330084ac3f6ebf889b8ef3f4fddec324d6af6fadeea76edd96baa48c00df7f7 +DIST nova-22.0.1.tar.gz 9254552 BLAKE2B b676ef872a9c14331860cd907a74c30f41dfb64908af9ac9e93bbc966a43daf1b3ef74d8a9e80e6f50ac25713a65a0082a02ecb276731ea3ea704dad210d6e7e SHA512 002b4fac8807b0a993e281fe6438b3e1db5cba31f12b2570c3bfd7cc495a5334668db4cc75a66f11186a8f0409f84e47e9e8b38220a1b3af762e543481ab0b7c DIST nova.conf.sample-2020.1.9999 191182 BLAKE2B 99999b1b42b9ecc6a7f404c9874c5065591dfd8e896c97d261307f7f3b5e935e12db1b4650182660cf1eb97bcfb993d41a1f89e079120adc00b339b5a4ac1c98 SHA512 af22ba8dcfbafdb07ba2785bdcb40efd201adb81d47bee15ee11bb76437bc7a5b7c88390f995432ffa92b64b849df754bd15264e97530334f3eac6f8f93e828d DIST nova.conf.sample-2020.2.9999 187107 BLAKE2B e577126b67f2cc1aa6597f89b1632007f726ad85875d5f27041d0f9ac88923b944fe7f45ae2b3332157713b5f93034dad4da2860917b025649a52d7d71986612 SHA512 4149f8f19a573e8717f521183ba330853742bb6731f0e9ef02842d3be1c188ea3a2cdbeb6043086869360b9b1174a17e221c4ad1f543f74220c46cf31b1ca970 DIST nova.conf.sample-21.1.0 191182 BLAKE2B 99999b1b42b9ecc6a7f404c9874c5065591dfd8e896c97d261307f7f3b5e935e12db1b4650182660cf1eb97bcfb993d41a1f89e079120adc00b339b5a4ac1c98 SHA512 af22ba8dcfbafdb07ba2785bdcb40efd201adb81d47bee15ee11bb76437bc7a5b7c88390f995432ffa92b64b849df754bd15264e97530334f3eac6f8f93e828d DIST nova.conf.sample-21.1.1 191182 BLAKE2B 99999b1b42b9ecc6a7f404c9874c5065591dfd8e896c97d261307f7f3b5e935e12db1b4650182660cf1eb97bcfb993d41a1f89e079120adc00b339b5a4ac1c98 SHA512 af22ba8dcfbafdb07ba2785bdcb40efd201adb81d47bee15ee11bb76437bc7a5b7c88390f995432ffa92b64b849df754bd15264e97530334f3eac6f8f93e828d DIST nova.conf.sample-22.0.0 187107 BLAKE2B e577126b67f2cc1aa6597f89b1632007f726ad85875d5f27041d0f9ac88923b944fe7f45ae2b3332157713b5f93034dad4da2860917b025649a52d7d71986612 SHA512 4149f8f19a573e8717f521183ba330853742bb6731f0e9ef02842d3be1c188ea3a2cdbeb6043086869360b9b1174a17e221c4ad1f543f74220c46cf31b1ca970 +DIST nova.conf.sample-22.0.1 187107 BLAKE2B e577126b67f2cc1aa6597f89b1632007f726ad85875d5f27041d0f9ac88923b944fe7f45ae2b3332157713b5f93034dad4da2860917b025649a52d7d71986612 SHA512 4149f8f19a573e8717f521183ba330853742bb6731f0e9ef02842d3be1c188ea3a2cdbeb6043086869360b9b1174a17e221c4ad1f543f74220c46cf31b1ca970 diff --git a/sys-cluster/nova/files/CVE-2020-17376.patch b/sys-cluster/nova/files/CVE-2020-17376.patch deleted file mode 100644 index 8cb2d4423f72..000000000000 --- a/sys-cluster/nova/files/CVE-2020-17376.patch +++ /dev/null @@ -1,141 +0,0 @@ -From bbf9d1de06e9991acd968fceee899a8df3776d60 Mon Sep 17 00:00:00 2001 -From: Lee Yarwood -Date: Wed, 5 Aug 2020 23:00:06 +0100 -Subject: [PATCH] libvirt: Provide VIR_MIGRATE_PARAM_PERSIST_XML during live - migration - -The VIR_MIGRATE_PARAM_PERSIST_XML parameter was introduced in libvirt -v1.3.4 and is used to provide the new persistent configuration for the -destination during a live migration: - -https://libvirt.org/html/libvirt-libvirt-domain.html#VIR_MIGRATE_PARAM_PERSIST_XML - -Without this parameter the persistent configuration on the destination -will be the same as the original persistent configuration on the source -when the VIR_MIGRATE_PERSIST_DEST flag is provided. - -As Nova does not currently provide the VIR_MIGRATE_PARAM_PERSIST_XML -param but does provide the VIR_MIGRATE_PERSIST_DEST flag this means that -a soft reboot by Nova of the instance after a live migration can revert -the domain back to the original persistent configuration from the -source. - -Note that this is only possible in Nova as a soft reboot actually -results in the virDomainShutdown and virDomainLaunch libvirt APIs being -called that recreate the domain using the persistent configuration. -virDomainReboot does not result in this but is not called at this time. - -The impact of this on the instance after the soft reboot is pretty -severe, host devices referenced in the original persistent configuration -on the source may not exist or could even be used by other users on the -destination. CPU and NUMA affinity could also differ drastically between -the two hosts resulting in the instance being unable to start etc. - -As MIN_LIBVIRT_VERSION is now > v1.3.4 this change simply includes the -VIR_MIGRATE_PARAM_PERSIST_XML param using the same updated XML for the -destination as is already provided to VIR_MIGRATE_PARAM_DEST_XML. - -NOTE(lyarwood): A simple change to test_migrate_v3_unicode is included -as Iccce0ab50eee515e533ab36c8e7adc10cb3f7019 had removed this from -master. - -Co-authored-by: Tadayoshi Hosoya -Closes-Bug: #1890501 -Change-Id: Ia3f1d8e83cbc574ce5cb440032e12bbcb1e10e98 -(cherry picked from commit 1bb8ee95d4c3ddc3f607ac57526b75af1b7fbcff) -Signed-off-by: Matthew Thode ---- - nova/tests/unit/virt/libvirt/test_driver.py | 8 +++++++- - nova/tests/unit/virt/libvirt/test_guest.py | 2 ++ - nova/virt/libvirt/guest.py | 1 + - 3 files changed, 10 insertions(+), 1 deletion(-) - -diff --git a/nova/tests/unit/virt/libvirt/test_driver.py b/nova/tests/unit/virt/libvirt/test_driver.py -index b416641d362..99ce85a870b 100644 ---- a/nova/tests/unit/virt/libvirt/test_driver.py -+++ b/nova/tests/unit/virt/libvirt/test_driver.py -@@ -11196,6 +11196,7 @@ class LibvirtConnTestCase(test.NoDBTestCase, - 'migrate_disks': disk_paths, - 'bandwidth': _bandwidth, - 'destination_xml': target_xml, -+ 'persistent_xml': target_xml, - } - - # start test -@@ -11303,7 +11304,8 @@ class LibvirtConnTestCase(test.NoDBTestCase, - 'migrate_disks': disk_paths, - 'migrate_uri': 'tcp://127.0.0.2', - 'bandwidth': CONF.libvirt.live_migration_bandwidth, -- 'destination_xml': target_xml -+ 'destination_xml': target_xml, -+ 'persistent_xml': target_xml, - } - - # Start test -@@ -11462,6 +11464,7 @@ class LibvirtConnTestCase(test.NoDBTestCase, - 'migrate_uri': 'tcp://127.0.0.2', - 'bandwidth': CONF.libvirt.live_migration_bandwidth, - 'destination_xml': target_xml, -+ 'persistent_xml': target_xml, - } - - # start test -@@ -11813,6 +11816,7 @@ class LibvirtConnTestCase(test.NoDBTestCase, - 'migrate_disks': ['vda', 'vdb'], - 'bandwidth': CONF.libvirt.live_migration_bandwidth, - 'destination_xml': target_xml, -+ 'persistent_xml': target_xml, - } - - # start test -@@ -11939,6 +11943,7 @@ class LibvirtConnTestCase(test.NoDBTestCase, - 'migrate_disks': device_names, - 'bandwidth': CONF.libvirt.live_migration_bandwidth, - 'destination_xml': '', -+ 'persistent_xml': '', - } - if not params['migrate_disks']: - del params['migrate_disks'] -@@ -12078,6 +12083,7 @@ class LibvirtConnTestCase(test.NoDBTestCase, - 'migrate_disks': disk_paths, - 'bandwidth': CONF.libvirt.live_migration_bandwidth, - 'destination_xml': '', -+ 'persistent_xml': '', - } - - # Prepare mocks -diff --git a/nova/tests/unit/virt/libvirt/test_guest.py b/nova/tests/unit/virt/libvirt/test_guest.py -index 55642c66f66..51899b730b3 100644 ---- a/nova/tests/unit/virt/libvirt/test_guest.py -+++ b/nova/tests/unit/virt/libvirt/test_guest.py -@@ -682,6 +682,7 @@ class GuestTestCase(test.NoDBTestCase): - 'an-uri', flags=1, params={'migrate_uri': 'dest-uri', - 'migrate_disks': 'disk1', - 'destination_xml': '', -+ 'persistent_xml': '', - 'bandwidth': 2}) - - @testtools.skipIf(not six.PY2, 'libvirt python3 bindings accept unicode') -@@ -699,6 +700,7 @@ class GuestTestCase(test.NoDBTestCase): - 'migrate_disks': ['disk1', - 'disk2'], - 'destination_xml': expect_dest_xml, -+ 'persistent_xml': expect_dest_xml, - 'bandwidth': 2}) - - def test_abort_job(self): -diff --git a/nova/virt/libvirt/guest.py b/nova/virt/libvirt/guest.py -index 0d485eb86d9..46593247303 100644 ---- a/nova/virt/libvirt/guest.py -+++ b/nova/virt/libvirt/guest.py -@@ -638,6 +638,7 @@ class Guest(object): - - if destination_xml: - params['destination_xml'] = destination_xml -+ params['persistent_xml'] = destination_xml - if migrate_disks: - params['migrate_disks'] = migrate_disks - if migrate_uri: --- -2.26.2 - diff --git a/sys-cluster/nova/nova-22.0.1.ebuild b/sys-cluster/nova/nova-22.0.1.ebuild new file mode 100644 index 000000000000..4f4d7b2b35ea --- /dev/null +++ b/sys-cluster/nova/nova-22.0.1.ebuild @@ -0,0 +1,213 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_7 python3_8 ) +DISTUTILS_USE_SETUPTOOLS=rdepend +inherit distutils-r1 eutils linux-info multilib + +DESCRIPTION="Cloud computing fabric controller" +HOMEPAGE="https://launchpad.net/nova" + +if [[ ${PV} == *9999 ]];then + inherit git-r3 + SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/victoria/nova.conf.sample -> nova.conf.sample-${PV}" + EGIT_REPO_URI="https://github.com/openstack/nova.git" + EGIT_BRANCH="stable/victoria" +else + SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/victoria/nova.conf.sample -> nova.conf.sample-${PV} + https://tarballs.openstack.org/${PN}/${P}.tar.gz" + KEYWORDS="~amd64 ~arm64 ~x86" +fi + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="+compute compute-only iscsi +memcached +mysql +novncproxy openvswitch postgres +rabbitmq sqlite" +REQUIRED_USE=" + !compute-only? ( || ( mysql postgres sqlite ) ) + compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite )" + +CDEPEND=" + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]" +DEPEND=" + ${CDEPEND} + app-admin/sudo" + +RDEPEND=" + ${CDEPEND} + compute-only? ( + >=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}] + ) + sqlite? ( + >=dev-python/sqlalchemy-1.2.19[sqlite,${PYTHON_USEDEP}] + ) + mysql? ( + >=dev-python/pymysql-0.7.6[${PYTHON_USEDEP}] + !~dev-python/pymysql-0.7.7[${PYTHON_USEDEP}] + >=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}] + ) + postgres? ( + >=dev-python/psycopg-2.5.0[${PYTHON_USEDEP}] + >=dev-python/sqlalchemy-1.2.19[${PYTHON_USEDEP}] + ) + >=dev-python/decorator-4.1.0[${PYTHON_USEDEP}] + >=dev-python/eventlet-0.22.0[${PYTHON_USEDEP}] + >=dev-python/jinja-2.10[${PYTHON_USEDEP}] + >=dev-python/keystonemiddleware-4.17.0[${PYTHON_USEDEP}] + >=dev-python/lxml-4.5.0[${PYTHON_USEDEP}] + >=dev-python/routes-2.3.1[${PYTHON_USEDEP}] + >=dev-python/cryptography-2.7[${PYTHON_USEDEP}] + >=dev-python/webob-1.8.2[${PYTHON_USEDEP}] + >=dev-python/greenlet-0.4.15[${PYTHON_USEDEP}] + >=dev-python/pastedeploy-1.5.0-r1[${PYTHON_USEDEP}] + >=dev-python/paste-2.0.2[${PYTHON_USEDEP}] + >=dev-python/prettytable-0.7.1[${PYTHON_USEDEP}] + =dev-python/sqlalchemy-migrate-0.13.0[${PYTHON_USEDEP}] + >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}] + >=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}] + >=dev-python/paramiko-2.7.1[${PYTHON_USEDEP}] + >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}] + >=dev-python/jsonschema-3.2.0[${PYTHON_USEDEP}] + >=dev-python/python-cinderclient-3.3.0[${PYTHON_USEDEP}] + !~dev-python/python-cinderclient-4.0.0[${PYTHON_USEDEP}] + >=dev-python/keystoneauth-3.16.0[${PYTHON_USEDEP}] + >=dev-python/python-neutronclient-6.7.0[${PYTHON_USEDEP}] + >=dev-python/python-glanceclient-2.8.0[${PYTHON_USEDEP}] + >=dev-python/requests-2.23.0[${PYTHON_USEDEP}] + >=dev-python/six-1.11.0[${PYTHON_USEDEP}] + >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}] + >=dev-python/websockify-0.9.0[${PYTHON_USEDEP}] + >=dev-python/oslo-cache-1.26.0[${PYTHON_USEDEP}] + >=dev-python/oslo-concurrency-3.29.0[${PYTHON_USEDEP}] + >=dev-python/oslo-config-6.8.0[${PYTHON_USEDEP}] + >=dev-python/oslo-context-2.22.0[${PYTHON_USEDEP}] + >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}] + >=dev-python/oslo-reports-1.18.0[${PYTHON_USEDEP}] + >=dev-python/oslo-serialization-1.21.0[${PYTHON_USEDEP}] + >=dev-python/oslo-upgradecheck-0.1.1[${PYTHON_USEDEP}] + !~dev-python/oslo-serialization-2.19.1[${PYTHON_USEDEP}] + >=dev-python/oslo-utils-4.5.0[${PYTHON_USEDEP}] + >=dev-python/oslo-db-4.44.0[${PYTHON_USEDEP}] + >=dev-python/oslo-rootwrap-5.8.0[${PYTHON_USEDEP}] + >=dev-python/oslo-messaging-10.3.0[${PYTHON_USEDEP}] + >=dev-python/oslo-policy-3.4.0[${PYTHON_USEDEP}] + >=dev-python/oslo-privsep-1.33.2[${PYTHON_USEDEP}] + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}] + >=dev-python/oslo-service-1.40.1[${PYTHON_USEDEP}] + >=dev-python/rfc3986-1.2.0[${PYTHON_USEDEP}] + >=dev-python/oslo-middleware-3.31.0[${PYTHON_USEDEP}] + >=dev-python/psutil-3.2.2[${PYTHON_USEDEP}] + >=dev-python/oslo-versionedobjects-1.35.0[${PYTHON_USEDEP}] + >=dev-python/os-brick-3.1.0[${PYTHON_USEDEP}] + >=dev-python/os-resource-classes-0.4.0[${PYTHON_USEDEP}] + >=dev-python/os-traits-2.4.0[${PYTHON_USEDEP}] + >=dev-python/os-vif-1.14.0[${PYTHON_USEDEP}] + >=dev-python/os-win-4.2.0[${PYTHON_USEDEP}] + >=dev-python/castellan-0.16.0[${PYTHON_USEDEP}] + >=dev-python/microversion-parse-0.2.1[${PYTHON_USEDEP}] + >=dev-python/os-xenapi-0.3.4[${PYTHON_USEDEP}] + >=dev-python/tooz-1.58.0[${PYTHON_USEDEP}] + >=dev-python/cursive-0.2.1[${PYTHON_USEDEP}] + >=dev-python/pypowervm-1.1.15[${PYTHON_USEDEP}] + >=dev-python/retrying-1.3.3[${PYTHON_USEDEP}] + >=dev-python/os-service-types-1.7.0[${PYTHON_USEDEP}] + >=dev-python/taskflow-3.8.0[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-2.5.3[${PYTHON_USEDEP}] + >=dev-python/zVMCloudConnector-1.3.0[${PYTHON_USEDEP}] + >=dev-python/openstacksdk-0.35.0[${PYTHON_USEDEP}] + >=dev-python/pyyaml-3.13[${PYTHON_USEDEP}] + dev-python/libvirt-python[${PYTHON_USEDEP}] + app-emulation/libvirt[iscsi?] + app-emulation/spice-html5 + novncproxy? ( www-apps/novnc ) + sys-apps/iproute2 + openvswitch? ( net-misc/openvswitch ) + rabbitmq? ( net-misc/rabbitmq-server ) + memcached? ( + net-misc/memcached + >=dev-python/python-memcached-1.58 + ) + sys-fs/sysfsutils + sys-fs/multipath-tools + net-misc/bridge-utils + compute? ( + app-cdr/cdrtools + sys-fs/dosfstools + app-emulation/qemu + ) + iscsi? ( + sys-fs/lsscsi + >=sys-block/open-iscsi-2.0.873-r1 + ) + acct-user/nova + acct-group/nova" + +#PATCHES=( +#) + +pkg_setup() { + linux-info_pkg_setup + CONFIG_CHECK_MODULES="BLK_DEV_NBD VHOST_NET IP6_NF_FILTER IP6_NF_IPTABLES IP_NF_TARGET_REJECT \ + IP_NF_MANGLE IP_NF_TARGET_MASQUERADE NF_NAT_IPV4 IP_NF_FILTER IP_NF_IPTABLES \ + NF_CONNTRACK_IPV4 NF_DEFRAG_IPV4 NF_NAT_IPV4 NF_NAT NF_CONNTRACK NETFILTER_XTABLES \ + ISCSI_TCP SCSI_DH DM_MULTIPATH DM_SNAPSHOT" + if linux_config_exists; then + for module in ${CONFIG_CHECK_MODULES}; do + linux_chkconfig_present ${module} || ewarn "${module} needs to be enabled in kernel" + done + fi +} + +python_prepare_all() { + sed -i '/^hacking/d' test-requirements.txt || die + distutils-r1_python_prepare_all +} + +python_install_all() { + distutils-r1_python_install_all + + if use !compute-only; then + for svc in api conductor consoleauth network scheduler spicehtml5proxy xvpvncproxy; do + newinitd "${FILESDIR}/nova.initd" "nova-${svc}" + done + fi + use compute && newinitd "${FILESDIR}/nova.initd" "nova-compute" + use novncproxy && newinitd "${FILESDIR}/nova.initd" "nova-novncproxy" + + diropts -m 0750 -o nova -g qemu + dodir /var/log/nova /var/lib/nova/instances + diropts -m 0750 -o nova -g nova + + insinto /etc/nova + insopts -m 0640 -o nova -g nova + newins "${DISTDIR}/nova.conf.sample-${PV}" "nova.conf.sample" + doins "${FILESDIR}/nova-compute.conf" + doins "${S}/etc/nova/"* + # rootwrap filters + insopts -m 0644 + insinto /etc/nova/rootwrap.d + doins "etc/nova/rootwrap.d/compute.filters" + + # add sudoers definitions for user nova + insinto /etc/sudoers.d/ + insopts -m 0600 -o root -g root + doins "${FILESDIR}/nova-sudoers" + + if use iscsi ; then + # Install udev rules for handle iscsi disk with right links under /dev + udev_newrules "${FILESDIR}/openstack-scsi-disk.rules" 60-openstack-scsi-disk.rules + + insinto /etc/nova/ + doins "${FILESDIR}/scsi-openscsi-link.sh" + fi + rm -r "${ED}/usr/etc" +} + +pkg_postinst() { + if use iscsi ; then + elog "iscsid needs to be running if you want cinder to connect" + fi +} diff --git a/sys-devel/Manifest.gz b/sys-devel/Manifest.gz index 42688d6893ec..b7b1764aa6e1 100644 Binary files a/sys-devel/Manifest.gz and b/sys-devel/Manifest.gz differ diff --git a/sys-devel/automake/automake-1.16.2-r1.ebuild b/sys-devel/automake/automake-1.16.2-r1.ebuild index b43cfe295120..5b09200f30e1 100644 --- a/sys-devel/automake/automake-1.16.2-r1.ebuild +++ b/sys-devel/automake/automake-1.16.2-r1.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == 9999 ]] ; then inherit git-r3 else - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" + KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" if [[ ${PV/_beta} == ${PV} ]]; then MY_P="${P}" SRC_URI="mirror://gnu/${PN}/${P}.tar.xz diff --git a/sys-devel/bison/bison-3.6.4.ebuild b/sys-devel/bison/bison-3.6.4.ebuild index 471513e39d76..4247649b27f7 100644 --- a/sys-devel/bison/bison-3.6.4.ebuild +++ b/sys-devel/bison/bison-3.6.4.ebuild @@ -10,7 +10,6 @@ PATCHES="${PN}-3.6.3-patches-01.tar.xz" DESCRIPTION="A general-purpose (yacc-compatible) parser generator" HOMEPAGE="https://www.gnu.org/software/bison/" SRC_URI="mirror://gnu/${PN}/${P}.tar.xz - mirror://gentoo/${PATCHES} https://dev.gentoo.org/~whissi/dist/bison/${PATCHES} https://dev.gentoo.org/~polynomial-c/dist/bison/${PATCHES}" diff --git a/sys-devel/bison/bison-3.7.1-r1.ebuild b/sys-devel/bison/bison-3.7.1-r1.ebuild index 03e84b97c73a..a7ca15209937 100644 --- a/sys-devel/bison/bison-3.7.1-r1.ebuild +++ b/sys-devel/bison/bison-3.7.1-r1.ebuild @@ -10,7 +10,6 @@ PATCH_TAR="${PN}-3.7.1-patches-01.tar.xz" DESCRIPTION="A general-purpose (yacc-compatible) parser generator" HOMEPAGE="https://www.gnu.org/software/bison/" SRC_URI="mirror://gnu/${PN}/${P}.tar.xz - mirror://gentoo/${PATCH_TAR} https://dev.gentoo.org/~whissi/dist/bison/${PATCH_TAR} https://dev.gentoo.org/~polynomial-c/dist/bison/${PATCH_TAR}" diff --git a/sys-devel/bison/bison-3.7.3.ebuild b/sys-devel/bison/bison-3.7.3.ebuild index a123b190e3d0..8a91a8bc81aa 100644 --- a/sys-devel/bison/bison-3.7.3.ebuild +++ b/sys-devel/bison/bison-3.7.3.ebuild @@ -10,7 +10,6 @@ PATCH_TAR="${PN}-3.7.3-patches-01.tar.xz" DESCRIPTION="A general-purpose (yacc-compatible) parser generator" HOMEPAGE="https://www.gnu.org/software/bison/" SRC_URI="mirror://gnu/${PN}/${P}.tar.xz - mirror://gentoo/${PATCH_TAR} https://dev.gentoo.org/~whissi/dist/bison/${PATCH_TAR} https://dev.gentoo.org/~polynomial-c/dist/bison/${PATCH_TAR}" @@ -18,8 +17,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="examples nls static test" -RESTRICT="!test? ( test ) - mirror" +RESTRICT="!test? ( test )" # gettext _IS_ required in RDEPEND because >=bison-3.7 links against # libtextstyle.so!!! (see bug #740754) diff --git a/sys-devel/bison/bison-3.7.4.ebuild b/sys-devel/bison/bison-3.7.4.ebuild index a123b190e3d0..8a91a8bc81aa 100644 --- a/sys-devel/bison/bison-3.7.4.ebuild +++ b/sys-devel/bison/bison-3.7.4.ebuild @@ -10,7 +10,6 @@ PATCH_TAR="${PN}-3.7.3-patches-01.tar.xz" DESCRIPTION="A general-purpose (yacc-compatible) parser generator" HOMEPAGE="https://www.gnu.org/software/bison/" SRC_URI="mirror://gnu/${PN}/${P}.tar.xz - mirror://gentoo/${PATCH_TAR} https://dev.gentoo.org/~whissi/dist/bison/${PATCH_TAR} https://dev.gentoo.org/~polynomial-c/dist/bison/${PATCH_TAR}" @@ -18,8 +17,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="examples nls static test" -RESTRICT="!test? ( test ) - mirror" +RESTRICT="!test? ( test )" # gettext _IS_ required in RDEPEND because >=bison-3.7 links against # libtextstyle.so!!! (see bug #740754) diff --git a/sys-devel/crossdev/Manifest b/sys-devel/crossdev/Manifest index f227200edefe..39971a6c186e 100644 --- a/sys-devel/crossdev/Manifest +++ b/sys-devel/crossdev/Manifest @@ -1,2 +1,3 @@ DIST crossdev-20200801.tar.xz 28268 BLAKE2B 36f22a2d1422d5f9e27a5559a8c141462853c4dc011ec98c66d235ef262ea9408fd5054b578963fd17ef630ea63e72c068d216f6ffbea7d191d1374a6ecc4033 SHA512 331af1525cdfc66380621b764bfc63178ce962b9071408d1ee08480caad9c0e4782a8fa5e5f3500fd2ea03ccd322895cc95d80106ad9e5b97a0e09ef5d88c94b DIST crossdev-20201108.tar.xz 28312 BLAKE2B 2fe86fb7e1b9ed8a3986efcee9bba06a810cf03f00496eee49870e0a9c0a589b8ae461811bf83c76dd22c59e344ddacaeab2ae215aa8f58f3b2e7490399528fc SHA512 28cf1807845c4cc4291c8d576119dbe362ea0f31504ae7a96dbdee636033eab511004b0a8988c4d7425017c3f281b6afa1644db4f9f310a08d69fd7fcd6cdbe0 +DIST crossdev-20201122.tar.xz 28308 BLAKE2B 66da19024dd03e98ff0f388cdb9bf76a968ef4ac920249e9a782d46c1d32a4cb3047a0aa2d9619a054b9894ef30624ce99bb45f9c45b937fbb280a8a298aede8 SHA512 bbd7ab6a8ea0d2cb13f822277d9b8c19478368b2f365aaa60bd2548b47f9e7a582805593b683631ebb20bfb6d2f496f2d3a5eb6d144207fab58607565a8d1a41 diff --git a/sys-devel/crossdev/crossdev-20201122.ebuild b/sys-devel/crossdev/crossdev-20201122.ebuild new file mode 100644 index 000000000000..809478863946 --- /dev/null +++ b/sys-devel/crossdev/crossdev-20201122.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == "99999999" ]] ; then + inherit git-r3 + EGIT_REPO_URI="git://anongit.gentoo.org/proj/crossdev.git" +else + SRC_URI="mirror://gentoo/${P}.tar.xz + https://dev.gentoo.org/~slyfox/distfiles/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +fi + +DESCRIPTION="Gentoo Cross-toolchain generator" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Crossdev" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +RDEPEND=" + >=sys-apps/portage-2.1 + >=app-portage/portage-utils-0.55 + app-shells/bash + sys-apps/gentoo-functions +" +DEPEND="app-arch/xz-utils" + +src_install() { + default + + if [[ "${PV}" == "99999999" ]] ; then + sed -i "s:@CDEVPV@:${EGIT_VERSION}:" "${ED}"/usr/bin/crossdev || die + fi +} diff --git a/sys-fs/Manifest.gz b/sys-fs/Manifest.gz index fb35df17799b..5759a15c8d72 100644 Binary files a/sys-fs/Manifest.gz and b/sys-fs/Manifest.gz differ diff --git a/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild b/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild index 3af20e38759a..e3ff5f5c7d04 100644 --- a/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild +++ b/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild @@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 arm ~arm64 ~hppa ~mips sparc x86" +KEYWORDS="amd64 arm ~arm64 hppa ~mips sparc x86" IUSE="doc" DEPEND="doc? ( app-doc/doxygen )" diff --git a/sys-kernel/Manifest.gz b/sys-kernel/Manifest.gz index f3308d3217a3..52cdb7fb118a 100644 Binary files a/sys-kernel/Manifest.gz and b/sys-kernel/Manifest.gz differ diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 86389e5c50d9..861199d92b27 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -10,6 +10,9 @@ DIST genpatches-4.14-216.extras.tar.xz 3340 BLAKE2B 3beb784ec623f4b31cf5335280d0 DIST genpatches-4.14-217.base.tar.xz 4713148 BLAKE2B 0a08958b9dd24ec5cdf64a6a1a26374eb6cc69a284e2f0d9c090679d86ec74ca48952935bfa1a6e015af24284d82ea3e3d906bb66531d54c5c3602a8187d5f3a SHA512 30ff4d11b99caa950623ecdd2b5ee0095dd2159e015219f3311680d75d3fc0ef1c1bfcb6a4dfa38961c40916fcc362563f353b8ae87be044153c16023d155033 DIST genpatches-4.14-217.experimental.tar.xz 6092 BLAKE2B b473b6244cd6e4b59189499dadadc969e488d5cc134dc1deee7e2a5266cd1dbad94c9bc938f33a27c5081c5efac099a8c1085c29872e15b08e363c98527facbe SHA512 75534f2dda2fd39a8a7417e154db3a3a58c119c444a65ebdfd7c5ee6d84494395d72a8998b16f8c35d8c0b71c8dc4bbf0c9baa08fb642c073ff406e0359874ae DIST genpatches-4.14-217.extras.tar.xz 3340 BLAKE2B 38d205410f060e5f8020fda6ff3bd8a6bfc930663cc4a0e13633ac82763cc4343a72874390fdc257c74b6bb9f02bf2825f635f8f653057dcf345d80a9a873704 SHA512 8944d0c1aff6dc667e6534c821dc5d2510da404c0887a4888e230684a61df42542cbbf897d63382aaa2cd432ca08579ea81c3b2b96f48d3536afcf72b8a50a4c +DIST genpatches-4.14-218.base.tar.xz 4721032 BLAKE2B 97f9cdc16a356abfde2797a1fefbcf795ad921de4099930358ab3019198acdffdb0f873cf29cd8d859cfc90400b089b1908dc9f5496375a6b55cf3ddd182235a SHA512 b69162c08f2a25e777dc4f59fb66f00080cf27a5d3f4b130a076fefd646f69265976abebc84a1eb80bcedc2b6c2ed774b75878929c62e6338748124d718247d8 +DIST genpatches-4.14-218.experimental.tar.xz 6092 BLAKE2B 77ab57710bdf44da43f80badfa804bda861d6cae31dc49dfce95340d155bcabce4a44268bb91e86121bd7d2a9f6b44c14d36d974091afdda00f14ceb76770604 SHA512 3b45e0c9894b4e2069be3218347a5741710b112eea7e0bdc9ff2cf2ad18a4d0e2627e5c2db2e882446745108909c5f4f283796223c95ba723c704ebc218a8985 +DIST genpatches-4.14-218.extras.tar.xz 3340 BLAKE2B 29f052e3b1a79e7be43818324d01cc80b04006f57da9aa79dac9dc79a6c5451caecfd44ccca58c63202c9e330ac036424cd0f0f777f45960a776e741211d29c9 SHA512 4805e840b0b89814ccbfe204d9ff248374a526120c1c595bc8d0acdf5cb41f134e36ab157b635c6e5aab9fc98a8bbdc56df3c7882a7e3a6aaa6f67e0be8c5503 DIST genpatches-4.19-151.base.tar.xz 4004372 BLAKE2B ab830d3f5ae37f48d4aa71e6b9913498397c00fe17630184b7283b42415ed55b2a3fe0d9d3c619923f43c8e244b476ed28916f0dc2e44c53dc8022a21ad152f8 SHA512 0b7d374b9dbd90f99ae73537e543d19c253d219ffea77e56a1c6825516d94f5bf4e2d85323f5a7318e0b8b5233e8b7363fbb2962e60c09b5c9825b1718bc7ae9 DIST genpatches-4.19-151.experimental.tar.xz 6976 BLAKE2B 136a9a1f5de573917000f3b41f28a6bf84b61588cc8d61824d43df5fd191feb4608a55e5418633f18df9002dde899670a03b9713feaddf6b60b64c207005c256 SHA512 1650b33e6a3a431d91c3d9f054bcfe6a3bf3a93d2eda87beb23af93846f4b04ff8b67f31e71361584bd8963e2cacdecea7c33ad15e273c3b708aa353467afce8 DIST genpatches-4.19-151.extras.tar.xz 3316 BLAKE2B fd6adfc4ce72c3a84b4821c6adcc79cf421e30609c1556dd9534b851faec4b5eb92210a48d2cf5e3c4a34781fefd4101ee6ede03808bbccd5aeb5875cc9d4515 SHA512 288a504278449d0646377e9e6b5191787fc218d5912a2298b7243a0cf8cddb21a7108449e9868f36c6e97e43081e8eafa880093ad1d87673f670042e31467e59 @@ -22,6 +25,9 @@ DIST genpatches-4.19-156.extras.tar.xz 3316 BLAKE2B b09dd535332748d61bdf246b8f35 DIST genpatches-4.19-157.base.tar.xz 4150048 BLAKE2B dae9ffdc5c54bc6c6c5186949fc0fc8857ada76d02df699abc8dbc575e5d465eda1cc227811c371eea84ccec1dcf8a0a1c74bbf27568015a3733bd53580c12e0 SHA512 0dc898835f66858d01e8d693950392d9eb2369f51d245c0562757e3be5b4734721212d3593bc28e36988627a6f71752c3fb6285728449550376ef5558486625d DIST genpatches-4.19-157.experimental.tar.xz 6976 BLAKE2B b761a8f50d59400bfbfc9afe16cb8f0f5a3ee004c92229c5b9d8c80037527f0e10bac6a5372c45348ff4de46e0f359b7f21abcc837acc010414802f59ede0970 SHA512 ea6753cf8154f54f786a9fbd02ea79ed05353b3a23e8fa20269f901e5cde55162292716d06e47c9e290766f1d7a180dcddb51f5c84b3e3d0ffd8742f16d47be3 DIST genpatches-4.19-157.extras.tar.xz 3316 BLAKE2B 0a52c4b658e41c06fca03c3d9fa7c9154a191d909714a03c93c7fdebba2a0c48b5b5985f0ab039e1cc9834ac1929def3937437a353807f693ef8867e28ebc48d SHA512 bd95c25565981a5c18aca01b45d35a1c53a08551212639e5e826c002c9edd9accccf6b6266950c537490fa953f1c9fd81c43a3e7b88816ed80e47811da03cf20 +DIST genpatches-4.19-158.base.tar.xz 4157828 BLAKE2B d077a99a5d574f5666e9021d3c4f63a84b5135941e26356a02908138e22ca91438444a3d980fbc4878d56ea6d14b603a52b42c64b04e36ea7f93ea77878fe18e SHA512 12b14f66cb493fb78d4d45e5c2a0a521bfc702222cb6f9b35b1ec52cb5601035ecdfa8e648252435e81bb360ae793dd95dc5f5ed26e95fe4246b1eab48a2b917 +DIST genpatches-4.19-158.experimental.tar.xz 6984 BLAKE2B 55ccb09443c9bb5ba233fd81391726ecbb8a8fc301a9ebff74f2cd2db8d34a554b3c8e0ddf5ea4826c550ee437a8d37c279c6701adb01ddec39bf9765134ab15 SHA512 2c5df15ee119b79916f236df30ac084721655db14abb787f87295b8ea4d607c7a02189cce273f04404c77c6ff93604e146182d83820cec1942e34f1d1f5445ef +DIST genpatches-4.19-158.extras.tar.xz 3320 BLAKE2B a0e1ad33e71fb8b22bd7136d53f302642e2295c057d0c21650b90780c5d07df1d872cd6fc162547c8e01401ea88b2a9e46558f6bef131aed5eb733235fc4bfc1 SHA512 4925caab41d1214409c86df76d7d55d5be2dc0034725242dbd6da1ba031b4a2a68ece28eece1942c34ab42f366b99c9a55ccb1ed9201fbd4255009b7cdc65cbb DIST genpatches-4.4-242.base.tar.xz 3875244 BLAKE2B 68290360fa72bdf29eb6233ac762cb74d3cd8839f4e46d972e86c85944468f15ebc183efba6f8e28d8e64b1dd5568ab81f1b42178cc3606ccccda82566fdf817 SHA512 daa0026c97721043963dd02b9996c6a84ffc82e046533ab20b70520b3d7711288816ae3a98bbea671ae0d06b675d727dc508a38d82de3ea126ba8dd797c5d680 DIST genpatches-4.4-242.experimental.tar.xz 83280 BLAKE2B 1af36c13ce2967a172436a3ebacee54e46a49478a5ef01aec66c428a9d885b638dbce2eb15276a602dc9d90866175baee5b04f3e8ba6e0478c9a10e23a2062cf SHA512 e9a0ebd1016b170e89889c59d0020c6e3a28fb0576a13f65b5adf764c950df65d64f2cf8a75d8e5c09131c8429612e112a4a452aeead3e74c96ebd0a8b12039b DIST genpatches-4.4-242.extras.tar.xz 1788 BLAKE2B f511bd0b8c25664b89951a7c990e1649ba765043ef6f6b37e0f5a7b63a4c234f0366319323cf8c463faf592190f226b17958a8cf515c307262f93af1e4d62085 SHA512 2822691dc7ed45753fc4fa972e1941bad589448c450f6948678c64e4078f50dc24abb0bdb9323e0e02c82e3dfb88174376f8f02cb54bcf52b0b283a905c6b4ca @@ -37,6 +43,9 @@ DIST genpatches-4.4-245.extras.tar.xz 1788 BLAKE2B a581faf05ea1e67cffa42e090d093 DIST genpatches-4.4-246.base.tar.xz 3936560 BLAKE2B 5cba2873f98ef0cd562060de350f56a4712b5ef8b1e08691abd8d31e6223a183ef454a6650c037796c36a78572328cb957e06add622e4b3186aba84320bcbc29 SHA512 dc259b2c2bd0395db51f8dbb7bf4b89b07af4eea7a22fe6c415de82161a2744878314133c5bb7812a3a5dc8ff3bf07f3e004bfd43db867617301d6e1c67f969d DIST genpatches-4.4-246.experimental.tar.xz 83308 BLAKE2B f1b68431c7c5fc728b74b2f9d623eef98c5495d06b3c2c8c6595f44434a708b5e13abfc3f09ef6ac47e1a80dbb9c155db95eef59be06d2847a4191469946fb87 SHA512 9272d912654ee411a7a2643a8ec9df800919673f105c2c45f7bff695b45fd2618fdbd55f0f84662e2b4e968008a7ba7cc92f7b696fc93c982ce00e38ecd740d2 DIST genpatches-4.4-246.extras.tar.xz 1788 BLAKE2B 617fbefb31fc9f1d9dfddef678927a2803001db7d7abb995c6552ef48863e9998bddf270a3504d5da37d398cde62c48d681bd633bb1068d287ecebaf8d19a1ba SHA512 b493874f8a718ac17c2d2325175270e915906b90681f260755929f37ab0774fc8389745591f7beb1ade55d1f4bcc99521ef1b7e88de0205cb40b894185a4ea32 +DIST genpatches-4.4-247.base.tar.xz 3944048 BLAKE2B 2a9ec0afa4068a125f4a3d52ec2ff7b793da5b8b51361fc92024d9293caa4999e84d854adae02a83e9f7861cada38a6566b51d9e4ce5aea91d2461dd71ca9ce7 SHA512 995880e031ac7108dbdff24ddc5b5ebe47460e715877fa32871cb1df651d0d1eadc2c00a759d93347f6eef95f1cf08b9f51e4095ad384de3c70837015d80701b +DIST genpatches-4.4-247.experimental.tar.xz 83304 BLAKE2B eef456c03cd5d4e0c228c9320e8f4752dc3a593d972bd36f826ceef25dd0396e7cda4a68ce21d17f60232fe1877f4ea79d2e149afe2fce0ee205c855273dd520 SHA512 9bf85fbf97a053151fa3095a3367deef5a448c02407ad52b646d88139ea93afa4016931fe41146e424bde8a142156b5e01fc06f4db0a9af92eccab2ab2ae1d18 +DIST genpatches-4.4-247.extras.tar.xz 1788 BLAKE2B f0227bcd6db73a2469f29830192ac10625449703fb1dd43291d7f1713e1dde58641bb8c759af1e254779e294050059f1529236acb116a7cf1d37f3e175683bf2 SHA512 a11be88711b2049c7d5a8fbf5461e200965301f91db72c56dddde0aae7a86cf780a8f2fd1415991a0092135ded006a467fb3318c00f083a67f9019b828b07ddb DIST genpatches-4.9-244.base.tar.xz 4329708 BLAKE2B 564e2a065bf6e017419b74fb8485194ed4b4f4a0025dafefbe7c9feb0fcad78fe7f1fbfbf5c6b2f12a9953bfe91f98939f495f49052bd8a5cde67a4bd6df0443 SHA512 03d7599c0223162d33ca398807086bc5c5f7b56d08f7e82d32c17b630348f3c7fce3505d02d3ef3524e9b1ca85228196c989dc4cbb56e3398a56d5bffd18a111 DIST genpatches-4.9-244.experimental.tar.xz 106376 BLAKE2B 22e39755ae9122137ea20037048fc493024f23cefc73d46fac6f41db903ca217c214592d9a3e178a0669f827c1a5ccd7d0bdf5a7fbe9046205b436ac2fffd224 SHA512 1e3f4ef55a3321964582c8ec6d81876977f2a6154bd1a880a31d25b1bd73ec6f51dd4ab3425717bad973bb886f376ffb65e58df4048a6d86823c665c98ab2c15 DIST genpatches-4.9-244.extras.tar.xz 3340 BLAKE2B a04e319c89064205c0e8a5308fcf50e5bd6be6b77630cb4cd8b81fdb3dfe7020e78cedfd297125e9c7235b45291f6973fba53fe31cf75b200fee61f7a62ada2a SHA512 5750914ef1564766c3d27f3fcc814311b021690647c293ef58d40d09f8737559ecb235b3632bb18c307736dbc96cd9b39c53bb351c94d204295a273b60b73cb7 @@ -52,6 +61,9 @@ DIST genpatches-4.9-247.extras.tar.xz 3336 BLAKE2B 18e0dfefb59239acb2d6e1eb2dd76 DIST genpatches-4.9-248.base.tar.xz 4407200 BLAKE2B 2ec657d75fe8bc68fbd5173d6b58b336248e6cfd8700924772cc39c0151f69486230d015d685f03069a0eda867c52d834d693826d9dfa22c7801f0425b7c27c8 SHA512 8f334ae27a5a24808bafcac575120cf7bf4ae35d00538a31e9ff9a10f4507f260d59d3a0d7c666ce3f19c7afb4d5b8b16850fa5484e7021c5e5548578d3e5d4c DIST genpatches-4.9-248.experimental.tar.xz 106364 BLAKE2B 19a286923c1e5e594b4a5c37039c8df5069581b866b03657c362b33315c10d2cad6fabd0513c8e55c9ea5ab24e3fbb1ec3fc6f902dc173edbac46148551fee84 SHA512 2d33046fea48d2a94b8b254f6889246740e4cab92a8c36bffb411b9f58decf089b81144f56120a4c1eb3eaf05abcd68587433d10f075673e33babcc26a7d70c7 DIST genpatches-4.9-248.extras.tar.xz 3340 BLAKE2B d07b5e6457912b55eeb8624d6adc33edc61ca053c91d7718eba48d28da91141ba549a764a927801288370adfbf34312ab9f18fb67659c18cdc2042bbf7478581 SHA512 1b2e146481587d0327e8888c7b1f5a964fc8f4dd1668f6cf46484c03024a148f7b0e0309289e29fb3a848b9d38b3f279d46b5fae0a684823e880eefbbcbbf40e +DIST genpatches-4.9-249.base.tar.xz 4414788 BLAKE2B e3f1e03210c2b8121a95ead8b1f2fc11d8c6f3c57c873994a6bea9d694b8a528ee8977db1e34395d550ba0c265aee27965ef74abc3edc798c441d20f2b4f5d20 SHA512 60aff1b5e3901cb685a6f5345698a1a0eee39f442f3c8b063e96ff8949811e51291cea1e0c4060e994ebfe13657f8216f83ae21986e49af9f2f833e212260791 +DIST genpatches-4.9-249.experimental.tar.xz 106392 BLAKE2B b538546b52c83f79d85e90b6a0a8f9de91b0b5dba1f296c524ed25fa8c8e00dc1c0e4e2f425a2198a95825498628f50812aa8d218f67e7cbd9767ec86ac43d16 SHA512 8ecc103a00cb83af43047e0576c56c2f203941c7ea0c964fd23ffa8915f03b30746598d8ef9d4ac30bf31712d3f2df587d7ff2427fd4cd487927c57d307a43fa +DIST genpatches-4.9-249.extras.tar.xz 3340 BLAKE2B 649ec90c746481dbb215aa7eeb88246b1f041b6f05552b3c08cef71039a932d42226190e1dd0e781a2bcc3a49f6963064cdec991be3f689a39b19b4c6ae3fa1b SHA512 10983260f4b636f0018b16cd8c2611ada8bdaaed26756d899f2307d8ff9da1711b11040747507105facaf562f7d4e85b442c06c98fbb9122528e796c938fc1ec DIST genpatches-5.4-73.base.tar.xz 2527064 BLAKE2B 6e0b392681d6e5e709a02c1c8f15fe06ef1651f1530506982feec7fd436aa04ea75079eeb5d3a61c91bcbb46c59a232cb8cb67c62fa7b2e8b289591142dd9430 SHA512 db987b95895fc37243e3697f3ef8f33787489e173fefb84ad09a6600898b2b9b285d9113e6f867aab0c3d5b4c65398f4bcbc40a4220f3cf2b355da9def209dae DIST genpatches-5.4-73.experimental.tar.xz 6696 BLAKE2B e722d747bcb24b501f3d63c8f6fdade889b620794bdd6fe0931c044147d32f5d9b3fe503fb9afe476cf1e791ca0d1247edb47df3a1d547c99e9a3107a2522139 SHA512 7ae9228a9677f3b7888ff8286b1db8ca5cad14fe829efbcb8da8dfe7e82bdeac95368a0dfb2e7bbf0ea82a2b103f5c2ee3c99826c89eec7e07f3be70bcd51430 DIST genpatches-5.4-73.extras.tar.xz 1772 BLAKE2B 7475a0907f287fef28ee8bf220932528107bbac0d612dc05de6ca8b2dd86ddf37d9acea31ab2977a677f6ea3a19c594737b23e504da405fa811c4d0faf00b94a SHA512 751898547b1f60070f1d8431cd89daff55e33473c8fe68415a15e3b8079ae2d3e44318815ba47a1ce9750feb1cac1812eb8eb7765426b204eb1357993cc68cb0 @@ -64,9 +76,15 @@ DIST genpatches-5.4-78.extras.tar.xz 1772 BLAKE2B 2b1790308dfe3bcfbd74ff7293fb08 DIST genpatches-5.4-79.base.tar.xz 2551752 BLAKE2B 8bd8950877671f66d7227a2cc0ee575ee42372af4e35a740566c61bf198dbb98bff58df33848922c941fb2ae6d91823b4b85ca8b68907eecec023cd046319d36 SHA512 9640b21570a6157542e2317221411c005c5ed17fedf25f3795839d59743b663a66bc3e8bb894a01a2bb9233f5ca8fe54ea1fb2eb1b9a0f0c9e9a5c8e9ee91c88 DIST genpatches-5.4-79.experimental.tar.xz 6696 BLAKE2B 0da6cd4caea2560bee37c5dceb8c1809851573ffbbb8ef330f2290fb595acfdcdd977b830d2bbe4fe4a51056bdcb982d6ffd1381e3c5cd2b4d17d2498e836cf9 SHA512 07a6b61c4c038c2dbbc7f416ea5c1653b011661d5781d5fc61ba472e7c7a1173da97881936469ff0c04994c2d8d956eccd7c40d05172b430b4b5a203c955d6d6 DIST genpatches-5.4-79.extras.tar.xz 1768 BLAKE2B 4c890e06a2733a06fee44172925a465204b8f435df40583eeeb553de6c2a26197f50ab100ed47b6c104ff5e4344534fd149d84f12e5f43f4c65422ef9a0e2cf5 SHA512 fbea0554d4cdffcbc4f43f9bed3cd57e5a3f79776f5e46d23daa65b884b5fd6fd43e248b04258434e44026669b6d1a707782a01dc217142c954fef2afa5acdff +DIST genpatches-5.4-80.base.tar.xz 2561892 BLAKE2B de5b2235bb041cc87bc9e227aaa7fe8c00796d313b590d375d7b8bff384b326652c71a4715237bb213af15a6bd7ac37ce5ab2b291146917ac852667b09e40305 SHA512 00cb664d33fca3185c6efaae58a4f7464bd8bde19e4b90714786dc9fdf6add1e9af9f8dc47b8d0558086518ccfe247061379a45d20718519dd655f41880d2a58 +DIST genpatches-5.4-80.experimental.tar.xz 6696 BLAKE2B 80eab248ef6d326b6c7a9bdae9098c59f3081cf12c1b6e845438b5151ca058ec2a4d221500dd4aec6890fdd963dc924d632322b1bb0d4bcd9234ea07e59672ab SHA512 af2879539bfe9419c45ac5300ab6e34919a83dbcfa14466bacb2342dd9e20d65753254f743a37e1f368d047c3a359bf0f3c196e03a19d4c3e0e1d72e1fbd71a1 +DIST genpatches-5.4-80.extras.tar.xz 1772 BLAKE2B b549a8901e55cddb1742e394166f8d948ba67552f1b7488cdaa5b7b3dc1a08370ddf7b32a9b243842e995472ae03837e53ae7e95bed6bee0417874f031f3785f SHA512 bbf37e04615bca2a1fbca6b490bae4665865f4f5221f0268ba2f2ff5779fb3eebb0685654281dc5753b553d20a6864a950661cc75fc425b28844dbd524697caa DIST genpatches-5.8-21.base.tar.xz 783528 BLAKE2B 8b4e64de64d97f069014d353e45aab7900b37f508ed8e99eb469797df4780f715e0c038fbeff4b8ebb34e81c935dfd7df3eb63324121e31c1dd07591b3159a3a SHA512 4485056f47723e14f5248854edcd4353562c5ec6cb95c926310815e5bf5514d5d8edce16a241dc3d881c57832333f950562b092c21f2555a6838b9106ff329a4 DIST genpatches-5.8-21.experimental.tar.xz 6060 BLAKE2B 42cc1a6c5a7cbe3086321ab4a6616f0cbc758b34061a82898c8d4745f9550e9bb60ec3e76b176c95962834358052794e9bd4ebbccbd891031b3cdce12a62c2e0 SHA512 c98a560c0b564ae565ab1dbc2421827593568be5010b4b0fa017def4b2401d737c89499f7b9558b6c8700b2dca4bf0e0bb86e172b43c3092cc7a867775a8fe8f DIST genpatches-5.8-21.extras.tar.xz 1768 BLAKE2B 238c16ed6628c2fd379fa46cf700038c08358e26af5fd4e7f1037626e2057fcbf224df72a6bd1df4b95fa896793539108294d3523118ee7a6cb7e39604e91112 SHA512 c14b718bf292707472edff04b022c722f45330b7750dd4b7b507347b0a9a29ebd236e16f01c03b6aa85bacc9220b420f5108f7728e88e6566dbb888efdbce714 +DIST genpatches-5.9-10.base.tar.xz 521384 BLAKE2B ea65c4e0977bc07459297883aabba1589b746de718c054127b1cb5fb2d79702798dccd918e8f5542d439d316d3c6c3ae38514155ff2cd5f61c7916eacfaf5177 SHA512 54836cd45b62fc97c857f85bd96ebcb99d5f5d80b3c80c31e70a48e3aa8e54eca5eae802e9a8780c0eb0a1d166c190f39751512580ab10eb122a887d31ad3a57 +DIST genpatches-5.9-10.experimental.tar.xz 6096 BLAKE2B a5fd92947d9f1ec033ed5896b80e47b854b3cfe96dd03b6e8d7be6bb5f10e583c60c59933116298f92f46cf062e31792b2b0d93d046bdbe143c8d419c8d14976 SHA512 466a968bcb46ce345f20baaa89a82c3deed0527466af09855c9372c9f095663f484a1cf1788ed615748852911a04d2164ed37e45a0ef380dbda5402b528c1672 +DIST genpatches-5.9-10.extras.tar.xz 1768 BLAKE2B 8177c3e2b8d92785b9ee71a7733432c783977a4c18f2db282c3c5b079219a911f6c302cad0dc3bf14c886bd3765ffdb2808f353ba0ecb89bb01d522f24f54c0b SHA512 462b35b3ff7a142877d11ddf02992a50043ba677f9f10619a308424f3e4df54d45436bc148fc503581c1c707a2a936ee278b18d95c02c6d5cdfec08f94257171 DIST genpatches-5.9-6.base.tar.xz 406744 BLAKE2B 79052b91967819329a94b796ad72d6b7eec43d2e83615333abb7b9e0f3c7b737687de05e4ed8ebdb1db064ee16c2b45786ee3652f6f4b107b7e64ee309d9bb1a SHA512 2ae6a445936221337035b9d38336285c8dd2cd9cf2686bdfdd7dc229efb8f61d3088b834c8c63ee633ea197cd48455dffb24dcf11aef0955c42e4e271da76f42 DIST genpatches-5.9-6.experimental.tar.xz 5828 BLAKE2B 6315137049438fca8a3835858321311dcf1a3ab374eb7c1cc0ec77847891112490ebc8427896381da78b2415855a73b444a69c5a521438f09df55219d96a9a77 SHA512 81bb35477a6e6180b08776b0a27fed4703e8796a54110959869b8ed86100c6e9c71b8ea523e5f905099ef64f8b99a8c5f699e0ce32d4c76dead9bf2121feb1b6 DIST genpatches-5.9-6.extras.tar.xz 1764 BLAKE2B 3ea79d40f67a97fe14c5adc7c0f5bab19ab28bf37778a334c50852cbbdd91f32ff696e65e9a8f703c8573be7714447a75913c1783118d7b8acaaedab8518075b SHA512 d0f470637202283ae8295bf822b86609f426023fa6f0c00b1a3c0cce461d005c3804bfc7cdbcf965ef9d6a2e68917c2fdbcd30329e551b91d50055106c4f5cc8 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.208.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.14.208.ebuild new file mode 100644 index 000000000000..a0d5482fa9a0 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.208.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="218" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.159.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.19.159.ebuild new file mode 100644 index 000000000000..9cd4713f8e9f --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.159.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="158" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.245.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.4.245.ebuild new file mode 100644 index 000000000000..11c31e698d23 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.245.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="247" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.245.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-4.9.245.ebuild new file mode 100644 index 000000000000..635f5610488d --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.245.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="249" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.79.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.4.79.ebuild new file mode 100644 index 000000000000..7800fab600eb --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.79.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="80" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.9.10.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-5.9.10.ebuild new file mode 100644 index 000000000000..4bf66ac02c93 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-5.9.10.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +ETYPE="sources" +K_WANT_GENPATCHES="base extras experimental" +K_GENPATCHES_VER="10" +K_NODRYRUN="1" + +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" +HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches" +IUSE="experimental" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-libs/Manifest.gz b/sys-libs/Manifest.gz index 1d20d82b2971..2db7fcf6ff49 100644 Binary files a/sys-libs/Manifest.gz and b/sys-libs/Manifest.gz differ diff --git a/sys-libs/glibc/files/2.19/glibc-2.19-gcc-10.patch b/sys-libs/glibc/files/2.19/glibc-2.19-gcc-10.patch new file mode 100644 index 000000000000..45e8ab80007e --- /dev/null +++ b/sys-libs/glibc/files/2.19/glibc-2.19-gcc-10.patch @@ -0,0 +1,15 @@ +Identify gcc-10+ as a good compiler. + +Index: work/glibc-2.19/configure +=================================================================== +--- glibc-2.19/configure ++++ glibc-2.19/configure +@@ -4710,7 +4710,7 @@ $as_echo_n "checking version of $CC... " + ac_prog_version=`$CC -v 2>&1 | sed -n 's/^.*version \([egcygnustpi-]*[0-9.]*\).*$/\1/p'` + case $ac_prog_version in + '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; +- 4.[4-9].* | 4.[1-9][0-9].* | [5-9].* ) ++ 4.[4-9].* | 4.[1-9][0-9].* | [5-9].* | [1-9][0-9].* ) + ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; + *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; + diff --git a/sys-libs/glibc/glibc-2.19-r2.ebuild b/sys-libs/glibc/glibc-2.19-r2.ebuild index 3b45b557922d..47ae2c50d61a 100644 --- a/sys-libs/glibc/glibc-2.19-r2.ebuild +++ b/sys-libs/glibc/glibc-2.19-r2.ebuild @@ -717,6 +717,7 @@ src_prepare() { eapply "${FILESDIR}"/2.19/glibc-2.19-kernel-2.6.16-compat.patch eapply "${FILESDIR}"/2.19/glibc-2.19-kernel-2.6.16-hide-pipe2.patch + eapply "${FILESDIR}"/2.19/glibc-2.19-gcc-10.patch cd "${WORKDIR}" find . -name configure -exec touch {} + diff --git a/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild b/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild index 0ab4c81205a3..bdb1124c291b 100644 --- a/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild +++ b/sys-libs/libcap-ng/libcap-ng-0.7.11.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://people.redhat.com/sgrubb/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86 ~x86-linux" +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~x86-linux" IUSE="python static-libs" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" diff --git a/sys-libs/libseccomp/Manifest b/sys-libs/libseccomp/Manifest index ddb87bd168cd..0a32b48f4d9f 100644 --- a/sys-libs/libseccomp/Manifest +++ b/sys-libs/libseccomp/Manifest @@ -1,4 +1,4 @@ DIST libseccomp-2.4.3.tar.gz 598147 BLAKE2B 272c9f1ca7e4059790f633a79cae8612831aa483d28630fb85b31dc2be0192907a8897819d835b61324e0b3fb0d77b8781e2a85e9750ef8d7974d8680b8cdea3 SHA512 7b7af2e98493243ffe1934fefff5723b24ae9b9bdc4bf039343ee8456c15acb0ea34e81ec292a41143848272aeca794ef92ad38fc3f42c77465170cb540479ef DIST libseccomp-2.4.4.tar.gz 604420 BLAKE2B 04a2e22996d94f2525c1f4a890f325e7c75abb7ac84928a1ffde5e4cc569ef6355fcda8415e0c9937139e187f458602714cfd042008de74637c7bf30e9bd58e2 SHA512 53e5aa338a1c30ce826551e33be6ef877af43b1d8cfd2e1b6ffb70789eb2070d2610fb7cb5cec4a3a4c4a1221767f867f3d2bc07b6b1d9742719b1e053630b24 DIST libseccomp-2.5.0.tar.gz 638793 BLAKE2B c1f30624e210d632175b734c49411ee3f95e8f0ee68819ad83a342434231baef10c292f23fca0127394365a37efb043f9f24ade9534deecd61f50e7111a6fbc8 SHA512 00ef5aeb4db8dafb546ae680b2d6d9b6aeed008df805d0f28f9dd15c074ff6ea7a5e5131ab503825b8011c59aa23046baedd5849ca040aa73352f43ab2d602ae -DIST libseccomp-2.5.1.tar.gz 189916 BLAKE2B 8d74764a03f154f29fe7a392ce3f7e13d0342cebd875cd2a8e8453aa362d8ee78e8aed466f4f26ea98bda9263283a0cf5ca31f34afacfd7c658de8942fffeea8 SHA512 fcb84b6714dce760387391c42de699897c1767802c4805a71d3221b9cfbc9c3cc20a3122e5f2153e754962faab2f214f892531e5985bacf28875ff1ba9a93996 +DIST libseccomp-2.5.1.tar.gz 638811 BLAKE2B 683ae7536c0cba36f4d30640b42361171fc34b7cb04985ea56e64369df29c440361a0205385b14580cc0e481e0f9ffd0b0e8ebd4ac98817ed59298db6b274c35 SHA512 2be80a6323f9282dbeae8791724e5778b32e2382b2a3d1b0f77366371ec4072ea28128204f675cce101c091c0420d12c497e1a9ccbb7dc5bcbf61bfd777160af diff --git a/sys-libs/libseccomp/libseccomp-2.5.1.ebuild b/sys-libs/libseccomp/libseccomp-2.5.1.ebuild index cf8f9e8c84dd..1375d590f41a 100644 --- a/sys-libs/libseccomp/libseccomp-2.5.1.ebuild +++ b/sys-libs/libseccomp/libseccomp-2.5.1.ebuild @@ -6,7 +6,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{6..9} ) DISTUTILS_OPTIONAL=1 -inherit autotools distutils-r1 multilib-minimal +inherit distutils-r1 multilib-minimal DESCRIPTION="high level interface to Linux seccomp filter" HOMEPAGE="https://github.com/seccomp/libseccomp" @@ -16,9 +16,8 @@ if [[ ${PV} == *9999 ]] ; then PRERELEASE="2.6.0" inherit autotools git-r3 else - #SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz" - SRC_URI="https://github.com/seccomp/libseccomp/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="-* ~amd64 ~arm ~arm64 ~hppa -mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux" + SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz" + KEYWORDS="-* ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux" fi LICENSE="LGPL-2.1" @@ -46,8 +45,8 @@ src_prepare() { default if [[ "${PV}" == *9999 ]] ; then sed -i -e "s/0.0.0/${PRERELEASE}/" configure.ac + eautoreconf fi - eautoreconf } multilib_src_configure() { diff --git a/sys-libs/libselinux/libselinux-9999.ebuild b/sys-libs/libselinux/libselinux-9999.ebuild index 2f2a870f2d6c..d28e9b76f0f1 100644 --- a/sys-libs/libselinux/libselinux-9999.ebuild +++ b/sys-libs/libselinux/libselinux-9999.ebuild @@ -40,8 +40,8 @@ RDEPEND=">=sys-libs/libsepol-${SEPOL_VER}:=[${MULTILIB_USEDEP}] ruby_targets_ruby27? ( dev-lang/ruby:2.7 ) ) elibc_musl? ( sys-libs/fts-standalone )" -DEPEND="${RDEPEND} - virtual/pkgconfig +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig python? ( >=dev-lang/swig-2.0.9 ) ruby? ( >=dev-lang/swig-2.0.9 )" diff --git a/sys-libs/libsemanage/libsemanage-9999.ebuild b/sys-libs/libsemanage/libsemanage-9999.ebuild index f41d7dffde0a..a1f7982ff44f 100644 --- a/sys-libs/libsemanage/libsemanage-9999.ebuild +++ b/sys-libs/libsemanage/libsemanage-9999.ebuild @@ -33,10 +33,9 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND=">=sys-libs/libsepol-${SEPOL_VER}[${MULTILIB_USEDEP}] >=sys-libs/libselinux-${SELNX_VER}[${MULTILIB_USEDEP}] >=sys-process/audit-2.2.2[${MULTILIB_USEDEP}] - >=dev-libs/ustr-1.0.4-r2[${MULTILIB_USEDEP}] ${PYTHON_DEPS}" -DEPEND="${RDEPEND} - >=dev-lang/swig-2.0.4-r1 +DEPEND="${RDEPEND}" +BDEPEND=">=dev-lang/swig-2.0.4-r1 sys-devel/bison sys-devel/flex virtual/pkgconfig" diff --git a/sys-libs/newlib/Manifest b/sys-libs/newlib/Manifest index 12a1c1b30174..d31d7c570f77 100644 --- a/sys-libs/newlib/Manifest +++ b/sys-libs/newlib/Manifest @@ -1 +1,2 @@ DIST newlib-3.3.0.tar.gz 18361083 BLAKE2B bdc81427955d0a2f550bf2973ca82c0b8b55aa170565cdf1cfe8ac926257fad6d3e860ce7b2e286949ab21be2677378b5b6d3c743c05fe8aa6df8a8c34a16945 SHA512 2f0c6666487520e1a0af0b6935431f85d2359e27ded0d01d02567d0d1c6479f2f0e6bbc60405e88e46b92c2a18780a01a60fc9281f7e311cfd40b8d5881d629c +DIST newlib-4.0.0.tar.gz 18645966 BLAKE2B 04dced199253f7ea725c1812c2083fd5664722bed645c5cc26567587f802119826ed6bb0372c53c9496110efdc6ee9ea0ec007885c00af885164bfd6b8280bad SHA512 15786bdba2ea6252409b0e3a11046d6315c7629df3b0ee37f0aa2e119c3f356d04e4da6ad2b5dc90de218cc35008f144d7bc986f6b24d95e8868e1848a9ca970 diff --git a/sys-libs/newlib/newlib-4.0.0.ebuild b/sys-libs/newlib/newlib-4.0.0.ebuild new file mode 100644 index 000000000000..e16fd4c10b75 --- /dev/null +++ b/sys-libs/newlib/newlib-4.0.0.ebuild @@ -0,0 +1,154 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit flag-o-matic toolchain-funcs + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://sourceware.org/git/newlib-cygwin.git" + inherit git-r3 +else + SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz" + KEYWORDS="~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sparc ~x86" +fi + +export CBUILD=${CBUILD:-${CHOST}} +export CTARGET=${CTARGET:-${CHOST}} +if [[ ${CTARGET} == ${CHOST} ]] ; then + if [[ ${CATEGORY} == cross-* ]] ; then + export CTARGET=${CATEGORY#cross-} + fi +fi + +DESCRIPTION="Newlib is a C library intended for use on embedded systems" +HOMEPAGE="https://sourceware.org/newlib/" + +LICENSE="NEWLIB LIBGLOSS GPL-2" +SLOT="0" +IUSE="nls threads unicode headers-only nano" +RESTRICT="strip" + +PATCHES=( + "${FILESDIR}"/${PN}-3.3.0-no-nano-cxx.patch +) + +NEWLIBBUILD="${WORKDIR}/build" +NEWLIBNANOBUILD="${WORKDIR}/build.nano" +NEWLIBNANOTMPINSTALL="${WORKDIR}/nano_tmp_install" + +# Adding -U_FORTIFY_SOURCE to counter the effect of Gentoo's +# auto-addition of _FORTIFY_SOURCE at gcc site: bug #656018#c4 +# Currently newlib can't be built itself when _FORTIFY_SOURCE +# is set. +CFLAGS_FULL="-ffunction-sections -fdata-sections -U_FORTIFY_SOURCE" +CFLAGS_NANO="-Os -ffunction-sections -fdata-sections -U_FORTIFY_SOURCE" + +pkg_setup() { + # Reject newlib-on-glibc type installs + if [[ ${CTARGET} == ${CHOST} ]] ; then + case ${CHOST} in + *-newlib|*-elf) ;; + *) die "Use sys-devel/crossdev to build a newlib toolchain" ;; + esac + fi + + case ${CTARGET} in + msp430*) + if ver_test $(gcc-version ${CTARGET}) -lt 10.1; then + # bug #717610 + die "gcc for ${CTARGET} has to be 10.1 or above" + fi + ;; + esac +} + +src_configure() { + # TODO: we should fix this + unset LDFLAGS + CHOST=${CTARGET} strip-unsupported-flags + CCASFLAGS_ORIG="${CCASFLAGS}" + CFLAGS_ORIG="${CFLAGS}" + + local myconf=( + # Disable legacy syscall stub code in newlib. These have been + # moved to libgloss for a long time now, so the code in newlib + # itself just gets in the way. + --disable-newlib-supplied-syscalls + ) + [[ ${CTARGET} == "spu" ]] \ + && myconf+=( --disable-newlib-multithread ) \ + || myconf+=( $(use_enable threads newlib-multithread) ) + + mkdir -p "${NEWLIBBUILD}" + cd "${NEWLIBBUILD}" + + export "CFLAGS_FOR_TARGET=${CFLAGS_ORIG} ${CFLAGS_FULL}" + export "CCASFLAGS=${CCASFLAGS_ORIG} ${CFLAGS_FULL}" + ECONF_SOURCE=${S} \ + econf \ + $(use_enable unicode newlib-mb) \ + $(use_enable nls) \ + "${myconf[@]}" + + # Build newlib-nano beside newlib (original) + # Based on https://tracker.debian.org/media/packages/n/newlib/rules-2.1.0%2Bgit20140818.1a8323b-2 + if use nano ; then + mkdir -p "${NEWLIBNANOBUILD}" || die + cd "${NEWLIBNANOBUILD}" || die + export "CFLAGS_FOR_TARGET=${CFLAGS_ORIG} ${CFLAGS_NANO}" + export "CCASFLAGS=${CCASFLAGS_ORIG} ${CFLAGS_NANO}" + ECONF_SOURCE=${S} \ + econf \ + $(use_enable unicode newlib-mb) \ + $(use_enable nls) \ + --enable-newlib-reent-small \ + --disable-newlib-fvwrite-in-streamio \ + --disable-newlib-fseek-optimization \ + --disable-newlib-wide-orient \ + --enable-newlib-nano-malloc \ + --disable-newlib-unbuf-stream-opt \ + --enable-lite-exit \ + --enable-newlib-global-atexit \ + --enable-newlib-nano-formatted-io \ + ${myconf} + fi +} + +src_compile() { + export "CFLAGS_FOR_TARGET=${CFLAGS_ORIG} ${CFLAGS_FULL}" + export "CCASFLAGS=${CCASFLAGS_ORIG} ${CFLAGS_FULL}" + emake -C "${NEWLIBBUILD}" + + if use nano ; then + export "CFLAGS_FOR_TARGET=${CFLAGS_ORIG} ${CFLAGS_NANO}" + export "CCASFLAGS=${CCASFLAGS_ORIG} ${CFLAGS_NANO}" + emake -C "${NEWLIBNANOBUILD}" + fi +} + +src_install() { + cd "${NEWLIBBUILD}" || die + emake -j1 DESTDIR="${D}" install + + if use nano ; then + cd "${NEWLIBNANOBUILD}" || die + emake -j1 DESTDIR="${NEWLIBNANOTMPINSTALL}" install + # Rename nano lib* files to lib*_nano and move to the real ${D} + local nanolibfiles="" + nanolibfiles=$(find "${NEWLIBNANOTMPINSTALL}" -regex ".*/lib\(c\|g\|rdimon\)\.a" -print) + for f in ${nanolibfiles}; do + local l="${f##${NEWLIBNANOTMPINSTALL}}" + mv -v "${f}" "${D}/${l%%\.a}_nano.a" || die + done + + # Move newlib-nano's version of newlib.h to newlib-nano/newlib.h + mkdir -p "${D}/usr/${CTARGET}/include/newlib-nano" || die + mv "${NEWLIBNANOTMPINSTALL}/usr/${CTARGET}/include/newlib.h" \ + "${D}/usr/${CTARGET}/include/newlib-nano/newlib.h" || die + fi + + # minor hack to keep things clean + rm -rf "${D}"/usr/share/info || die + rm -rf "${D}"/usr/info || die +} diff --git a/sys-libs/newlib/newlib-9999.ebuild b/sys-libs/newlib/newlib-9999.ebuild index bd8e3d1de3f5..e16fd4c10b75 100644 --- a/sys-libs/newlib/newlib-9999.ebuild +++ b/sys-libs/newlib/newlib-9999.ebuild @@ -10,7 +10,7 @@ if [[ ${PV} == "9999" ]] ; then inherit git-r3 else SRC_URI="ftp://sourceware.org/pub/newlib/${P}.tar.gz" - KEYWORDS="-* ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sparc ~x86" + KEYWORDS="~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~sparc ~x86" fi export CBUILD=${CBUILD:-${CHOST}} @@ -64,7 +64,7 @@ pkg_setup() { } src_configure() { - # we should fix this ... + # TODO: we should fix this unset LDFLAGS CHOST=${CTARGET} strip-unsupported-flags CCASFLAGS_ORIG="${CCASFLAGS}" diff --git a/sys-power/Manifest.gz b/sys-power/Manifest.gz index 0812bd38e9b6..ec8cc6d2ce97 100644 Binary files a/sys-power/Manifest.gz and b/sys-power/Manifest.gz differ diff --git a/sys-power/nvram-wakeup/Manifest b/sys-power/nvram-wakeup/Manifest deleted file mode 100644 index 063de424d8af..000000000000 --- a/sys-power/nvram-wakeup/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST nvram-wakup-1.1.tar.gz 1070097 BLAKE2B 9e9aad545d7a7d0882cf07522c60a68ab678ad2dec8ba51828862afe077fa5a11929aaf5a21bae69977338fdf1de5cb394a874475dcc8b4018c4358e780fe786 SHA512 a47c6831e004e25f43adbc25aa46aca457602c681693621e3acda12f1f775aa1c5fa30ec9a09d71945ef2de8a2dbe97f9c1c7e09b1ae3464c368c9b8fc0f11e0 diff --git a/sys-power/nvram-wakeup/files/nvram-wakeup-0.97-nonls.patch b/sys-power/nvram-wakeup/files/nvram-wakeup-0.97-nonls.patch deleted file mode 100644 index 108d02eddd29..000000000000 --- a/sys-power/nvram-wakeup/files/nvram-wakeup-0.97-nonls.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- nvram-wakeup-0.97/Makefile -+++ nvram-wakeup-0.97/Makefile -@@ -41,3 +41,3 @@ - --all: $(BINS) $(GTTXT) -+all: $(BINS) - size $(BINS) -@@ -88,3 +88,2 @@ - @$(INSTALL) -vd $(DOCDIR) -- @$(INSTALL) -vd $(GTTXTDIR) - @$(INSTALL) -vm 755 $(PROG_SH) $(BINDIR) -@@ -94,3 +93,2 @@ - @$(INSTALL) -vm 644 $(DOC) $(DOCDIR) -- @$(INSTALL) -vm 755 $(GTTXT) $(GTTXTDIR) - -@@ -110,2 +108 @@ - cd $(DOCDIR); rm -f $(DOC) -- cd $(GTTXTDIR); rm -f $(GTTXT) diff --git a/sys-power/nvram-wakeup/nvram-wakeup-1.1.ebuild b/sys-power/nvram-wakeup/nvram-wakeup-1.1.ebuild deleted file mode 100644 index 48e4da2acae3..000000000000 --- a/sys-power/nvram-wakeup/nvram-wakeup-1.1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit flag-o-matic eutils - -MY_P=${P%_p*} -[[ ${PV} == *_p* ]] && REV=${P#*_p} || unset REV -MY_P=${MY_P/e} -DESCRIPTION="read and write the WakeUp time in the BIOS" -HOMEPAGE="https://sourceforge.net/projects/nvram-wakeup" -SRC_URI="mirror://sourceforge/nvram-wakeup/${MY_P}.tar.gz - ${REV+http://nvram-wakeup.svn.sourceforge.net/viewvc/*checkout*/nvram-wakeup/trunk/nvram-wakeup/nvram-wakeup-mb.c?revision=${REV}}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="nls" -[[ -n ${REV} ]] && RESTRICT="mirror" #168114 - -DEPEND="nls? ( sys-devel/gettext )" -RDEPEND="" - -S=${WORKDIR}/${MY_P} - -src_unpack() { - unpack ${MY_P}.tar.gz - if [[ -n ${REV} ]] ; then - cp "${DISTDIR}"/nvram-wakeup-mb.c?revision=${REV} "${S}"/nvram-wakeup-mb.c || die - fi -} - -src_prepare() { - use nls || epatch "${FILESDIR}"/${PN}-0.97-nonls.patch - # Need to be careful with CFLAGS since this could eat your bios - strip-flags - # GTTXT mode fix - sed -i \ - -e '/^CFLAGS/s:= -O2 :+= $(CPPFLAGS) :' \ - -e '/GTTXT/s:755:644:' \ - Makefile || die -} - -src_install() { - emake \ - prefix="${D}"/usr \ - MANDIR="${D}"/usr/share/man \ - DOCDIR="${D}"/usr/share/doc/${PF} \ - install - - dodoc "${D}"/usr/bin/vdrshutdown - rm "${D}"/usr/bin/vdrshutdown || die - dodoc set_timer - - rm "${D}"/usr/sbin/time || die - rm "${D}"/usr/share/man/man*/time.8* || die -} - -pkg_postinst() { - echo - ewarn "WARNING:" - ewarn "This program writes into the NVRAM (used by BIOS to store the CMOS" - ewarn "settings). This is DANGEROUS. Do it at your own risk. Neither the" - ewarn "author of this program (nvram-wakeup) nor anyone else can be made" - ewarn "responsible to any damage made by this program in any way." - ewarn "(The worst case happened to me is that on reboot the BIOS noticed the" - ewarn "illegal contents of the nvram and set everything to default values." - ewarn "But this doesn't mean that you can't destroy even your whole computer.)" - echo - ewarn " YOU HAVE BEEN WARNED, HAVE A NICE DAY" - echo -} diff --git a/www-apache/Manifest.gz b/www-apache/Manifest.gz index 275d9aba6cc7..d9076e206ce5 100644 Binary files a/www-apache/Manifest.gz and b/www-apache/Manifest.gz differ diff --git a/www-apache/passenger/Manifest b/www-apache/passenger/Manifest index cd110b06f9f8..acaabe483957 100644 --- a/www-apache/passenger/Manifest +++ b/www-apache/passenger/Manifest @@ -1,3 +1,4 @@ DIST passenger-6.0.4.tar.gz 7347803 BLAKE2B 2e367b8dd0ace6a2773de92b3237821625190f2ae52fd11a1a3c47230d24affe1f9d161ef0346210cc91a21ae3a58f40f796063796399da0d133d6b0a261f52c SHA512 dd3398bece50c9da6029a5a9d98de2bed2e33a92f49fc776fe2b8f80f4a47e36d8a716c12f2f74d9611de5aa04981ddf680fc29a37f5b1860731a6f6e8390c81 DIST passenger-6.0.5.tar.gz 7347149 BLAKE2B c2a1cb74a0c5d9ea7ea245b1c55413b8d212dc091bc7ad8727ca4cc4249cbc60e92c5313a5a1f8daf5dcea64485b27fbeeae9fada18727aed20dc38779d112ea SHA512 a6c174a52947f3985a0bbed20996e8386efdac6100a6c7ce9994bb6be7617bf810ac04821fae122e569e1883e8a8b1350cdccfa2b02053e5a4fbd13f891716e4 DIST passenger-6.0.6.tar.gz 7347506 BLAKE2B 16332ca5c299c366c891eef0267889d024417bacafafb9b6faed94434f16a3823fd21e9251eeefe190a682e8530b49cde4af22008b1537466ee3d685554dcbac SHA512 57a013dbbddab13862c2d5445d048aafdc5a56297c56d3d642a39fe7757d3bcbd7e9e21aca36ebeb0f54a03d26e0886031a947cb098026a516900cc5bff42f0c +DIST passenger-6.0.7.tar.gz 7352163 BLAKE2B e002f03f761cfd1b2a79f3d518fe25fb1ead4f0431042b6bfe2ecf1b9900e6405abb4d67f9750302149f1d99990d2b42bc0fb1c855168b7003ac37eec3297b8f SHA512 6019a93ac500333098cee772b5240f6cbf3a75a8d7cdd2bccac58c28369dddca574dc7e1c239a8f21b863df4825e758bb5eae84b316842168dc875116a07bfca diff --git a/www-apache/passenger/passenger-6.0.7.ebuild b/www-apache/passenger/passenger-6.0.7.ebuild new file mode 100644 index 000000000000..70b997581603 --- /dev/null +++ b/www-apache/passenger/passenger-6.0.7.ebuild @@ -0,0 +1,130 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +USE_RUBY="ruby25 ruby26 ruby27" + +inherit apache-module flag-o-matic multilib ruby-ng toolchain-funcs + +DESCRIPTION="Passenger makes deployment of Ruby on Rails applications a breeze" +HOMEPAGE="https://www.phusionpassenger.com/" +SRC_URI="https://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="apache2 debug" + +ruby_add_bdepend "dev-ruby/rake" + +ruby_add_rdepend " + >=dev-ruby/rack-1.0.0:* + >=dev-ruby/rake-0.8.1" + +# libev is bundled but with adapations that do not seem to be accepted +# upstream, so we must use the bundled version :-( +CDEPEND=" + >=dev-libs/libuv-1.8.0 + net-misc/curl[ssl] + apache2? ( www-servers/apache[apache2_modules_unixd(+)] )" + +RDEPEND="${RDEPEND} ${CDEPEND}" +DEPEND="${DEPEND} ${CDEPEND}" + +APACHE2_MOD_CONF="30_mod_${PN}-5.0.0 30_mod_${PN}" +APACHE2_MOD_DEFINE="PASSENGER" + +want_apache2 + +pkg_setup() { + use debug && append-flags -DPASSENGER_DEBUG + depend.apache_pkg_setup +} + +all_ruby_prepare() { + eapply "${FILESDIR}"/${PN}-5.1.11-gentoo.patch + eapply "${FILESDIR}"/${PN}-5.1.1-isnan.patch + + # Change these with sed instead of a patch so that we can easily use + # the toolchain-funcs methods. + sed -i -e "/^CC/ s/=.*$/= '$(tc-getCC)'/" \ + -e "/^CXX\s/ s/=.*$/= '$(tc-getCXX)'/" \ + -e 's/PlatformInfo.debugging_cflags//' build/basics.rb || die + + # Avoid fixed debugging CFLAGs. + sed -e '/debugging_cflags/areturn ""' -i src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb || die + + # Use sed here so that we can dynamically set the documentation directory. + sed -i -e "s:/usr/share/doc/passenger:/usr/share/doc/${P}:" \ + -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" \ + src/ruby_supportlib/phusion_passenger.rb || die + sed -i -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" src/cxx_supportlib/ResourceLocator.h || die + + # Don't install a tool that won't work in our setup. + sed -i -e '/passenger-install-apache2-module/d' src/ruby_supportlib/phusion_passenger/packaging.rb || die + rm -f bin/passenger-install-apache2-module || die "Unable to remove unneeded install script." + + # Make sure we use the system-provided version where possible + rm -rf src/cxx_supportlib/vendor-copy/libuv || die "Unable to remove vendored code." + + # Avoid building documentation to avoid a dependency on mizuho. + #sed -i -e 's/, :doc//' build/packaging.rb || die + touch doc/*.html || die + + # Fix hard-coded use of AR + sed -i -e "s/ar cru/"$(tc-getAR)" cru/" build/support/cplusplus.rb || die + + # Make sure apache support is not attempted with -apache2 + if ! use apache2 ; then + sed -i -e '/fakeroot/ s/:apache2, //' build/packaging.rb || die + fi +} + +all_ruby_compile() { + if use apache2 ; then + V=1 EXTRA_LDFLAGS="${LDFLAGS}" \ + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + FS_LIBDIR='/usr/'$(get_libdir) \ + USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ + RANLIB=$(tc-getRANLIB) \ + ruby -S rake apache2 || die "rake failed" + fi +} + +each_ruby_compile() { + append-flags -fno-strict-aliasing + + V=1 EXTRA_LDFLAGS="${LDFLAGS}" \ + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + FS_LIBDIR='/usr/'$(get_libdir) \ + USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ + RANLIB=$(tc-getRANLIB) \ + ${RUBY} -S rake native_support || die "rake failed" +} + +all_ruby_install() { + if use apache2 ; then + APACHE2_MOD_FILE="${S}/buildout/apache2/mod_${PN}.so" + apache-module_src_install + + # Patch in the correct libdir + sed -i -e 's:/usr/lib/:/usr/'$(get_libdir)'/:' "${D}${APACHE_MODULES_CONFDIR}/30_mod_${PN}.conf" || die + fi + + dodoc CHANGELOG README.md +} + +each_ruby_install() { + DISTDIR="${D}" \ + RUBYLIBDIR="$(ruby_rbconfig_value vendordir)" \ + RUBYARCHDIR="$(ruby_rbconfig_value archdir)" \ + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + FS_LIBDIR='/usr/'$(get_libdir) \ + EXTRA_LDFLAGS="${LDFLAGS}" \ + USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ + RANLIB=$(tc-getRANLIB) \ + ${RUBY} -S rake fakeroot || die "rake failed" +} diff --git a/www-apps/Manifest.gz b/www-apps/Manifest.gz index 1891bcaaf875..b892dae2c5f8 100644 Binary files a/www-apps/Manifest.gz and b/www-apps/Manifest.gz differ diff --git a/www-apps/nextcloud/Manifest b/www-apps/nextcloud/Manifest index ede1e1be2e07..e3261e71547b 100644 --- a/www-apps/nextcloud/Manifest +++ b/www-apps/nextcloud/Manifest @@ -1,6 +1,9 @@ DIST nextcloud-18.0.10.tar.bz2 95160005 BLAKE2B e51dbce4469e6ef9f62bf76d92bf8e053e6cfba9e3c80b39ead4913b1e256397930c341a32b082462375d998b40380e32774e7e1d363953db7acdc4080e5fb20 SHA512 db7d0bdd53d693765afd13dd2a81c7d3eaa0ca9e0738ae97b5fc58969d8e4cfadaeb955d660f91e71af3890fe68772a12bc8d9096d69cec5a52a33abcec62cd8 +DIST nextcloud-18.0.11.tar.bz2 94567238 BLAKE2B 411a04a4c69ca8dcaf9f00389038aa3df763dab084013db3ab68fb0c2dd0b8009c559b05ed0f97250784bb0f5700cc1a4e85dbef948d847dbdad9e8d23a19403 SHA512 0379c3f4fb042f69fe3f1ae28ac008890f757d5e9ad3de13557e5f8007926c356a48d0c797a2b87239f2f21f6551dbb1319e2f757fa2f227efad952143979e59 DIST nextcloud-18.0.9.tar.bz2 96906179 BLAKE2B e51f6bffeae47db0693df9f650df2b255de1ae786e662b4d9c445cb636ddadbb9177b24edc2278522756fcf30fcc48c19614e523f0f6321cb12d56149700ab6c SHA512 8f5dd0941114819a5ebd6e3da2e7cbaaa7a7ae9adbb44d62cdfb2202d266c576e05ef5ec8b6c25b21a88c5a48df26bfb15d60dfd63a2b5443bac3f9b063504a6 DIST nextcloud-19.0.3.tar.bz2 100074272 BLAKE2B 295d22dfb9f82decd90e2d052e7b80069de871fb7850233016cc7b0238444cbbc646aa53e8de45b7e4297c3ebc623996aa501ee3475767cc54782e0b0ab3e98e SHA512 be4f489903ca7f777bda541a706d4c4f16a2a3ce56abc65525f72b0464592571ccdd9f8915457450ce37f90d51c944cab5c75b100433e3db3dcc154362c4d76f DIST nextcloud-19.0.4.tar.bz2 98094038 BLAKE2B 3970c85d74383bc1d031dc0a8cc48755612021a4263e1169637316ea05fe33788af6930938ca25cd49fbd3f601738176aea898ea0acda170b8601403853b4d54 SHA512 e128397ebe67c70f6ce2846f12f43a4927a1ef48ba69799494f10e7a4481c578239c7f6442b5310d8fba42779b619603e1044bed044b322dce363d3eceaef7a9 +DIST nextcloud-19.0.5.tar.bz2 98289833 BLAKE2B 79ef75778128f0b4b9b2bec0ebb0e80fc4722a99c06413040cdf3a406c6ae2fe44bfa172760615b15e0d2772b0c49d573f303bd3286c467b6c193391d0e4ed80 SHA512 c7057c353dc50c68d8b2b9afb8dd8d93b1029893438cdbc3fb253e2126c670163dbe60d2afca85899e6abb819b8ea304f5094ffc683b4c6710398c97e93bc152 DIST nextcloud-20.0.0.tar.bz2 121470470 BLAKE2B f22cf588e6e72dc07ab28d4e888436d637130093f4b322b32e6328677ab62babdf0c4d82ae27a020d0096c34c8477e73115eb7a915e1618f80e4030b78d3f26e SHA512 45f50a9922831f2170c5cbd94bc9e7c144d4a7a6635b044a306ddc685d5dec733c52a63737c6b15b63918ee67149de9ea9a53337eeaf2e0a9007d8f248759405 DIST nextcloud-20.0.1.tar.bz2 120287967 BLAKE2B baa48249bed9de3facba4158da0e46ffffbb60d4cd1cf6073ccad051d04baeac3abf3d958caad1b0a1d891fec0569f1fb3cff290e65030437546bc81ddc22e33 SHA512 9e343872b00578c442d11da81d5d97d46b70df3a86b2d081283fb8670301792bc0f977f4b854ebc2b505b8c00bd8a70170b0ce721493dcad3ae6ef0cdd3e4ddc +DIST nextcloud-20.0.2.tar.bz2 119446810 BLAKE2B 5ddac99a4b9a7bc4185d2a8987b4ccdabed24ae872235444462b520771aec8b74a041ed74dba7ea8fda838c7ede1f5e9554483ac00170a13f0ae8c943c3c86bd SHA512 bc06d5b312c974f60cdd9fe7c69566a93445dee1a89023442b43c02984aedd3e2ad8aea7f3fe365a0a4114d545ad91cf0de0ac1483c808425bf2c7aeefd1ac9f diff --git a/www-apps/nextcloud/nextcloud-18.0.11.ebuild b/www-apps/nextcloud/nextcloud-18.0.11.ebuild new file mode 100644 index 000000000000..de1b7898efdf --- /dev/null +++ b/www-apps/nextcloud/nextcloud-18.0.11.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit webapp + +DESCRIPTION="Personal cloud that runs on your own server" +HOMEPAGE="https://nextcloud.com/" +SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2" +LICENSE="AGPL-3" + +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="+curl +imagemagick mysql postgres +sqlite" +REQUIRED_USE="|| ( mysql postgres sqlite )" + +DEPEND="" +RDEPEND="dev-lang/php[curl?,filter,gd,hash(+),intl,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] + imagemagick? ( dev-php/pecl-imagick ) + virtual/httpd-php" + +S=${WORKDIR}/${PN} + +pkg_setup() { + webapp_pkg_setup +} + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + dodir "${MY_HTDOCSDIR}"/data + + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps + webapp_serverowned -R "${MY_HTDOCSDIR}"/data + webapp_serverowned -R "${MY_HTDOCSDIR}"/config + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + + webapp_src_install +} diff --git a/www-apps/nextcloud/nextcloud-19.0.5.ebuild b/www-apps/nextcloud/nextcloud-19.0.5.ebuild new file mode 100644 index 000000000000..de1b7898efdf --- /dev/null +++ b/www-apps/nextcloud/nextcloud-19.0.5.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit webapp + +DESCRIPTION="Personal cloud that runs on your own server" +HOMEPAGE="https://nextcloud.com/" +SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2" +LICENSE="AGPL-3" + +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="+curl +imagemagick mysql postgres +sqlite" +REQUIRED_USE="|| ( mysql postgres sqlite )" + +DEPEND="" +RDEPEND="dev-lang/php[curl?,filter,gd,hash(+),intl,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] + imagemagick? ( dev-php/pecl-imagick ) + virtual/httpd-php" + +S=${WORKDIR}/${PN} + +pkg_setup() { + webapp_pkg_setup +} + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + dodir "${MY_HTDOCSDIR}"/data + + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps + webapp_serverowned -R "${MY_HTDOCSDIR}"/data + webapp_serverowned -R "${MY_HTDOCSDIR}"/config + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + + webapp_src_install +} diff --git a/www-apps/nextcloud/nextcloud-20.0.2.ebuild b/www-apps/nextcloud/nextcloud-20.0.2.ebuild new file mode 100644 index 000000000000..de1b7898efdf --- /dev/null +++ b/www-apps/nextcloud/nextcloud-20.0.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit webapp + +DESCRIPTION="Personal cloud that runs on your own server" +HOMEPAGE="https://nextcloud.com/" +SRC_URI="https://download.nextcloud.com/server/releases/${P}.tar.bz2" +LICENSE="AGPL-3" + +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +IUSE="+curl +imagemagick mysql postgres +sqlite" +REQUIRED_USE="|| ( mysql postgres sqlite )" + +DEPEND="" +RDEPEND="dev-lang/php[curl?,filter,gd,hash(+),intl,json,mysql?,pdo,posix,postgres?,session,simplexml,sqlite?,truetype,xmlreader,xmlwriter,zip] + imagemagick? ( dev-php/pecl-imagick ) + virtual/httpd-php" + +S=${WORKDIR}/${PN} + +pkg_setup() { + webapp_pkg_setup +} + +src_install() { + webapp_src_preinst + + insinto "${MY_HTDOCSDIR}" + doins -r . + dodir "${MY_HTDOCSDIR}"/data + + webapp_serverowned -R "${MY_HTDOCSDIR}"/apps + webapp_serverowned -R "${MY_HTDOCSDIR}"/data + webapp_serverowned -R "${MY_HTDOCSDIR}"/config + webapp_configfile "${MY_HTDOCSDIR}"/.htaccess + + webapp_src_install +} diff --git a/www-apps/phpBB/Manifest b/www-apps/phpBB/Manifest index dabe159ea00a..37a4bb1723b9 100644 --- a/www-apps/phpBB/Manifest +++ b/www-apps/phpBB/Manifest @@ -1 +1 @@ -DIST phpBB-3.3.1.tar.bz2 4575916 BLAKE2B 5383da8de81664c99156007eee49d01fe661e74cd6c5970fe07359aa341dc2f54c80d01927b60abf2d48ab830cbe42244bfc5432c758becb4363e334f9298d51 SHA512 b3a24b4f326426c174082362e67d1d6c1b67b3b5daa6a86f3117ef1b458aa70c055bdeaa7caf597f530c2fe4b7f6e569f7f1beacfaf346c83c638dc98d2169cf +DIST phpBB-3.3.2.tar.bz2 4616676 BLAKE2B 3199dac9c3ad95697e24c30d91131a29e05a19783cbc002ef65c87f4834def73de669ce1810b02c960dd47cec1b4e6d51d41a456e5f704e79791b5af5cab980d SHA512 8acdd88232ebfd914c74dd46edafcca66dd67669c2db4bf8008b9ece9f6af300825933a6dc0febe6cf70ffe8d4fd550a24eebedd684dc233c7866463fdba3039 diff --git a/www-apps/phpBB/phpBB-3.3.1.ebuild b/www-apps/phpBB/phpBB-3.3.2.ebuild similarity index 100% rename from www-apps/phpBB/phpBB-3.3.1.ebuild rename to www-apps/phpBB/phpBB-3.3.2.ebuild diff --git a/www-client/Manifest.gz b/www-client/Manifest.gz index 9188b301252b..064f631dac54 100644 Binary files a/www-client/Manifest.gz and b/www-client/Manifest.gz differ diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest index 3c74d80098d4..56a20f2793a5 100644 --- a/www-client/chromium/Manifest +++ b/www-client/chromium/Manifest @@ -1,7 +1,5 @@ -DIST chromium-86-patchset-7.tar.xz 7560 BLAKE2B b7efc559bebe048e7c1a8ff7e3a88f4c47889976d7f573ed48562cc0b70a9282751145e1f5b90cb651c34fe7c43f8f414c42cc8c78cf70e5ffa8eaff13334630 SHA512 cbcee766a2aea1c339ef9589828875dc431aba002d77fa9531731514cbb219437dfc1d766ebc184ac477990589386070cf3d0f68ceb3211f8dac6c6be7da3a09 -DIST chromium-86.0.4240.198.tar.xz 825538884 BLAKE2B 86da563cfd3c429d44ea1629ab25072135323c5f84f9966b38f2558c0fb88899fa1c462efca1852f89a8ff082834385ae5c2e07798929ba8e7c536ae58e778e3 SHA512 179f43b1444b805b8939098c71d542276985d65ef03bd1bf2303b21bf26b431e790a42310b2749c1901f0f8514e9ccadb776b7d39b7833a8154624557fbcf423 DIST chromium-87-patchset-9.tar.xz 6036 BLAKE2B 4dd9aa0e88f11a9104cb13e73607c3b4fcd7e9cb556034472e2fd46158db6e7505b22c098df1c7cab6c7ff06ba6dc45914dcab58a405e0eafffa58d8b0cafbbf SHA512 c036ee20b4906bdb1b3104ecacf30a092ee3662ec10754bf2b168f1b7e1dbf593216e4dc70f8264540fadf91a33b48a8b8040028966dfcc8d8be99807b5f1b99 DIST chromium-87.0.4280.66.tar.xz 856464608 BLAKE2B 5e386c8043aac6c55d3f16ffeabc36571999b265559f3e1d3eddfd972fb3fb3c0fba4d9c6a23a94bcaa6bcec1f4892c04fb301d18cc76f997ce5696908f0c9dd SHA512 8bf31b012166fb1fd35107020608cf77e6a31038a583423541c64aaf1c91bca0767ca111dcb4dd0f57c9c19c347375bde6b6488c56e309bd2871998c26b8b32a -DIST chromium-88-patchset-2.tar.xz 6832 BLAKE2B 5ef8a3ce491c96d71ab7ed41d188dcff929c146f2c412bda1035b52fda09dc2bdeb3266eb3e1d046398deb59f440e69ee255a61ced3c2ab409e99ffd36b769e7 SHA512 e83564dfb4367867494868b53d171c276ee9d6827a60a80ac6ab06b410ed79c64c79b60b5be6e44d25987029ebed997b2779ab019d23908df8d14f2decad51be -DIST chromium-88.0.4315.5.tar.xz 845479952 BLAKE2B 78021935cbf7b3ceaedda1d1e4f355e4fe95795f5c793b46311ccc3c9dda53eb1518fe6472dc761790a9ea37a57c2f554fe442aff5d82bb133a028ff491b6099 SHA512 586fabb0759a880a010d6f80b3c5ec0f6477524b7d110cf05767cf2a8b48d81ad1e5161ebcd0e045f18006cf626413188dc6247a08b7ea57db53422b0708d4d3 +DIST chromium-88-patchset-3.tar.xz 8396 BLAKE2B 4c978f1a6efef3f71e3dd6340c392b74bc6a734b49a9ca43343d03903159dafc66159939f9a6c4b55665ddbe7bd97a26d8d86c285ec02cf76cad5f5cc7410570 SHA512 c39afa26f5b0b9930f6f67ce0c42eefd74c09d528b26bc0db57129b150f75ff83c8b1cb97bd9c5d75f288fb4767cc68c9c5ce89231b4a59f8ca02493e4dd281a +DIST chromium-88.0.4324.11.tar.xz 857506624 BLAKE2B 4ba54ceb848d9d7b9d3b9d5dc2a1dc80ea7da49150beb4ee5509f51db7d85cd72de79803ed25be52d0e6f8ff176a7154d05be5f36d604c4efe0a5b86c2fcd533 SHA512 736d77ba1c100cb6a0e6518920acf839f15213eaaa5f350f304c8ce9afbbeb47195b9927609ac01829e04f11f23cd2f8ab06493c1b14639c5b57f3ef5d01d5ee DIST setuptools-44.1.0.zip 858569 BLAKE2B f59f154e121502a731e51294ccd293d60ffccadacf51e23b53bf7ceba38858948b86783238061136c827ac3373ea7ea8e6253d4bb53f3f1dd69284568ec65a68 SHA512 4dfb0f42d334b835758e865a26ecd1e725711fa2b9c38ddc273b8b3849fba04527bc97436d11ba1e98f1a42922aa0f0b9032e32998273c705fac6e10735eacbf diff --git a/www-client/chromium/chromium-86.0.4240.198.ebuild b/www-client/chromium/chromium-86.0.4240.198.ebuild deleted file mode 100644 index 425634bbca4f..000000000000 --- a/www-client/chromium/chromium-86.0.4240.198.ebuild +++ /dev/null @@ -1,893 +0,0 @@ -# Copyright 2009-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="xml" - -CHROMIUM_LANGS="am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr gu he - hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr - sv sw ta te th tr uk vi zh-CN zh-TW" - -inherit check-reqs chromium-2 desktop flag-o-matic multilib ninja-utils pax-utils portability python-any-r1 readme.gentoo-r1 toolchain-funcs xdg-utils - -DESCRIPTION="Open-source version of Google Chrome web browser" -HOMEPAGE="https://chromium.org/" -PATCHSET="7" -PATCHSET_NAME="chromium-$(ver_cut 1)-patchset-${PATCHSET}" -SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz - https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip - https://github.com/stha09/chromium-patches/releases/download/${PATCHSET_NAME}/${PATCHSET_NAME}.tar.xz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm64 ~x86" -IUSE="component-build cups cpu_flags_arm_neon +hangouts headless +js-type-check kerberos official ozone ozone-wayland pic +proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-icu +system-libvpx +tcmalloc widevine" -RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )" -REQUIRED_USE=" - component-build? ( !suid ) - headless? ( ozone ) - ozone-wayland? ( ozone ) -" - -COMMON_X_DEPEND=" - media-libs/mesa:=[gbm] - x11-libs/libX11:= - x11-libs/libXcomposite:= - x11-libs/libXcursor:= - x11-libs/libXdamage:= - x11-libs/libXext:= - x11-libs/libXfixes:= - >=x11-libs/libXi-1.6.0:= - x11-libs/libXrandr:= - x11-libs/libXrender:= - x11-libs/libXtst:= - x11-libs/libXScrnSaver:= - x11-libs/libxcb:= -" - -COMMON_DEPEND=" - app-arch/bzip2:= - cups? ( >=net-print/cups-1.3.11:= ) - dev-libs/expat:= - dev-libs/glib:2 - >=dev-libs/libxml2-2.9.4-r3:=[icu] - dev-libs/nspr:= - >=dev-libs/nss-3.26:= - >=media-libs/alsa-lib-1.0.19:= - media-libs/fontconfig:= - media-libs/freetype:= - >=media-libs/harfbuzz-2.4.0:0=[icu(-)] - media-libs/libjpeg-turbo:= - media-libs/libpng:= - system-libvpx? ( >=media-libs/libvpx-1.8.2:=[postproc] ) - pulseaudio? ( media-sound/pulseaudio:= ) - system-ffmpeg? ( - >=media-video/ffmpeg-4.3:= - || ( - media-video/ffmpeg[-samba] - >=net-fs/samba-4.5.10-r1[-debug(-)] - ) - >=media-libs/opus-1.3.1:= - ) - sys-apps/dbus:= - sys-apps/pciutils:= - virtual/udev - x11-libs/cairo:= - x11-libs/gdk-pixbuf:2 - x11-libs/pango:= - media-libs/flac:= - >=media-libs/libwebp-0.4.0:= - sys-libs/zlib:=[minizip] - kerberos? ( virtual/krb5 ) - ozone? ( - !headless? ( - ${COMMON_X_DEPEND} - x11-libs/gtk+:3[X] - ozone-wayland? ( - dev-libs/wayland:= - dev-libs/libffi:= - x11-libs/libdrm:= - x11-libs/gtk+:3[wayland,X] - x11-libs/libxkbcommon:= - ) - ) - ) - !ozone? ( - >=app-accessibility/at-spi2-atk-2.26:2 - >=app-accessibility/at-spi2-core-2.26:2 - >=dev-libs/atk-2.26 - x11-libs/gtk+:3[X] - ${COMMON_X_DEPEND} - ) -" -# For nvidia-drivers blocker, see bug #413637 . -RDEPEND="${COMMON_DEPEND} - x11-misc/xdg-utils - virtual/opengl - virtual/ttf-fonts - selinux? ( sec-policy/selinux-chromium ) - tcmalloc? ( ! gn leftovers - base/third_party/libevent - third_party/adobe - third_party/speech-dispatcher - third_party/usb_ids - third_party/xdg-utils - ) - if ! use system-ffmpeg; then - keeplibs+=( third_party/ffmpeg third_party/opus ) - fi - if ! use system-icu; then - keeplibs+=( third_party/icu ) - fi - if ! use system-libvpx; then - keeplibs+=( third_party/libvpx ) - keeplibs+=( third_party/libvpx/source/libvpx/third_party/x86inc ) - - # we need to generate ppc64 stuff because upstream does not ship it yet - # it has to be done before unbundling. - if use ppc64; then - pushd third_party/libvpx >/dev/null || die - mkdir -p source/config/linux/ppc64 || die - ./generate_gni.sh || die - popd >/dev/null || die - fi - fi - if use tcmalloc; then - keeplibs+=( third_party/tcmalloc ) - fi - if use ozone && use ozone-wayland && ! use headless ; then - keeplibs+=( third_party/wayland ) - fi - if [[ ${CHROMIUM_FORCE_LIBCXX} == yes ]]; then - keeplibs+=( third_party/libxml ) - keeplibs+=( third_party/libxslt ) - keeplibs+=( third_party/openh264 ) - keeplibs+=( third_party/re2 ) - keeplibs+=( third_party/snappy ) - if use system-icu; then - keeplibs+=( third_party/icu ) - fi - fi - if use arm64 || use ppc64 ; then - keeplibs+=( third_party/swiftshader/third_party/llvm-10.0 ) - fi - # Remove most bundled libraries. Some are still needed. - build/linux/unbundle/remove_bundled_libraries.py "${keeplibs[@]}" --do-remove || die -} - -src_configure() { - # Calling this here supports resumption via FEATURES=keepwork - python_setup - - local myconf_gn="" - - # Make sure the build system will use the right tools, bug #340795. - tc-export AR CC CXX NM - - if [[ ${CHROMIUM_FORCE_CLANG} == yes ]] && ! tc-is-clang; then - # Force clang since gcc is pretty broken at the moment. - CC=${CHOST}-clang - CXX=${CHOST}-clang++ - strip-unsupported-flags - fi - - if tc-is-clang; then - myconf_gn+=" is_clang=true clang_use_chrome_plugins=false" - else - if [[ ${CHROMIUM_FORCE_LIBCXX} == yes ]]; then - die "Compiling with sys-libs/libcxx requires clang." - fi - myconf_gn+=" is_clang=false" - fi - - # Define a custom toolchain for GN - myconf_gn+=" custom_toolchain=\"//build/toolchain/linux/unbundle:default\"" - - if tc-is-cross-compiler; then - tc-export BUILD_{AR,CC,CXX,NM} - myconf_gn+=" host_toolchain=\"//build/toolchain/linux/unbundle:host\"" - myconf_gn+=" v8_snapshot_toolchain=\"//build/toolchain/linux/unbundle:host\"" - else - myconf_gn+=" host_toolchain=\"//build/toolchain/linux/unbundle:default\"" - fi - - # GN needs explicit config for Debug/Release as opposed to inferring it from build directory. - myconf_gn+=" is_debug=false" - - # Component build isn't generally intended for use by end users. It's mostly useful - # for development and debugging. - myconf_gn+=" is_component_build=$(usex component-build true false)" - - myconf_gn+=" use_allocator=$(usex tcmalloc \"tcmalloc\" \"none\")" - - # Disable nacl, we can't build without pnacl (http://crbug.com/269560). - myconf_gn+=" enable_nacl=false" - - # Use system-provided libraries. - # TODO: freetype -- remove sources (https://bugs.chromium.org/p/pdfium/issues/detail?id=733). - # TODO: use_system_hunspell (upstream changes needed). - # TODO: use_system_libsrtp (bug #459932). - # TODO: use_system_protobuf (bug #525560). - # TODO: use_system_ssl (http://crbug.com/58087). - # TODO: use_system_sqlite (http://crbug.com/22208). - - # libevent: https://bugs.gentoo.org/593458 - local gn_system_libraries=( - flac - fontconfig - freetype - # Need harfbuzz_from_pkgconfig target - #harfbuzz-ng - libdrm - libjpeg - libpng - libwebp - zlib - ) - if use system-ffmpeg; then - gn_system_libraries+=( ffmpeg opus ) - fi - if use system-icu; then - gn_system_libraries+=( icu ) - fi - if use system-libvpx; then - gn_system_libraries+=( libvpx ) - fi - if [[ ${CHROMIUM_FORCE_LIBCXX} != yes ]]; then - # unbundle only without libc++, because libc++ is not fully ABI compatible with libstdc++ - gn_system_libraries+=( libxml ) - gn_system_libraries+=( libxslt ) - gn_system_libraries+=( openh264 ) - gn_system_libraries+=( re2 ) - gn_system_libraries+=( snappy ) - fi - build/linux/unbundle/replace_gn_files.py --system-libraries "${gn_system_libraries[@]}" || die - - # See dependency logic in third_party/BUILD.gn - myconf_gn+=" use_system_harfbuzz=true" - - # Disable deprecated libgnome-keyring dependency, bug #713012 - myconf_gn+=" use_gnome_keyring=false" - - # Optional dependencies. - myconf_gn+=" enable_js_type_check=$(usex js-type-check true false)" - myconf_gn+=" enable_hangout_services_extension=$(usex hangouts true false)" - myconf_gn+=" enable_widevine=$(usex widevine true false)" - myconf_gn+=" use_cups=$(usex cups true false)" - myconf_gn+=" use_kerberos=$(usex kerberos true false)" - myconf_gn+=" use_pulseaudio=$(usex pulseaudio true false)" - - # TODO: link_pulseaudio=true for GN. - - myconf_gn+=" fieldtrial_testing_like_official_build=true" - - # Never use bundled gold binary. Disable gold linker flags for now. - # Do not use bundled clang. - # Trying to use gold results in linker crash. - myconf_gn+=" use_gold=false use_sysroot=false use_custom_libcxx=false" - - # Disable forced lld, bug 641556 - myconf_gn+=" use_lld=false" - - ffmpeg_branding="$(usex proprietary-codecs Chrome Chromium)" - myconf_gn+=" proprietary_codecs=$(usex proprietary-codecs true false)" - myconf_gn+=" ffmpeg_branding=\"${ffmpeg_branding}\"" - - # Set up Google API keys, see http://www.chromium.org/developers/how-tos/api-keys . - # Note: these are for Gentoo use ONLY. For your own distribution, - # please get your own set of keys. Feel free to contact chromium@gentoo.org - # for more info. - local google_api_key="AIzaSyDEAOvatFo0eTgsV_ZlEzx0ObmepsMzfAc" - local google_default_client_id="329227923882.apps.googleusercontent.com" - local google_default_client_secret="vgKG0NNv7GoDpbtoFNLxCUXu" - myconf_gn+=" google_api_key=\"${google_api_key}\"" - myconf_gn+=" google_default_client_id=\"${google_default_client_id}\"" - myconf_gn+=" google_default_client_secret=\"${google_default_client_secret}\"" - local myarch="$(tc-arch)" - - # Avoid CFLAGS problems, bug #352457, bug #390147. - if ! use custom-cflags; then - replace-flags "-Os" "-O2" - strip-flags - - # Debug info section overflows without component build - # Prevent linker from running out of address space, bug #471810 . - if ! use component-build || use x86; then - filter-flags "-g*" - fi - - # Prevent libvpx build failures. Bug 530248, 544702, 546984. - if [[ ${myarch} == amd64 || ${myarch} == x86 ]]; then - filter-flags -mno-mmx -mno-sse2 -mno-ssse3 -mno-sse4.1 -mno-avx -mno-avx2 -mno-fma -mno-fma4 - fi - fi - - if [[ ${CHROMIUM_FORCE_LIBCXX} == yes ]]; then - append-flags -stdlib=libc++ - append-ldflags -stdlib=libc++ - fi - - if [[ $myarch = amd64 ]] ; then - myconf_gn+=" target_cpu=\"x64\"" - ffmpeg_target_arch=x64 - elif [[ $myarch = x86 ]] ; then - myconf_gn+=" target_cpu=\"x86\"" - ffmpeg_target_arch=ia32 - - # This is normally defined by compiler_cpu_abi in - # build/config/compiler/BUILD.gn, but we patch that part out. - append-flags -msse2 -mfpmath=sse -mmmx - elif [[ $myarch = arm64 ]] ; then - myconf_gn+=" target_cpu=\"arm64\"" - ffmpeg_target_arch=arm64 - elif [[ $myarch = arm ]] ; then - myconf_gn+=" target_cpu=\"arm\"" - ffmpeg_target_arch=$(usex cpu_flags_arm_neon arm-neon arm) - elif [[ $myarch = ppc64 ]] ; then - myconf_gn+=" target_cpu=\"ppc64\"" - ffmpeg_target_arch=ppc64 - else - die "Failed to determine target arch, got '$myarch'." - fi - - # Make sure that -Werror doesn't get added to CFLAGS by the build system. - # Depending on GCC version the warnings are different and we don't want - # the build to fail because of that. - myconf_gn+=" treat_warnings_as_errors=false" - - # Disable fatal linker warnings, bug 506268. - myconf_gn+=" fatal_linker_warnings=false" - - # Bug 491582. - export TMPDIR="${WORKDIR}/temp" - mkdir -p -m 755 "${TMPDIR}" || die - - # https://bugs.gentoo.org/654216 - addpredict /dev/dri/ #nowarn - - #if ! use system-ffmpeg; then - if false; then - local build_ffmpeg_args="" - if use pic && [[ "${ffmpeg_target_arch}" == "ia32" ]]; then - build_ffmpeg_args+=" --disable-asm" - fi - - # Re-configure bundled ffmpeg. See bug #491378 for example reasons. - einfo "Configuring bundled ffmpeg..." - pushd third_party/ffmpeg > /dev/null || die - chromium/scripts/build_ffmpeg.py linux ${ffmpeg_target_arch} \ - --branding ${ffmpeg_branding} -- ${build_ffmpeg_args} || die - chromium/scripts/copy_config.sh || die - chromium/scripts/generate_gn.py || die - popd > /dev/null || die - fi - - # Chromium relies on this, but was disabled in >=clang-10, crbug.com/1042470 - append-cxxflags $(test-flags-CXX -flax-vector-conversions=all) - - # Disable unknown warning message from clang. - tc-is-clang && append-flags -Wno-unknown-warning-option - - # Explicitly disable ICU data file support for system-icu builds. - if use system-icu; then - myconf_gn+=" icu_use_data_file=false" - fi - - # Enable ozone support - if use ozone; then - myconf_gn+=" use_ozone=true ozone_auto_platforms=false" - myconf_gn+=" ozone_platform_headless=true" - if ! use headless; then - myconf_gn+=" use_system_libdrm=true" - myconf_gn+=" ozone_platform_wayland=$(usex ozone-wayland true false)" - myconf_gn+=" ozone_platform_x11=true" - myconf_gn+=" ozone_platform_headless=true" - if use ozone-wayland; then - myconf_gn+=" use_system_minigbm=true use_xkbcommon=true" - myconf_gn+=" ozone_platform=\"wayland\"" - else - myconf_gn+=" ozone_platform=\"x11\"" - fi - else - myconf_gn+=" ozone_platform=\"headless\"" - fi - fi - - # Enable official builds - myconf_gn+=" is_official_build=$(usex official true false)" - if use official; then - # Allow building against system libraries in official builds - sed -i 's/OFFICIAL_BUILD/GOOGLE_CHROME_BUILD/' \ - tools/generate_shim_headers/generate_shim_headers.py || die - # Disable CFI: unsupported for GCC, requires clang+lto+lld - myconf_gn+=" is_cfi=false" - fi - - einfo "Configuring Chromium..." - set -- gn gen --args="${myconf_gn} ${EXTRA_GN}" out/Release - echo "$@" - "$@" || die -} - -src_compile() { - # Final link uses lots of file descriptors. - ulimit -n 2048 - - # Calling this here supports resumption via FEATURES=keepwork - python_setup - - # https://bugs.gentoo.org/717456 - local -x PYTHONPATH="${WORKDIR}/setuptools-44.1.0:${PYTHONPATH+:}${PYTHONPATH}" - - #"${EPYTHON}" tools/clang/scripts/update.py --force-local-build --gcc-toolchain /usr --skip-checkout --use-system-cmake --without-android || die - - # Build mksnapshot and pax-mark it. - local x - for x in mksnapshot v8_context_snapshot_generator; do - if tc-is-cross-compiler; then - eninja -C out/Release "host/${x}" - pax-mark m "out/Release/host/${x}" - else - eninja -C out/Release "${x}" - pax-mark m "out/Release/${x}" - fi - done - - # Even though ninja autodetects number of CPUs, we respect - # user's options, for debugging with -j 1 or any other reason. - eninja -C out/Release chrome chromedriver - use suid && eninja -C out/Release chrome_sandbox - - pax-mark m out/Release/chrome - - # Build manpage; bug #684550 - sed -e 's|@@PACKAGE@@|chromium-browser|g; - s|@@MENUNAME@@|Chromium|g;' \ - chrome/app/resources/manpage.1.in > \ - out/Release/chromium-browser.1 || die - - # Build desktop file; bug #706786 - sed -e 's|@@MENUNAME@@|Chromium|g; - s|@@USR_BIN_SYMLINK_NAME@@|chromium-browser|g; - s|@@PACKAGE@@|chromium-browser|g; - s|\(^Exec=\)/usr/bin/|\1|g;' \ - chrome/installer/linux/common/desktop.template > \ - out/Release/chromium-browser-chromium.desktop || die -} - -src_install() { - local CHROMIUM_HOME="/usr/$(get_libdir)/chromium-browser" - exeinto "${CHROMIUM_HOME}" - doexe out/Release/chrome - - if use suid; then - newexe out/Release/chrome_sandbox chrome-sandbox - fperms 4755 "${CHROMIUM_HOME}/chrome-sandbox" - fi - - doexe out/Release/chromedriver - - ozone_auto_session () { - use ozone && use ozone-wayland && ! use headless && echo true || echo false - } - local sedargs=( -e - "s:/usr/lib/:/usr/$(get_libdir)/:g; - s:@@OZONE_AUTO_SESSION@@:$(ozone_auto_session):g" - ) - sed "${sedargs[@]}" "${FILESDIR}/chromium-launcher-r5.sh" > chromium-launcher.sh || die - doexe chromium-launcher.sh - - # It is important that we name the target "chromium-browser", - # xdg-utils expect it; bug #355517. - dosym "${CHROMIUM_HOME}/chromium-launcher.sh" /usr/bin/chromium-browser - # keep the old symlink around for consistency - dosym "${CHROMIUM_HOME}/chromium-launcher.sh" /usr/bin/chromium - - dosym "${CHROMIUM_HOME}/chromedriver" /usr/bin/chromedriver - - # Allow users to override command-line options, bug #357629. - insinto /etc/chromium - newins "${FILESDIR}/chromium.default" "default" - - pushd out/Release/locales > /dev/null || die - chromium_remove_language_paks - popd - - insinto "${CHROMIUM_HOME}" - doins out/Release/*.bin - doins out/Release/*.pak - ( - shopt -s nullglob - local files=(out/Release/*.so) - [[ ${#files[@]} -gt 0 ]] && doins "${files[@]}" - ) - - if ! use system-icu; then - doins out/Release/icudtl.dat - fi - - doins -r out/Release/locales - doins -r out/Release/resources - - if [[ -d out/Release/swiftshader ]]; then - insinto "${CHROMIUM_HOME}/swiftshader" - doins out/Release/swiftshader/*.so - fi - - # Install icons - local branding size - for size in 16 24 32 48 64 128 256 ; do - case ${size} in - 16|32) branding="chrome/app/theme/default_100_percent/chromium" ;; - *) branding="chrome/app/theme/chromium" ;; - esac - newicon -s ${size} "${branding}/product_logo_${size}.png" \ - chromium-browser.png - done - - # Install desktop entry - domenu out/Release/chromium-browser-chromium.desktop - - # Install GNOME default application entry (bug #303100). - insinto /usr/share/gnome-control-center/default-apps - newins "${FILESDIR}"/chromium-browser.xml chromium-browser.xml - - # Install manpage; bug #684550 - doman out/Release/chromium-browser.1 - dosym chromium-browser.1 /usr/share/man/man1/chromium.1 - - readme.gentoo_create_doc -} - -pkg_postrm() { - xdg_icon_cache_update - xdg_desktop_database_update -} - -pkg_postinst() { - xdg_icon_cache_update - xdg_desktop_database_update - readme.gentoo_print_elog -} diff --git a/www-client/chromium/chromium-87.0.4280.66.ebuild b/www-client/chromium/chromium-87.0.4280.66.ebuild index 15978621574f..40f01bffb8c9 100644 --- a/www-client/chromium/chromium-87.0.4280.66.ebuild +++ b/www-client/chromium/chromium-87.0.4280.66.ebuild @@ -21,7 +21,7 @@ SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P} LICENSE="BSD" SLOT="0" -KEYWORDS="amd64 ~arm64 ~x86" +KEYWORDS="amd64 arm64 ~x86" IUSE="component-build cups cpu_flags_arm_neon +hangouts headless +js-type-check kerberos official pic +proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-icu +tcmalloc vaapi wayland widevine" RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )" REQUIRED_USE=" diff --git a/www-client/chromium/chromium-88.0.4315.5.ebuild b/www-client/chromium/chromium-88.0.4324.11.ebuild similarity index 99% rename from www-client/chromium/chromium-88.0.4315.5.ebuild rename to www-client/chromium/chromium-88.0.4324.11.ebuild index 7baa24d13447..205802462603 100644 --- a/www-client/chromium/chromium-88.0.4315.5.ebuild +++ b/www-client/chromium/chromium-88.0.4324.11.ebuild @@ -13,7 +13,7 @@ inherit check-reqs chromium-2 desktop flag-o-matic multilib ninja-utils pax-util DESCRIPTION="Open-source version of Google Chrome web browser" HOMEPAGE="https://chromium.org/" -PATCHSET="2" +PATCHSET="3" PATCHSET_NAME="chromium-$(ver_cut 1)-patchset-${PATCHSET}" SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip diff --git a/www-client/chromium/files/chromium-87-xproto-crash.patch b/www-client/chromium/files/chromium-87-xproto-crash.patch deleted file mode 100644 index d0dc391e8f10..000000000000 --- a/www-client/chromium/files/chromium-87-xproto-crash.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 6e50c5a3abfa22eb17e26086bffbee288d07483e Mon Sep 17 00:00:00 2001 -From: Tom Anderson -Date: Thu, 22 Oct 2020 01:05:44 +0000 -Subject: [PATCH] [XProto] Fix crash in media::UserInputMonitorLinuxCore::DispatchXEvent - -The X server may send unsolicited events (from clients calling -XSendEvent() or from new keyboard mappings). So we must check that -the event is the correct type before dispatching it. - -R=dalecurtis - -Change-Id: Ic3e19f7da1415c358991609c9b016bd60ead2038 -Bug: 1140927 -Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2490674 -Commit-Queue: Thomas Anderson -Auto-Submit: Thomas Anderson -Reviewed-by: Dale Curtis -Cr-Commit-Position: refs/heads/master@{#819650} ---- - -diff --git a/media/base/user_input_monitor_linux.cc b/media/base/user_input_monitor_linux.cc -index 59e655f..13c373f 100644 ---- a/media/base/user_input_monitor_linux.cc -+++ b/media/base/user_input_monitor_linux.cc -@@ -115,9 +115,10 @@ - DCHECK(io_task_runner_->BelongsToCurrentThread()); - - auto* raw = event->As(); -- DCHECK(raw); -- DCHECK(raw->opcode == x11::Input::RawDeviceEvent::RawKeyPress || -- raw->opcode == x11::Input::RawDeviceEvent::RawKeyRelease); -+ if (!raw || (raw->opcode != x11::Input::RawDeviceEvent::RawKeyPress && -+ raw->opcode != x11::Input::RawDeviceEvent::RawKeyRelease)) { -+ return; -+ } - - ui::EventType type = raw->opcode == x11::Input::RawDeviceEvent::RawKeyPress - ? ui::ET_KEY_PRESSED diff --git a/www-client/chromium/files/chromium-launcher-r5.sh b/www-client/chromium/files/chromium-launcher-r5.sh deleted file mode 100644 index d9aa3af9a057..000000000000 --- a/www-client/chromium/files/chromium-launcher-r5.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/bash - -# Allow the user to override command-line flags, bug #357629. -# This is based on Debian's chromium-browser package, and is intended -# to be consistent with Debian. -for f in /etc/chromium/*; do - [[ -f ${f} ]] && source "${f}" -done - -# Prefer user defined CHROMIUM_USER_FLAGS (from env) over system -# default CHROMIUM_FLAGS (from /etc/chromium/default). -CHROMIUM_FLAGS=${CHROMIUM_USER_FLAGS:-"$CHROMIUM_FLAGS"} - -# Let the wrapped binary know that it has been run through the wrapper -export CHROME_WRAPPER=$(readlink -f "$0") - -PROGDIR=${CHROME_WRAPPER%/*} - -case ":$PATH:" in - *:$PROGDIR:*) - # $PATH already contains $PROGDIR - ;; - *) - # Append $PROGDIR to $PATH - export PATH="$PATH:$PROGDIR" - ;; -esac - -if [[ ${EUID} == 0 && -O ${XDG_CONFIG_HOME:-${HOME}} ]]; then - # Running as root with HOME owned by root. - # Pass --user-data-dir to work around upstream failsafe. - CHROMIUM_FLAGS="--user-data-dir=${XDG_CONFIG_HOME:-${HOME}/.config}/chromium - ${CHROMIUM_FLAGS}" -fi - -# Select session type -if @@OZONE_AUTO_SESSION@@; then - platform= - if [[ ${XDG_SESSION_TYPE} == x11 ]]; then - platform=x11 - elif [[ ${XDG_SESSION_TYPE} == wayland ]]; then - platform=wayland - else - if [[ -n ${WAYLAND_DISPLAY} ]]; then - platform=wayland - else - platform=x11 - fi - fi - CHROMIUM_FLAGS="--ozone-platform=${platform} ${CHROMIUM_FLAGS}" -fi - -# Set the .desktop file name -export CHROME_DESKTOP="chromium-browser-chromium.desktop" - -exec -a "chromium-browser" "$PROGDIR/chrome" --extra-plugin-dir=/usr/lib/nsbrowser/plugins ${CHROMIUM_FLAGS} "$@" diff --git a/www-client/chromium/metadata.xml b/www-client/chromium/metadata.xml index d4dcbbad0a3c..4f72ec48b4c9 100644 --- a/www-client/chromium/metadata.xml +++ b/www-client/chromium/metadata.xml @@ -11,15 +11,12 @@ Build Ozone only with headless backend, NOT RECOMMENDED for general use. Enable support for Google Hangouts features such as screen sharing Enable Official build instead of Developer build. - Enable Ozone platform abstraction layer with X11 backend. Disable optimized assembly code that is not PIC friendly Enable codecs for patent-encumbered audio and video formats. Build the SUID sandbox, which is only needed on CONFIG_USER_NS=n kernels Use system ffmpeg instead of the bundled one Use system icu instead of the bundled one - Use system libvpx instead of the bundled one Use bundled tcmalloc instead of system malloc - Enable Wayland backend for Ozone. Unsupported closed-source DRM capability (required by Netflix VOD) diff --git a/www-client/seamonkey/Manifest b/www-client/seamonkey/Manifest index 0b4e545f7bfa..baf2a644ae10 100644 --- a/www-client/seamonkey/Manifest +++ b/www-client/seamonkey/Manifest @@ -2,6 +2,7 @@ DIST seamonkey-2.53.3-system_libvpx-1.8.patch.xz 3128 BLAKE2B f73802d2715a11964a DIST seamonkey-2.53.4.source-l10n.tar.xz 12110188 BLAKE2B 6bf25f25bd72e35252824221d6ecf43f910cae65e21e2e15b628d9340256a3196b11a20522ce6284cee28a92141907ddcd5366427c356e57fb1a0015a064a2c2 SHA512 a5ac165412d3391206b7bcb2e7112693ce272e47e6cd2da321a60f52799fb04ac0d1ea84fb535ba73ef8d9faf5d582b314d2890768fd440136c830f3c88777cd DIST seamonkey-2.53.4.source.tar.xz 294513316 BLAKE2B 79425b0d15f99e30bd70871c28636ed8c567703b7048a46534fa971debbfeb90dd05880feca49354cb818c4a127cbc1f3ff17729784f90de91ba82db6da5fa59 SHA512 3450d6251f309bee96aa792cdce66b946d841089e0031ccbcf606845b1e0c951d58a8117a9e61e2d2435c1df614110944e5eac7ae9bd08429146bfe7334137fb DIST seamonkey-2.53.4_beta1-patches-01.tar.xz 39676 BLAKE2B de7742e6c286ca21403d003e22e3eba56e4d59c3f628c9768b47bac148abefbabfcd0510c89cc319c29e0775e316922c680d3de3dbfc542cae4f1f4942773124 SHA512 e97d6de074041f17cfe935995ce7116dee4249dc736315c82ed3878a92189d09542f141f65499ecdfd8621638d130b6d5786ab6033f3f794a805e136acefec3d +DIST seamonkey-2.53.5.1-rust148-packed_simd.patch 45781 BLAKE2B f028f56c68d03ee5231457dd233fe046cae7170d808a3db1c27a7c11f5cc97539df22ab1c05f305fed918d0a8a9ad2be53a9972b42607811ea2e60e3b56d6015 SHA512 74eec456b7aa872d682962b7585f74705b4ad4cbd27cfa11f5c6c2dfef303706dac414e72df882ba106df31305db79ff73158cdeba960bf74cad962e02fa3931 DIST seamonkey-2.53.5.1.source-l10n.tar.xz 12108000 BLAKE2B f8e3b3bcdadf92decaa2cffacac937a6c219017a205385136e98fa6fa13d5176dc000ee00ac910951d1e623c82241b1ed3d0b0b6754c5c5e0d2cf315c9bd097a SHA512 6532465d0ffbe2f36e5db0b54a801bf3b5d5481a1f39933620bea641e7faf8fcc0a04f5ff1e72272f119954835663e6d1fdb3d0595468a2fbb336b71d0290ce6 DIST seamonkey-2.53.5.1.source.tar.xz 285624492 BLAKE2B 1785872f9b5e3fdd92cc9d9b53f503e923451af116cc8c0581b6e61cf542d8fff7a4139f57c6d3db55865caa2f1292eaaa8125fe05ca1e18cc0ee02376c5644a SHA512 6ee8a1c5b81ede02cabcfc7b650805bab661b2898fd0f6d7c0ae1f99da19930efb69f25ce7374888cac6333e669ec79d72705fec69cfe617054b9daacd31297c DIST seamonkey-2.53.5.source-l10n.tar.xz 12108000 BLAKE2B f8e3b3bcdadf92decaa2cffacac937a6c219017a205385136e98fa6fa13d5176dc000ee00ac910951d1e623c82241b1ed3d0b0b6754c5c5e0d2cf315c9bd097a SHA512 6532465d0ffbe2f36e5db0b54a801bf3b5d5481a1f39933620bea641e7faf8fcc0a04f5ff1e72272f119954835663e6d1fdb3d0595468a2fbb336b71d0290ce6 diff --git a/www-client/seamonkey/seamonkey-2.53.5.1.ebuild b/www-client/seamonkey/seamonkey-2.53.5.1.ebuild index 054a541ccb38..4f900ed860ae 100644 --- a/www-client/seamonkey/seamonkey-2.53.5.1.ebuild +++ b/www-client/seamonkey/seamonkey-2.53.5.1.ebuild @@ -51,6 +51,7 @@ RESTRICT="!test? ( test )" SRC_URI+=" https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz + https://dev.gentoo.org/~polynomial-c/mozilla/${PN}-2.53.5.1-rust148-packed_simd.patch system-libvpx? ( https://dev.gentoo.org/~polynomial-c/mozilla/${PN}-2.53.3-system_libvpx-1.8.patch.xz ) " @@ -187,6 +188,7 @@ src_prepare() { # browser patches go here pushd "${S}"/mozilla &>/dev/null || die eapply "${WORKDIR}"/firefox + eapply "${DISTDIR}"/${PN}-2.53.5.1-rust148-packed_simd.patch popd &>/dev/null || die # Shell scripts sometimes contain DOS line endings; bug 391889 diff --git a/www-client/surf/files/surf-9999-gentoo.patch b/www-client/surf/files/surf-9999-gentoo.patch index 7b783e8feb89..30111395f00c 100644 --- a/www-client/surf/files/surf-9999-gentoo.patch +++ b/www-client/surf/files/surf-9999-gentoo.patch @@ -1,5 +1,5 @@ diff --git a/config.mk b/config.mk -index 5e68e38..fa45b55 100644 +index f1910bf..55d7066 100644 --- a/config.mk +++ b/config.mk @@ -4,18 +4,18 @@ VERSION = 2.0 @@ -19,13 +19,12 @@ index 5e68e38..fa45b55 100644 -GTKINC = `pkg-config --cflags gtk+-3.0 gcr-3 webkit2gtk-4.0` -GTKLIB = `pkg-config --libs gtk+-3.0 gcr-3 webkit2gtk-4.0` --WEBEXTINC = `pkg-config --cflags webkit2gtk-4.0 webkit2gtk-web-extension-4.0` --WEBEXTLIBS = `pkg-config --libs webkit2gtk-4.0 webkit2gtk-web-extension-4.0` +-WEBEXTINC = `pkg-config --cflags webkit2gtk-4.0 webkit2gtk-web-extension-4.0 gio-2.0` +-WEBEXTLIBS = `pkg-config --libs webkit2gtk-4.0 webkit2gtk-web-extension-4.0 gio-2.0` +GTKINC = $(shell $(PKG_CONFIG) --cflags gtk+-3.0 gcr-3 webkit2gtk-4.0) +GTKLIB = $(shell $(PKG_CONFIG) --libs gtk+-3.0 gcr-3 webkit2gtk-4.0) -+WEBEXTINC = $(shell $(PKG_CONFIG) --cflags webkit2gtk-4.0 webkit2gtk-web-extension-4.0) -+WEBEXTLIBS = $(shell $(PKG_CONFIG) --libs webkit2gtk-4.0 webkit2gtk-web-extension-4.0) ++WEBEXTINC = $(shell $(PKG_CONFIG) --cflags webkit2gtk-4.0 webkit2gtk-web-extension-4.0 gio-2.0) ++WEBEXTLIBS = $(shell $(PKG_CONFIG) --libs webkit2gtk-4.0 webkit2gtk-web-extension-4.0 gio-2.0) # includes and libs INCS = $(X11INC) $(GTKINC) - diff --git a/www-client/vivaldi-snapshot/Manifest b/www-client/vivaldi-snapshot/Manifest index 8c38e163b3e9..3fce795db912 100644 --- a/www-client/vivaldi-snapshot/Manifest +++ b/www-client/vivaldi-snapshot/Manifest @@ -1,8 +1,8 @@ -DIST vivaldi-snapshot-3.4.2066.70_p1-amd64.deb 75591304 BLAKE2B 33d7f5120e98228dd29f1aa3ed722d4f2f191c8d6e41bd073867479ff54782b747d2659f9085cc19e81161e616364cae7ac20c15ded4ed1c29098edda37e6a3e SHA512 3c1ba6cbb94ff6da98a5ce602a340962e1427b53cf2068ded72434159d09fef67cdf98e55f46414169324c3f8635063c085dff790fa0ef41f7235a04d455f684 -DIST vivaldi-snapshot-3.4.2066.70_p1-arm64.deb 68012848 BLAKE2B df7926527388ad9646362b9ee026567f316b7541b255fe39e155454ee2ca1905938783069d8e5e16822693609ef227d625c99bf3dd4d926839bb5dc552954759 SHA512 f7569de9400b929b85a4450133d27a8b81bd3d33d5ae7f48c864caf97aa5db2c4040990d5467f7e7b68c9ee495629b216887315399d6e5443a600d34f071800c -DIST vivaldi-snapshot-3.4.2066.70_p1-armhf.deb 66969164 BLAKE2B 44b28ddb82358d5d68329eea3500429bbe059bb0499639c261788387066809e8f3eb41a6efbdd9eac6a0a4ac083abd67cf48dee28ca6315174b0d6711f5eab2b SHA512 8dd70ef5f90e2a49b8e8db33809f295365466e59db4066bdfe2d7ad08a1144e4d03f8f5fa46f45838eaf5e0e69b05169cb69c4eb5ff9e1a1f61bb577ccd24301 -DIST vivaldi-snapshot-3.4.2066.70_p1-i386.deb 72746984 BLAKE2B dc9beec3a3277cfc33c2d4c8690de7a505e5add89190d228eb30d7952d3e671d0b1b8a161df861431edd76a55b61212341e1f0ae7218483a15c3552d30c2f304 SHA512 257a7bf5dd489deb7eb568d4a69be1bd9f53ef17b9f10e638d36710e38c3590744ba8acaf27570027b5f863ca175ea9dcacb72c9b6cd17ffd8db4fb58325e36b DIST vivaldi-snapshot-3.5.2088.7_p1-amd64.deb 75752868 BLAKE2B f5c83366b5a505e9673a714716ad54e952f031903e57d6462c0b4c204ac3ec8561fadcc6d78322ad19850271f8df33c2a7851ab237ae4b53eba80030ff900be2 SHA512 1b4d540560f2276b8f3b8870a4080f28f9e7467ef4da81249f9a4e809be2bf40d929f9912dea0e45a6aad5198e0f2329ca29968261cd560f7653c9e8ddadcd4a DIST vivaldi-snapshot-3.5.2088.7_p1-arm64.deb 68156456 BLAKE2B 4d2ea0defb0174f9c7487ae7c3c4ad2a24630b19e71f997e9e55e0f06f378609994b87ca8ee96b8716762d6ed073cf35a8cd6b8f31d0587e595697c3b9f81afe SHA512 4f285098d9304b6cd70f90cd7663f408f2da352115a2af39ceaaa0467561057f70bcb15385033b456e3ac04115fa9dd392861c42d5e8cacd69bfdfaf2bcdd0f3 DIST vivaldi-snapshot-3.5.2088.7_p1-armhf.deb 67085320 BLAKE2B 673973b731fe3701be09b0b5896700101cc1255e8b329beccb46e57dc14314095cce60b629e8c877aacc0e41955c976f5c3cb3820fded740c254b99e98ca2f5f SHA512 e554917546363cff91adc34498efad01250a9f72787b65bc06a84e3fef894981a7fafe12c9502a41b693fc829aaefd3fa56ce848d675fac1a6ac305c23ee460f DIST vivaldi-snapshot-3.5.2088.7_p1-i386.deb 72172488 BLAKE2B b59c82e62daaa16c902ee98e45a6985be510a587e671c503e4789be9cad79e5d289d4e28d6f802ab794f1a59024fec6515b6e4c23ee33333c684f273f016d7cc SHA512 d8c1024ef419dc30161247587c3e6150c0c20c5ed40c304ebaa10996b88fb95f056cbe7dc673593b46c17813860379edc9f7c09845139af51ae696f6c9b3c65f +DIST vivaldi-snapshot_3.5.2110.3-1_amd64.deb 76322716 BLAKE2B 5b659e4fede5006037da997ae4e62cc54ba1264c3f5f16d286dc00d1acd8047581b193e6b97a1134143532a348e660847d6f6fc399c0898affe316e5dcce352b SHA512 7352bc542953a8be51cafcda7b99bf0f3716283c7681ee5c5cef85dcdb3b9abe5d36dd42561a283159e47b11f46e004d3d33d2f39a7e3605efd96fd20082280d +DIST vivaldi-snapshot_3.5.2110.3-1_arm64.deb 68579824 BLAKE2B 52110e4b5b18771b97c4e114aa2f99e4681ea9ae0ea90b11dfaa4cb6549d6cd03b7e6fcdbedf1e433f2e59cba1b042620d081b25a75f3c04fc0c10159cf98750 SHA512 7f05001ad96aabde3fe70e7a6be5d8fa23b46c14bbe6d69f5b8b77fd30ae58fed55d7680916d037e51bbd97836cbcfc6583bb98f6ee0ac0fdcdc60a847d43238 +DIST vivaldi-snapshot_3.5.2110.3-1_armhf.deb 67678904 BLAKE2B 9839d71df8299a0d84b2ec6cf5e3a4aab22a4e7e9e6136edfffb4779943cf69fb7dfb8ce47c01cb345a92a56cd01443d20bf3cbd40fb0b7fbb36cada3c54fb71 SHA512 22a8e1a85fdc00291311e78b0c75c9aca6cdb060fb46677244ab8ab39793fbe290496ff9df640fab4e5504a43e3ffb293fcc1f5596178494e460c9e9abb6f623 +DIST vivaldi-snapshot_3.5.2110.3-1_i386.deb 73163460 BLAKE2B 84c33d2fe509889235dc2b0a03063328aea19c3908d84e418a34b65a6d4dd3f929724b3dff544c55aa4df333152e87e0e226087cabb09b64ce16b3b5403967ab SHA512 e860ded27d62043b36bb6bc1bcf80246e6569e617a77a2d72afce6312804ea16cb43d63fa5971246bef26dcd4cc7a1d5ea46c256100ca44a091d132b6ed8678a diff --git a/www-client/vivaldi-snapshot/metadata.xml b/www-client/vivaldi-snapshot/metadata.xml index 3b94165dd3d1..91c75704fe9c 100644 --- a/www-client/vivaldi-snapshot/metadata.xml +++ b/www-client/vivaldi-snapshot/metadata.xml @@ -5,4 +5,8 @@ chewi@gentoo.org James Le Cuirot + + Use system media-video/ffmpeg to support patent-encumbered media codecs + Unsupported closed-source DRM capability (required by Netflix VOD) + diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.4.2066.70_p1.ebuild b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.4.2066.70_p1.ebuild deleted file mode 100644 index 0178e0245253..000000000000 --- a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.4.2066.70_p1.ebuild +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -CHROMIUM_LANGS=" - af am ar be bg bn ca cs da de de-CH el en-GB en-US eo es es-419 es-PE et eu - fa fi fil fr fy gd gl gu he hi hr hu hy id io is it ja jbo ka kn ko ku lt - lv mk ml mr ms nb nl nn pl pt-BR pt-PT ro ru sc sk sl sq sr sv sw ta te th - tr uk vi zh-CN zh-TW -" -inherit chromium-2 multilib unpacker toolchain-funcs xdg - -VIVALDI_HOME="opt/${PN}" -DESCRIPTION="A browser for our friends" -HOMEPAGE="https://vivaldi.com/" -VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${PN}_${PV/_p/-}_" -SRC_URI=" - amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb ) - arm64? ( ${VIVALDI_BASE_URI}arm64.deb -> ${P}-arm64.deb ) - arm? ( ${VIVALDI_BASE_URI}armhf.deb -> ${P}-armhf.deb ) - x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb ) -" - -LICENSE="Vivaldi" -SLOT="0" -KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86" -RESTRICT="bindist mirror" - -DEPEND=" - virtual/libiconv -" -RDEPEND=" - dev-libs/expat - dev-libs/glib:2 - dev-libs/nspr - dev-libs/nss - media-libs/alsa-lib - media-libs/fontconfig - media-libs/freetype - media-libs/speex - net-print/cups - sys-apps/dbus - sys-libs/libcap - x11-libs/cairo - x11-libs/gdk-pixbuf - x11-libs/gtk+:3 - x11-libs/libX11 - x11-libs/libXScrnSaver - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXtst - x11-libs/pango[X] -" -QA_PREBUILT="*" -S=${WORKDIR} - -src_unpack() { - unpack_deb ${A} -} - -src_prepare() { - iconv -c -t UTF-8 usr/share/applications/${PN}.desktop > "${T}"/${PN}.desktop || die - mv "${T}"/${PN}.desktop usr/share/applications/${PN}.desktop || die - - mv usr/share/doc/${PN} usr/share/doc/${PF} || die - chmod 0755 usr/share/doc/${PF} || die - - gunzip usr/share/doc/${PF}/changelog.gz || die - - rm \ - _gpgbuilder \ - etc/cron.daily/${PN} \ - || die - rmdir \ - etc/cron.daily/ \ - etc/ \ - || die - - local c d - for d in 16 22 24 32 48 64 128 256; do - mkdir -p usr/share/icons/hicolor/${d}x${d}/apps || die - cp \ - ${VIVALDI_HOME}/product_logo_${d}.png \ - usr/share/icons/hicolor/${d}x${d}/apps/${PN}.png || die - done - - pushd "${VIVALDI_HOME}/locales" > /dev/null || die - chromium_remove_language_paks - popd > /dev/null || die - - eapply_user -} - -src_install() { - rm -r usr/share/appdata || die - mv * "${D}" || die - dosym /${VIVALDI_HOME}/${PN} /usr/bin/${PN} - - fperms 4711 /${VIVALDI_HOME}/vivaldi-sandbox -} diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild new file mode 100644 index 000000000000..f69da1d681b9 --- /dev/null +++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-3.5.2110.3.ebuild @@ -0,0 +1,194 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CHROMIUM_LANGS=" + af + am + ar + be + bg + bn + ca + cs + da + de + de-CH + el + en-GB + en-US + eo + es + es-419 + es-PE + et + eu + fa + fi + fil + fr + fy + gd + gl + gu + he + hi + hr + hu + hy + id + io + is + it + ja + jbo + ka + kn + ko + ku + lt + lv + mk + ml + mr + ms + nb + nl + nn + pl + pt-BR + pt-PT + ro + ru + sc + sk + sl + sq + sr + sv + sw + ta + te + th + tr + uk + vi + zh-CN + zh-TW +" + +inherit chromium-2 desktop unpacker xdg + +VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}" +VIVALDI_HOME="opt/${PN}" +DESCRIPTION="A browser for our friends" +HOMEPAGE="https://vivaldi.com/" + +if [[ ${PV} = *_p* ]]; then + DEB_REV="${PV#*_p}" +else + DEB_REV=1 +fi + +VIVALDI_BASE_URI="https://downloads.vivaldi.com/${VIVALDI_PN#vivaldi-}/${VIVALDI_PN}_${PV%_p*}-${DEB_REV}_" +SRC_URI=" + amd64? ( ${VIVALDI_BASE_URI}amd64.deb ) + arm64? ( ${VIVALDI_BASE_URI}arm64.deb ) + arm? ( ${VIVALDI_BASE_URI}armhf.deb ) + x86? ( ${VIVALDI_BASE_URI}i386.deb ) +" + +LICENSE="Vivaldi" +SLOT="0" +KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86" +IUSE="proprietary-codecs widevine" +RESTRICT="bindist mirror" + +RDEPEND=" + dev-libs/expat + dev-libs/glib:2 + dev-libs/nspr + dev-libs/nss + media-libs/alsa-lib + media-libs/fontconfig + media-libs/freetype + media-libs/speex + net-print/cups + sys-apps/dbus + sys-libs/libcap + x11-libs/cairo + x11-libs/gdk-pixbuf + x11-libs/gtk+:3 + x11-libs/libX11 + x11-libs/libXScrnSaver + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXtst + x11-libs/pango[X] + proprietary-codecs? ( media-video/ffmpeg:0/56.58.58[chromium(-)] ) + widevine? ( www-plugins/chrome-binary-plugins ) +" + +QA_PREBUILT="*" +S="${WORKDIR}" + +src_unpack() { + unpack_deb ${A} +} + +src_prepare() { + # Rename docs directory to our needs. + mv usr/share/doc/{${VIVALDI_PN},${PF}}/ || die + + # Decompress the docs. + gunzip usr/share/doc/${PF}/changelog.gz || die + + # The appdata directory is deprecated. + mv usr/share/{appdata,metainfo}/ || die + + # Remove cron job for updating from Debian repos. + rm etc/cron.daily/${PN} ${VIVALDI_HOME}/cron/${PN} || die + rmdir etc/{cron.daily/,} ${VIVALDI_HOME}/cron/ || die + + # Remove scripts that will most likely break things. + rm ${VIVALDI_HOME}/update-{ffmpeg,widevine} || die + + pushd ${VIVALDI_HOME}/locales > /dev/null || die + rm ja-KS.pak || die # No flag for Kansai as not in IETF list. + chromium_remove_language_paks + popd > /dev/null || die + + eapply_user +} + +src_install() { + mv */ "${D}" || die + dosym /${VIVALDI_HOME}/${PN} /usr/bin/${PN} + fperms 4711 /${VIVALDI_HOME}/vivaldi-sandbox + + local logo size + for logo in "${ED}"/${VIVALDI_HOME}/product_logo_*.png; do + size=${logo##*_} + size=${size%.*} + newicon -s "${size}" "${logo}" ${PN}.png + done + + if use proprietary-codecs; then + dosym ../../../usr/$(get_libdir)/chromium/libffmpeg.so \ + /${VIVALDI_HOME}/lib/libffmpeg.so + fi + + if use widevine; then + dosym ../../usr/$(get_libdir)/chromium-browser/WidevineCdm \ + /${VIVALDI_HOME}/WidevineCdm + else + rm "${ED}"/${VIVALDI_HOME}/WidevineCdm || die + fi +} diff --git a/www-servers/Manifest.gz b/www-servers/Manifest.gz index c64cb01e14c0..a6f295db8084 100644 Binary files a/www-servers/Manifest.gz and b/www-servers/Manifest.gz differ diff --git a/www-servers/nginx-unit/Manifest b/www-servers/nginx-unit/Manifest index fb922e75b9e0..512578b5b09f 100644 --- a/www-servers/nginx-unit/Manifest +++ b/www-servers/nginx-unit/Manifest @@ -1,3 +1,2 @@ -DIST nginx-unit-1.17.0.tar.gz 726928 BLAKE2B d171f2f818302cb0f491ccc3ca93596ee52817647cf1f2f176ebed075cb1dd5772f133d9e925075fe72d826a63b4c4debddace8784612196ebe6b6655d70571b SHA512 4175fc6dd84ad8a3bbdc117d3ce0c7a11c708a7a204ade0bb40f5606f6923e351bb1a8f1f8394c09cdf12fdc20bc927920412dc4b41d3141f76482db047c4bed -DIST nginx-unit-1.18.0.tar.gz 742273 BLAKE2B d856aadb07286acb944a7bd486fc8c548db0412f8e4e2bec0382aa719d743ee22208c20ccf50466e3d592e29690abfacbfd6d4c44b1369bdc5a61ca2765bd3d2 SHA512 2beac69caeb09278a6c2cdafe20a8040e589f9ad6e302c896cd396ae7d576f563dd6a480f815b4a26d22e15592b5abcd927a8ba436517bd9b9bbb78bff3176ff DIST nginx-unit-1.20.0.tar.gz 787607 BLAKE2B 7ef0ea98b0fa2b5af591763ed67c1a92c7309c8ea91b29bfb3d3e309149f9d563ff8a3cb0f19f52d9d53f05a56c2a6f0e3c07e7b8315106911a87bc01f9d3af3 SHA512 dd68103795acbdcd87a951c92c72f3cb74b5e622eca4e687194508b55a592ac4312de3a8ff7ddb9a5df9750363b24dca9e1b48c7ef42c78aca3a18aca6a51f42 +DIST nginx-unit-1.21.0.tar.gz 802826 BLAKE2B 9d0af079b84cd769b90d4735825765571a384d69fb8c6201d6ab2f943778a7ca19b408359e12a433d192aeefad9f7e8f760cde0568101858dabadfbb9b598784 SHA512 12e9e8b221ffe8014931fe46c7faa9398de6ad08bbc07e5f8e50f086e4a22419960522d33bece493e17ae544b499acb4ba29cb6cb731c0bb7fbdc6cdc44bf210 diff --git a/www-servers/nginx-unit/nginx-unit-1.18.0.ebuild b/www-servers/nginx-unit/nginx-unit-1.18.0.ebuild deleted file mode 100644 index 49c2f106174a..000000000000 --- a/www-servers/nginx-unit/nginx-unit-1.18.0.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=(python3_{6,7,8}) - -inherit flag-o-matic python-single-r1 toolchain-funcs - -MY_P="unit-${PV}" -DESCRIPTION="Dynamic web and application server" -HOMEPAGE="https://unit.nginx.org" -SRC_URI="https://unit.nginx.org/download/${MY_P}.tar.gz -> ${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64" -MY_USE="perl python ruby" -MY_USE_PHP="php7-2 php7-3 php7-4" -IUSE="${MY_USE} ${MY_USE_PHP} ssl" -REQUIRED_USE="|| ( ${IUSE} ) - python? ( ${PYTHON_REQUIRED_USE} )" - -DEPEND="perl? ( dev-lang/perl:= ) - php7-2? ( dev-lang/php:7.2[embed] ) - php7-3? ( dev-lang/php:7.3[embed] ) - php7-4? ( dev-lang/php:7.4[embed] ) - python? ( ${PYTHON_DEPS} ) - ruby? ( dev-lang/ruby:* ) - ssl? ( dev-libs/openssl:0 )" -RDEPEND="${DEPEND}" -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - use python && python-single-r1_pkg_setup -} - -src_prepare() { - eapply_user - sed -i '/^CFLAGS/d' auto/make || die -} - -src_configure() { - local opt=( - --control=unix:/run/${PN}.sock - --log=/var/log/${PN} - --modules=$(get_libdir)/${PN} - --pid=/run/${PN}.pid - --prefix=/usr - --state=/var/lib/${PN} - ) - use ssl && opt+=( --openssl ) - export AR="$(tc-getAR)" - export CC="$(tc-getCC)" - ./configure ${opt[@]} --ld-opt="${LDFLAGS}" || die "Core configuration failed" - # Modules require position-independent code - append-cflags $(test-flags-CC -fPIC) - for flag in ${MY_USE} ; do - if use ${flag} ; then - ./configure ${flag} || die "Module configuration failed: ${flag}" - fi - done - for flag in ${MY_USE_PHP} ; do - if use ${flag} ; then - local php_slot="/usr/$(get_libdir)/${flag/-/.}" - ./configure php \ - --module=${flag} \ - --config=${php_slot}/bin/php-config \ - --lib-path=${php_slot}/$(get_libdir) || die "Module configuration failed: ${flag}" - fi - done -} - -src_install() { - default - diropts -m 0770 - keepdir /var/lib/${PN} - newinitd "${FILESDIR}/${PN}.initd" ${PN} -} diff --git a/www-servers/nginx-unit/nginx-unit-1.20.0.ebuild b/www-servers/nginx-unit/nginx-unit-1.20.0.ebuild index ac0c6c8fc956..49c2f106174a 100644 --- a/www-servers/nginx-unit/nginx-unit-1.20.0.ebuild +++ b/www-servers/nginx-unit/nginx-unit-1.20.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://unit.nginx.org/download/${MY_P}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" MY_USE="perl python ruby" MY_USE_PHP="php7-2 php7-3 php7-4" IUSE="${MY_USE} ${MY_USE_PHP} ssl" diff --git a/www-servers/nginx-unit/nginx-unit-1.17.0.ebuild b/www-servers/nginx-unit/nginx-unit-1.21.0.ebuild similarity index 94% rename from www-servers/nginx-unit/nginx-unit-1.17.0.ebuild rename to www-servers/nginx-unit/nginx-unit-1.21.0.ebuild index 49c2f106174a..989cac450fa5 100644 --- a/www-servers/nginx-unit/nginx-unit-1.17.0.ebuild +++ b/www-servers/nginx-unit/nginx-unit-1.21.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=(python3_{6,7,8}) +PYTHON_COMPAT=(python3_{6,7,8,9}) inherit flag-o-matic python-single-r1 toolchain-funcs @@ -14,7 +14,7 @@ SRC_URI="https://unit.nginx.org/download/${MY_P}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64" +KEYWORDS="~amd64" MY_USE="perl python ruby" MY_USE_PHP="php7-2 php7-3 php7-4" IUSE="${MY_USE} ${MY_USE_PHP} ssl" @@ -26,7 +26,10 @@ DEPEND="perl? ( dev-lang/perl:= ) php7-3? ( dev-lang/php:7.3[embed] ) php7-4? ( dev-lang/php:7.4[embed] ) python? ( ${PYTHON_DEPS} ) - ruby? ( dev-lang/ruby:* ) + ruby? ( + dev-lang/ruby:* + dev-ruby/rubygems:* + ) ssl? ( dev-libs/openssl:0 )" RDEPEND="${DEPEND}" S="${WORKDIR}/${MY_P}" diff --git a/www-servers/puma/Manifest b/www-servers/puma/Manifest index eabbfd911f94..047899e6c29b 100644 --- a/www-servers/puma/Manifest +++ b/www-servers/puma/Manifest @@ -1,2 +1,3 @@ DIST puma-3.12.5.tar.gz 219175 BLAKE2B 55e80fba8fd84004090cb8d30b6fd01652f1beb1d1216c5d41ce46c616677504fa867f9701ed2631f4edc956c9377d72c6fd4a1b61e99fdbb50ea371b170a0c0 SHA512 1e6721844cbabab0cfb8b1707625723061821dae3ee06a3330075f787ae580e6836d9cbe436e63dc4602253ad1da3b56135316c923c03bbbae454d9457a44aec DIST puma-4.3.4.tar.gz 241806 BLAKE2B 5450f14112ad45c48794186c7e9f078feed28a4194a917c949f4058b9d3a115273df6d93260de330047fa59730cb3ad45f31eb05e5880569e95a0b2c9de99a42 SHA512 619bf44c17622233b673dbf6c8f34b0463cd32684df81c20f31045d3106a86e110753b4da80e7b51b46fe18d90ee107d9a84a975dc3116840d9a9b5962178873 +DIST puma-5.0.4.tar.gz 275942 BLAKE2B 1e607d7ff44ae9b677f6fb41355fe3b660bd880a642e5d3859e177c9327b68c0db729621ef0b3d7a5bb08917249fb7eac688027ceb62f072dabe7ba30086bf79 SHA512 6804ef3bfd4fa3a6695c213e3550244adace91121cb2c45f06fa4c68fb502787c5fdebba41b4754216eab880ca8738ab6f83d0ec9456a86fc6db99a4d4405bd8 diff --git a/www-servers/puma/puma-5.0.4.ebuild b/www-servers/puma/puma-5.0.4.ebuild new file mode 100644 index 000000000000..4ae517dd9959 --- /dev/null +++ b/www-servers/puma/puma-5.0.4.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +USE_RUBY="ruby25 ruby26 ruby27" + +RUBY_FAKEGEM_GEMSPEC="puma.gemspec" + +inherit multilib ruby-fakegem + +DESCRIPTION="a simple, fast, threaded, and highly concurrent HTTP 1.1 server for Ruby/Rack" +HOMEPAGE="https://puma.io/" +SRC_URI="https://github.com/puma/puma/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="3" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND+=" dev-libs/openssl:0 test? ( net-misc/curl )" +RDEPEND+=" dev-libs/openssl:0" + +ruby_add_bdepend "virtual/ruby-ssl + test? ( dev-ruby/rack >=dev-ruby/minitest-5.9:5 >=dev-ruby/test-unit-3.0:2 )" + +ruby_add_rdepend "dev-ruby/nio4r:2" + +all_ruby_prepare() { + sed -e '/bundler/ s:^:#:' \ + -e '/prove/ s:^:#:' \ + -e '/stub_const/ s:^:#:' \ + -i test/helper.rb || die + + # Avoid tests failing inconsistently + sed -i -e '/test_bad_client/askip "inconsistent results"' test/test_web_server.rb || die + + # Avoid launcher tests since they make assumptions about bundler use + rm -f test/test_launcher.rb || die + + # Skip integration tests since they make a lot of assumptions about + # the environment + rm -f test/test_integration_* test/test_preserve_bundler_env.rb|| die + + # Avoid test that uses unpackaged stub_const + sed -i -e '/test_shutdown_with_grace/,/^ end/ s:^:#:' test/test_thread_pool.rb || die + + sed -e 's/git ls-files --/find/' \ + -e 's:_relative ": "./:' \ + -i ${RUBY_FAKEGEM_GEMSPEC} || die +} + +each_ruby_configure() { + ${RUBY} -Cext/puma_http11 extconf.rb || die +} + +each_ruby_compile() { + emake V=1 -Cext/puma_http11 + cp ext/puma_http11/puma_http11$(get_modname) lib/puma/ || die +} + +each_ruby_test() { + einfo "Running test suite" + ${RUBY} -Ilib:.:test -e "gem 'minitest', '~>5.9'; gem 'test-unit', '~>3.0'; require 'minitest/autorun'; Dir['test/**/*test_*.rb'].each{|f| require f}" || die +} diff --git a/x11-libs/Manifest.gz b/x11-libs/Manifest.gz index c1e9b04a68e5..7a407757e89d 100644 Binary files a/x11-libs/Manifest.gz and b/x11-libs/Manifest.gz differ diff --git a/x11-libs/libX11/Manifest b/x11-libs/libX11/Manifest index 4fcb6e82b0b1..a9c7f15d3c64 100644 --- a/x11-libs/libX11/Manifest +++ b/x11-libs/libX11/Manifest @@ -1 +1,2 @@ DIST libX11-1.6.12.tar.bz2 2376498 BLAKE2B a2c6c76d5d4a15073f7837e6a72ecd8b7711dfcec48c54da538a6100a4afa01334a9456376633f1a2365717e03231c6b777c5683e462d10564065dc2437da39a SHA512 79df7d61d9009b0dd3b65f67a62189aa0a43799c01026b3d2d534092596a0b67f246af5e398a89eb1ccc61a27335f81be8262b8a39768a76f62d862cd7415a47 +DIST libX11-1.7.0.tar.bz2 2409144 BLAKE2B 1eb6aa8f2fe50ddb2f6d324429b3d9cecfb48833c3f52f22ae8e32846be614c8db63c57d25e2b1c46612b6b333ff61ceab8ac0b605b117bcea1224f918af8e6d SHA512 f661ca90350fd8a94f054b00f12f5122cea068ebff706acfd399462236c189a296a2358d17d16166635101cf56cc19303dd407873a159932d093c9f33556f9fb diff --git a/x11-libs/libX11/libX11-1.7.0.ebuild b/x11-libs/libX11/libX11-1.7.0.ebuild new file mode 100644 index 000000000000..b074ab686443 --- /dev/null +++ b/x11-libs/libX11/libX11-1.7.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +XORG_DOC=doc +XORG_MULTILIB=yes +inherit toolchain-funcs xorg-3 + +DESCRIPTION="X.Org X11 library" + +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="ipv6 test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=x11-libs/libxcb-1.11.1[${MULTILIB_USEDEP}] + ! - base-system@gentoo.org - Gentoo Base System + x11@gentoo.org + X11 - nvram-wakeup + cpe:/a:x.org:libx11 diff --git a/x11-misc/gcolor2/files/gcolor2-0.4-fno-common.patch b/x11-misc/gcolor2/files/gcolor2-0.4-fno-common.patch new file mode 100644 index 000000000000..f30552a13e60 --- /dev/null +++ b/x11-misc/gcolor2/files/gcolor2-0.4-fno-common.patch @@ -0,0 +1,27 @@ +--- a/src/callbacks.c ++++ b/src/callbacks.c +@@ -13,6 +13,9 @@ + #include "support.h" + + ++GtkWidget *gcolor2; ++GtkWidget *menu; ++GdkColor colorvalue; + GtkWidget *savedialog; + gchar *colorname; + static GtkWidget *aboutdialog = NULL; +--- a/src/callbacks.h ++++ b/src/callbacks.h +@@ -42,9 +42,9 @@ + "\302\267 Usability / user interface enhancements\n" \ + "\302\267 Code cleanup" + +-GtkWidget *gcolor2; +-GtkWidget *menu; +-GdkColor colorvalue; ++extern GtkWidget *gcolor2; ++extern GtkWidget *menu; ++extern GdkColor colorvalue; + + enum + { diff --git a/x11-misc/gcolor2/files/gcolor2-0.4-pkg-config-macro.patch b/x11-misc/gcolor2/files/gcolor2-0.4-pkg-config-macro.patch index ee904746f147..c3fcca0af712 100644 --- a/x11-misc/gcolor2/files/gcolor2-0.4-pkg-config-macro.patch +++ b/x11-misc/gcolor2/files/gcolor2-0.4-pkg-config-macro.patch @@ -1,5 +1,5 @@ ---- configure.ac.old 2008-01-08 09:36:24.000000000 +0100 -+++ configure.ac 2008-01-08 09:37:06.000000000 +0100 +--- a/configure.ac ++++ b/configure.ac @@ -26,6 +26,7 @@ AC_DISABLE_STATIC AC_PROG_LIBTOOL diff --git a/x11-misc/gcolor2/files/modular-rgb.patch b/x11-misc/gcolor2/files/modular-rgb.patch index eec5668c2bc7..798fe57e2e3f 100644 --- a/x11-misc/gcolor2/files/modular-rgb.patch +++ b/x11-misc/gcolor2/files/modular-rgb.patch @@ -1,5 +1,5 @@ ---- src/callbacks.h.orig 2006-01-10 21:26:19.000000000 -0500 -+++ src/callbacks.h 2006-01-10 21:26:44.000000000 -0500 +--- a/src/callbacks.h ++++ b/src/callbacks.h @@ -12,6 +12,7 @@ #define SYSTEM_FILE_2 "/usr/lib/X11/rgb.txt" #define SYSTEM_FILE_3 "/etc/X11/rgb.txt" @@ -8,8 +8,8 @@ /* about dialog text */ #define ABOUT_CREDITS_TEXT "Developer:\n" \ ---- src/main.c.orig 2006-01-10 21:43:20.000000000 -0500 -+++ src/main.c 2006-01-10 21:42:14.000000000 -0500 +--- a/src/main.c ++++ b/src/main.c @@ -36,6 +36,8 @@ sys_filename = SYSTEM_FILE_3; else if (g_file_test (SYSTEM_FILE_4, G_FILE_TEST_EXISTS)) diff --git a/x11-misc/gcolor2/gcolor2-0.4-r4.ebuild b/x11-misc/gcolor2/gcolor2-0.4-r4.ebuild index 0b164ecf00f6..ec842bfb9d47 100644 --- a/x11-misc/gcolor2/gcolor2-0.4-r4.ebuild +++ b/x11-misc/gcolor2/gcolor2-0.4-r4.ebuild @@ -1,42 +1,45 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -GCONF_DEBUG="no" +EAPI=7 -inherit autotools eutils gnome2 +inherit autotools desktop xdg DESCRIPTION="A GTK+ color selector" HOMEPAGE="http://gcolor2.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz +SRC_URI=" + mirror://sourceforge/${PN}/${P}.tar.gz https://dev.gentoo.org/~pacho/gnome/${PN}.svg" LICENSE="GPL-2 public-domain" SLOT="0" KEYWORDS="amd64 ~ppc ~ppc64 x86" -IUSE="" RDEPEND=">=x11-libs/gtk+-2.4:2" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" >=dev-util/intltool-0.27 - virtual/pkgconfig -" + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/modular-rgb.patch + "${FILESDIR}"/${P}-amd64.patch + "${FILESDIR}"/${P}-pkg-config-macro.patch + "${FILESDIR}"/${P}-fno-common.patch +) src_prepare() { - epatch "${FILESDIR}"/modular-rgb.patch - epatch "${FILESDIR}"/${P}-amd64.patch - epatch "${FILESDIR}"/${P}-pkg-config-macro.patch + xdg_src_prepare # To check at each bump. sed "s/^#.*/[encoding: UTF-8]/" -i po/POTFILES.in || die "sed failed" - echo "gcolor2.glade" >> po/POTFILES.in + echo "gcolor2.glade" >> po/POTFILES.in || die eautoreconf - gnome2_src_prepare } src_install() { - gnome2_src_install + default # Icon from https://sourceforge.net/p/gcolor2/patches/5/ doicon -s scalable "${DISTDIR}/${PN}.svg" diff --git a/x11-misc/py3status/Manifest b/x11-misc/py3status/Manifest index 6a4f303315de..58509e141ad7 100644 --- a/x11-misc/py3status/Manifest +++ b/x11-misc/py3status/Manifest @@ -1 +1 @@ -DIST py3status-3.30.tar.gz 407251 BLAKE2B 6dc65cf3eb5ca2e182e6d27cb4f3a210e839b0c45caa7ced8683bad7ec60c53992bab10f9cd6c8577525cdeb12cd1196afe1a15f413ea58f08eb17b20f7fc6cc SHA512 f3b72a85f3cd2257ac4c94fa246a0440f4b229c42ef0140062b9f50ea7dbf4ac741648d196729d8c1ea1454c1db2c57ea0ba6999e2141b7a09c9c4c31e488440 +DIST py3status-3.31.tar.gz 408348 BLAKE2B 69b71426974ee21fd5f70fc7448b2b08fd2b8ffd673fd0de928725f75dff7121fc9619e8ce98fc926c75dc2ee8eac21ecd77ce7f9d1df01da2698eef00b46fb0 SHA512 612bb859ce594b3eb397b6d254723cfd8fb5b005eb3279f05d72b0098769bff1434060c1086606331d207e5367323179ef52c07ebb4829bf4a10c490e524b4cc diff --git a/x11-misc/py3status/py3status-3.30.ebuild b/x11-misc/py3status/py3status-3.31.ebuild similarity index 100% rename from x11-misc/py3status/py3status-3.30.ebuild rename to x11-misc/py3status/py3status-3.31.ebuild diff --git a/x11-plugins/Manifest.gz b/x11-plugins/Manifest.gz index 1e8f50180ada..6969288d0fd5 100644 Binary files a/x11-plugins/Manifest.gz and b/x11-plugins/Manifest.gz differ diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild index 9bec6c6314a4..214c076d82cf 100644 --- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild +++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -13,7 +13,13 @@ SLOT="0" KEYWORDS="amd64 ppc ~sparc x86" IUSE="" -RDEPEND="x11-libs/gdk-pixbuf:2[X] +RDEPEND="|| ( + ( + x11-libs/gdk-pixbuf:2[X] + >=x11-libs/gdk-pixbuf-2.42.0:2 + ) + =x11-libs/gdk-pixbuf-2.42.0:2 + ) + =x11-libs/libdockapp-0.7:=" DEPEND="${RDEPEND}" diff --git a/x11-wm/Manifest.gz b/x11-wm/Manifest.gz index 0ef11aa146e5..9e499a038b7c 100644 Binary files a/x11-wm/Manifest.gz and b/x11-wm/Manifest.gz differ diff --git a/x11-wm/mutter/Manifest b/x11-wm/mutter/Manifest index 5fd550b5e6b3..894413934630 100644 --- a/x11-wm/mutter/Manifest +++ b/x11-wm/mutter/Manifest @@ -1,4 +1,3 @@ -DIST mutter-3.36.5.tar.xz 2687916 BLAKE2B 15eedc6b1a7c5fdb3a355b8aa4b5586491d0fc50ef293b200b747e9d2a8540df9dcb5d492edb30d1a51b779bf4faceba9448535475c65864d08219eb94e71599 SHA512 cf02003578ebe4d025006b7dc8c277e5a2240373d41fd21e9e7a0ea3d7f323454925a09a5f77117e63a95d4f7663fc4ad7b6e21b042044a8a1a5238713f8d5ec DIST mutter-3.36.7-patchset.tar.xz 14232 BLAKE2B 90a289f7012e28607d487fd635b73683e657bfd8792dbf662f8822ac7f096d21add6fcd3b7092e4e82f2130226f5b1ff9afd1e026fec8333680c9b4e4712dea2 SHA512 74e3951358a02c552a45b590360b9a038283e983ff78daf433fea1589ca3e7824f21af3b786a06ba84fb400581dfc4f97f29d259afdaca2ae3e1456a49a96243 DIST mutter-3.36.7.tar.xz 2689176 BLAKE2B a3849b254dbe2029736ef760fe4225e63bf1d87bf2856a87682574904bd047822916485a3e00d2760118132466414b68764731ea4af9add5d734fd7ce3eac730 SHA512 6061cc8a3bdefe57049f9da757b9a33321b28ff7bc9543bc1db3abd75c7261bf233180fb1e8a2f76145dd67ebda91c48981f6e844a866ef6cbb66203af4b7ef7 DIST mutter-3.38.1.tar.xz 2618944 BLAKE2B 2b7d0baea765a2680e8610553fcf5944af275d4533af61d719ca922c21a400ce771bf7a23093e8fa224453c1fddea6f718b1cfaaac6f079c993cdca5f721bf2d SHA512 55a65d80c886b90da110de69fca8f2c92912b36d6244bd6fcb1e09507469b5d860fa888614a33170b2799574f521ee117fb289a768fa2af5059fe0da51835d31 diff --git a/x11-wm/mutter/mutter-3.36.5.ebuild b/x11-wm/mutter/mutter-3.36.5.ebuild deleted file mode 100644 index f3cd2c8909df..000000000000 --- a/x11-wm/mutter/mutter-3.36.5.ebuild +++ /dev/null @@ -1,147 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit gnome.org gnome2-utils meson virtualx xdg - -DESCRIPTION="GNOME 3 compositing window manager based on Clutter" -HOMEPAGE="https://gitlab.gnome.org/GNOME/mutter/" - -LICENSE="GPL-2+" -SLOT="0/6" # 0/libmutter_api_version - ONLY gnome-shell (or anything using mutter-clutter-.pc) should use the subslot - -IUSE="elogind input_devices_wacom +introspection screencast +sysprof systemd test udev wayland" -# native backend requires gles3 for hybrid graphics blitting support, udev and a logind provider -REQUIRED_USE=" - wayland? ( ^^ ( elogind systemd ) udev ) - test? ( wayland )" -RESTRICT="!test? ( test )" - -KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86" - -# gnome-settings-daemon is build checked, but used at runtime only for org.gnome.settings-daemon.peripherals.keyboard gschema -# xorg-server is needed at build and runtime with USE=wayland for Xwayland -# v3.32.2 has many excessive or unused *_req variables declared, thus currently the dep order ignores those and goes via dependency() call order -DEPEND=" - x11-libs/libX11 - >=media-libs/graphene-1.9.3[introspection?] - >=x11-libs/gtk+-3.19.8:3[X,introspection?] - x11-libs/gdk-pixbuf:2 - >=x11-libs/pango-1.30[introspection?] - >=dev-libs/fribidi-1.0.0 - >=x11-libs/cairo-1.14[X] - >=gnome-base/gsettings-desktop-schemas-3.33.0[introspection?] - >=dev-libs/glib-2.61.1:2 - gnome-base/gnome-settings-daemon - >=dev-libs/json-glib-0.12.0[introspection?] - gnome-base/gnome-desktop:3= - >=x11-libs/libXcomposite-0.4 - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - >=x11-libs/libXfixes-3 - >=x11-libs/libXi-1.7.4 - x11-libs/libXtst - x11-libs/libxkbfile - x11-misc/xkeyboard-config - >=x11-libs/libxkbcommon-0.4.3[X] - x11-libs/libXrender - >=x11-libs/libXrandr-1.5.0 - x11-libs/libxcb - x11-libs/libXinerama - x11-libs/libXau - x11-libs/libICE - >=dev-libs/atk-2.5.3[introspection?] - >=media-libs/libcanberra-0.26 - sys-apps/dbus - media-libs/mesa[X(+),egl] - wayland? ( - >=dev-libs/wayland-protocols-1.19 - >=dev-libs/wayland-1.13.0 - x11-libs/libdrm:= - >=media-libs/mesa-10.3[egl,gbm,wayland,gles2] - >=dev-libs/libinput-1.7 - systemd? ( sys-apps/systemd ) - elogind? ( sys-auth/elogind ) - x11-base/xorg-server[wayland] - ) - udev? ( >=dev-libs/libgudev-232:= - >=virtual/libudev-232-r1:= ) - x11-libs/libSM - input_devices_wacom? ( >=dev-libs/libwacom-0.13 ) - >=x11-libs/startup-notification-0.7 - screencast? ( >=media-video/pipewire-0.3.0:0/0.3 ) - introspection? ( >=dev-libs/gobject-introspection-1.54:= ) -" -RDEPEND="${DEPEND} - gnome-extra/zenity -" -DEPEND="${DEPEND} - x11-base/xorg-proto - sysprof? ( >=dev-util/sysprof-capture-3.35.2:3 ) -" -# wayland bdepend for wayland-scanner, xorg-server for cvt utility -BDEPEND=" - dev-libs/wayland - >=dev-util/meson-0.50.0 - dev-util/gdbus-codegen - dev-util/glib-utils - >=sys-devel/gettext-0.19.8 - virtual/pkgconfig - test? ( app-text/docbook-xml-dtd:4.5 ) - wayland? ( >=sys-kernel/linux-headers-4.4 - x11-base/xorg-server ) -" - -PATCHES=( - "${FILESDIR}"/3.34.6-tests-dontreq-gdkwayland.patch -) - -src_configure() { - # TODO: Replicate debug vs release meson build type behaviour under our buildtype=plain - local emesonargs=( - -Dopengl=true - #opengl_libname - #gles2_libname - $(meson_use wayland gles2) - -Degl=true - -Dglx=true - $(meson_use wayland) - $(meson_use wayland native_backend) - $(meson_use screencast remote_desktop) - -Degl_device=false # This should be dependent on wayland,video_drivers_nvidia, once eglstream support is there - -Dwayland_eglstream=false # requires packages egl-wayland for wayland-eglstream-protocols.pc - $(meson_use udev) - $(meson_use input_devices_wacom libwacom) - -Dpango_ft2=true - -Dstartup_notification=true - -Dsm=true - $(meson_use introspection) - $(meson_use test cogl_tests) - $(meson_use wayland core_tests) # core tests require wayland; overall -Dtests option is honored on top, so no extra conditional needed - $(meson_use test clutter_tests) - $(meson_use test tests) - $(meson_use sysprof profiler) - -Dinstalled_tests=false - #verbose # Let upstream choose default for verbose mode - #xwayland_path - # TODO: relies on default settings, but in Gentoo we might have some more packages we want to give Xgrab access (mostly virtual managers and remote desktops) - #xwayland_grab_default_access_rules - ) - meson_src_configure -} - -src_test() { - glib-compile-schemas "${BUILD_DIR}"/data - GSETTINGS_SCHEMA_DIR="${BUILD_DIR}"/data virtx meson_src_test -} - -pkg_postinst() { - xdg_pkg_postinst - gnome2_schemas_update -} - -pkg_postrm() { - xdg_pkg_postrm - gnome2_schemas_update -} diff --git a/x11-wm/mutter/mutter-3.36.7.ebuild b/x11-wm/mutter/mutter-3.36.7.ebuild index 660d4be56966..f5dc0a1d9f9b 100644 --- a/x11-wm/mutter/mutter-3.36.7.ebuild +++ b/x11-wm/mutter/mutter-3.36.7.ebuild @@ -18,7 +18,7 @@ REQUIRED_USE=" test? ( wayland )" RESTRICT="!test? ( test )" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86" # gnome-settings-daemon is build checked, but used at runtime only for org.gnome.settings-daemon.peripherals.keyboard gschema # xorg-server is needed at build and runtime with USE=wayland for Xwayland diff --git a/xfce-base/Manifest.gz b/xfce-base/Manifest.gz index d50859c52c43..f7765c5b1c59 100644 Binary files a/xfce-base/Manifest.gz and b/xfce-base/Manifest.gz differ diff --git a/xfce-base/libxfce4util/Manifest b/xfce-base/libxfce4util/Manifest index d26de8e804ba..a9ef3d7ca966 100644 --- a/xfce-base/libxfce4util/Manifest +++ b/xfce-base/libxfce4util/Manifest @@ -1,3 +1,4 @@ DIST libxfce4util-4.14.0.tar.bz2 516358 BLAKE2B d8e3d1e3247e23908456aa296415240c1a9146001a02cb859541922ee541e30955279fd68f2d9938e43f992a5115b21836363fa8d8234de87fca0bbaac830bf0 SHA512 6ac95aea03052d9e2f886cbe76afe9bbb43511bf3fe1766097e10cd8762541ed17060a727df3ef93e226aae448c15d9dd3ad8acd55a9d5f2387cb360bdf72832 DIST libxfce4util-4.15.3.tar.bz2 521420 BLAKE2B a6d0d5e56c32c3e6950af26da12ad54d94e2cd9d7e172167e43a5c4d262709b2972e1a29e9fb348ac12d8e72568330449fc279a701dd9fe9e98a788cffd33b23 SHA512 1754cc5f4582151a1eb381606d32b0744193982177165e2b227655790849f9799a53739f1c36ed31b1a77cab28526d22e3cb6dab401e4a3b8ff29f1d2ea885ba DIST libxfce4util-4.15.4.tar.bz2 527128 BLAKE2B 96825cc800becf4ec227d754ee53d244ad2f615c4a918d5bd88f42157bcd97e6e50d8162a35506ed531ed68da07a485e68758c702a4727eec76cacbf9ef4f817 SHA512 f18c6996c68925b3f8bb457225e6540881e62f8c524245d900f5d443fb1b5ff603afb536f0247e0d8b772df421225daea8184c1ac3c9b1228e53be12563ed468 +DIST libxfce4util-4.15.5.tar.bz2 523132 BLAKE2B d6afe65a596febd32fa777ab96366591b30970c323067459766843a5e9cb2ebca2cf2bb85953c5593bca517bf8b8ab06f3260b740c8c863a23311b66c7c80168 SHA512 e9e936d3723ad7589b97f6ae2e7b4eb1454be0a84784f8f862780f87582bdab06c6087d67e3a5c695a3cb8b0be272d433792e2023789eae29e6614274d3bfb70 diff --git a/xfce-base/libxfce4util/libxfce4util-4.15.5.ebuild b/xfce-base/libxfce4util/libxfce4util-4.15.5.ebuild new file mode 100644 index 000000000000..dd5b8e34dae7 --- /dev/null +++ b/xfce-base/libxfce4util/libxfce4util-4.15.5.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit vala + +DESCRIPTION="A basic utility library for the Xfce desktop environment" +HOMEPAGE="https://git.xfce.org/xfce/libxfce4util/" +SRC_URI="https://archive.xfce.org/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="LGPL-2+ GPL-2+" +SLOT="0/7" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" +IUSE="introspection vala" +REQUIRED_USE="vala? ( introspection )" + +RDEPEND=">=dev-libs/glib-2.42 + introspection? ( dev-libs/gobject-introspection:= )" +DEPEND="${RDEPEND} + dev-util/intltool + dev-util/gtk-doc-am + sys-devel/gettext + virtual/pkgconfig + vala? ( $(vala_depend) )" + +src_prepare() { + # stupid vala.eclass... + default +} + +src_configure() { + local myconf=( + $(use_enable introspection) + $(use_enable vala) + ) + + use vala && vala_src_prepare + econf "${myconf[@]}" +} + +src_install() { + default + + find "${D}" -name '*.la' -delete || die +} diff --git a/xfce-extra/Manifest.gz b/xfce-extra/Manifest.gz index 669e9c69a1f0..f283f19bb0d0 100644 Binary files a/xfce-extra/Manifest.gz and b/xfce-extra/Manifest.gz differ diff --git a/xfce-extra/xfce4-sensors-plugin/files/xfce4-sensors-plugin-1.3.92-gcc-10.patch b/xfce-extra/xfce4-sensors-plugin/files/xfce4-sensors-plugin-1.3.92-gcc-10.patch new file mode 100644 index 000000000000..a5d60a66810e --- /dev/null +++ b/xfce-extra/xfce4-sensors-plugin/files/xfce4-sensors-plugin-1.3.92-gcc-10.patch @@ -0,0 +1,115 @@ +From 108ffac9eac23a5d87f142e36d162d62be0619e2 Mon Sep 17 00:00:00 2001 +From: Robin Lee +Date: Mon, 24 Feb 2020 17:52:39 +0800 +Subject: [PATCH] Fix multiple definition errors under GCC 10.0 + +Fixes issue #9, RHBZ#1800268 +--- + include/sensors-interface-common.h | 22 ++++++++++++++-------- + lib/sensors-interface-common.c | 1 + + 2 files changed, 15 insertions(+), 8 deletions(-) + +diff --git a/include/sensors-interface-common.h b/include/sensors-interface-common.h +index 62a27eb..05146c5 100644 +--- a/include/sensors-interface-common.h ++++ b/include/sensors-interface-common.h +@@ -146,6 +146,12 @@ t_sensors_dialog; + + + ++#ifdef XFCE4_SENSORS_INTERFACE_COMMON_DEFINING ++#define EXTERN ++#else ++#define EXTERN extern ++#endif ++ + /* Extern functions that need to be re-implemented in the sensors-viewer and + * the panel code. + * They kind of need to be registered at the library by any software +@@ -157,7 +163,7 @@ t_sensors_dialog; + * @param ptr_widget: Pointer to original widget, i.e, the update timer box + * @param ptr_sensorsdialog: argument pointer to sensors dialog data + */ +-void ++EXTERN void + (*adjustment_value_changed) (GtkWidget *ptr_widget, + t_sensors_dialog *ptr_sensorsdialog); + +@@ -167,7 +173,7 @@ void + * @param ptr_widget: Pointer to original widget, i.e, the sensor entry combobox + * @param ptr_sensorsdialog: argument pointer to sensors dialog data + */ +-void ++EXTERN void + (*sensor_entry_changed) (GtkWidget *ptr_widget, + t_sensors_dialog *ptr_sensorsdialog); + +@@ -178,7 +184,7 @@ void + * @param ptr_str_newtext: Pointer to the string containing the new label + * @param ptr_sensorsdialog: argument pointer to sensors dialog data + */ +-void ++EXTERN void + (*list_cell_text_edited) (GtkCellRendererText *ptr_cellrenderertext, + gchar *ptr_str_path, gchar *ptr_str_newtext, + t_sensors_dialog *ptr_sensorsdialog); +@@ -189,7 +195,7 @@ void + * @param ptr_str_path: pointer to the string with the path of the changed item + * @param ptr_sensorsdialog: argument pointer to sensors dialog data + */ +-void ++EXTERN void + (*list_cell_toggle) (GtkCellRendererToggle *ptr_cellrenderertoggle, gchar *ptr_str_path, + t_sensors_dialog *ptr_sensorsdialog); + +@@ -201,7 +207,7 @@ void + * hexadecimal rgb format #0011ff + * @param ptr_sensorsdialog: argument pointer to sensors dialog data + */ +-void ++EXTERN void + (*list_cell_color_edited) (GtkCellRendererText *ptr_cellrenderertext, + gchar *ptr_str_path, gchar *ptr_str_newcolor, + t_sensors_dialog *ptr_sensorsdialog); +@@ -214,7 +220,7 @@ void + * temperature + * @param ptr_sensorsdialog: argument pointer to sensors dialog data + */ +-void ++EXTERN void + (*minimum_changed) (GtkCellRendererText *ptr_cellrenderertext, gchar *ptr_str_path, + gchar *ptr_str_newmin, t_sensors_dialog *ptr_sensorsdialog); + +@@ -226,7 +232,7 @@ void + * temperature + * @param ptr_sensorsdialog: argument pointer to sensors dialog data + */ +-void ++EXTERN void + (*maximum_changed) (GtkCellRendererText *ptr_cellrenderertext, gchar *ptr_str_path, + gchar *ptr_str_newmax, t_sensors_dialog *ptr_sensorsdialog); + +@@ -236,7 +242,7 @@ void + * @param ptr_widget: Pointer to original widget, i.e, the update timer box + * @param ptr_sensorsdialog: argument pointer to sensors dialog data + */ +-void ++EXTERN void + (*temperature_unit_change) (GtkWidget *ptr_widget, + t_sensors_dialog *ptr_sensorsdialog); + +diff --git a/lib/sensors-interface-common.c b/lib/sensors-interface-common.c +index 70aa154..8c79f1d 100644 +--- a/lib/sensors-interface-common.c ++++ b/lib/sensors-interface-common.c +@@ -28,6 +28,7 @@ + #include + + /* Local/package includes */ ++#define XFCE4_SENSORS_INTERFACE_COMMON_DEFINING + #include + #include + #include +-- +GitLab + diff --git a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.92-r1.ebuild b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.92-r1.ebuild index d740fbfc2c1d..988a10db5faf 100644 --- a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.92-r1.ebuild +++ b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.92-r1.ebuild @@ -37,6 +37,10 @@ BDEPEND=" DOCS=( AUTHORS ChangeLog NEWS NOTES README TODO ) +PATCHES=( + "${FILESDIR}"/${P}-gcc-10.patch +) + src_configure() { local myconf=( --libexecdir="${EPREFIX}"/usr/$(get_libdir)