diff --git a/app-admin/logstash-bin/files/logstash-plugin.eselect b/app-admin/logstash-bin/files/logstash-plugin.eselect new file mode 100644 index 000000000000..29678309f411 --- /dev/null +++ b/app-admin/logstash-bin/files/logstash-plugin.eselect @@ -0,0 +1,85 @@ +# -*-eselect-*- vim: ft=eselect +# Copyright 2005-2017 Gentoo Foundation +# Distributed under the terms of the GNU GPL version 2 or later + +DESCRIPTION="Manage user installed plugins of logstash" +MAINTAINER="hydrapolic@gmail.com" + +PLUGINS="/var/lib/logstash/plugins-list.txt" +LS_INSTALL_DIR="/opt/logstash" + +ls_plugin_wrapper() { + JARS_SKIP=true "${LS_INSTALL_DIR}/bin/logstash-plugin" "${1}" "${2}" || die +} + +### install action +describe_install() { + echo "Install plugin" +} + +describe_install_parameters() { + echo "" +} + +do_install() { + [[ ${#} -lt 1 ]] && die "Please specify at least one plugin" + + local plugin + for plugin; do + ls_plugin_wrapper install "${plugin}" + echo "${plugin}" >> "${PLUGINS}" || die + done + + sort -u "${PLUGINS}" > "${PLUGINS}.tmp" || die + mv "${PLUGINS}.tmp" "${PLUGINS}" || die +} + +### list action +describe_list() { + echo "List user installed plugins" +} + +do_list() { + if [[ -f "${PLUGINS}" ]]; then + write_list_start "Installed plugins:" + + local plugin + while read -r plugin; do + write_kv_list_entry "${plugin}" + done < "${PLUGINS}" + fi +} + +### reinstall action +describe_reinstall() { + echo "Reinstall plugins" +} + +do_reinstall() { + if [[ -f "${PLUGINS}" ]]; then + local plugin + while read -r plugin; do + ls_plugin_wrapper install "${plugin}" + done < "${PLUGINS}" + fi +} + +### uninstall action +describe_uninstall() { + echo "Uninstall plugin" +} + +describe_uninstall_parameters() { + echo "" +} + +do_uninstall() { + if [[ -f "${PLUGINS}" ]]; then + local plugin + for plugin; do + grep "^${plugin}\$" "${PLUGINS}" || write_warning_msg "Plugin ${plugin} not recorded" + sed -i "/^${plugin}\$/d" "${PLUGINS}" || die + ls_plugin_wrapper remove "${plugin}" + done + fi +} diff --git a/app-admin/logstash-bin/logstash-bin-5.4.3.ebuild b/app-admin/logstash-bin/logstash-bin-5.4.3-r1.ebuild similarity index 72% rename from app-admin/logstash-bin/logstash-bin-5.4.3.ebuild rename to app-admin/logstash-bin/logstash-bin-5.4.3-r1.ebuild index f5c4d8c2e292..f8c948c748cf 100644 --- a/app-admin/logstash-bin/logstash-bin-5.4.3.ebuild +++ b/app-admin/logstash-bin/logstash-bin-5.4.3-r1.ebuild @@ -31,6 +31,7 @@ pkg_setup() { src_install() { keepdir /etc/"${MY_PN}"/{conf.d,patterns,plugins} + keepdir "/var/lib/${MY_PN}" keepdir "/var/log/${MY_PN}" insinto "/usr/share/${MY_PN}" @@ -45,15 +46,27 @@ src_install() { newconfd "${FILESDIR}/${MY_PN}.confd" "${MY_PN}" newinitd "${FILESDIR}/${MY_PN}.initd" "${MY_PN}" + + insinto /usr/share/eselect/modules + doins "${FILESDIR}"/logstash-plugin.eselect } pkg_postinst() { ewarn "The default user changed from root to ${MY_PN}. If you wish to run as root (for" ewarn "example to read local logs), be sure to change LS_USER and LS_GROUP in" ewarn "${EROOT%/}/etc/conf.d/${MY_PN}" + ewarn + ewarn "Self installed plugins are removed during Logstash upgrades (Bug #622602)" + ewarn "Install the plugins via eselect module that will automatically re-install" + ewarn "all self installed plugins after Logstash upgrades." + einfo + einfo "Installing plugins:" + einfo "eselect logstash-plugin install logstash-output-gelf" einfo - einfo "Installing plugins: (bug #601294)" - einfo "DEBUG=1 JARS_SKIP='true' bin/logstash-plugin install logstash-output-gelf" + + einfo "Reinstalling self installed plugins (installed via eselect module):" + eselect logstash-plugin reinstall + einfo einfo "Sample configuration:" einfo "${EROOT%/}/usr/share/${MY_PN}" diff --git a/app-admin/mcollective/Manifest b/app-admin/mcollective/Manifest index 69b898dbd420..cfcda790247e 100644 --- a/app-admin/mcollective/Manifest +++ b/app-admin/mcollective/Manifest @@ -1,2 +1,2 @@ -DIST mcollective-2.10.5.tar.gz 1510725 SHA256 7da307010c40bdd1e2104f94e6e4ee1f53bd6dfde54a0aa3950cc558a3468d8f SHA512 51cf6ee018f36ae9d223c7afe79b08ede9dee8bbc78a8d9e8d48399b0f26b264b3fedb459f82713fbabd4a015f5376e983363997e223b3a0bc0e4bec6bbd1e82 WHIRLPOOL 56bb3a954421c672cf39061ffec3425ef5d576a8e6f7e829c16747030bbeb618c57292f9a95077e0acc9de581439843b115538cb27d23208abe3d4656d702bad DIST mcollective-2.11.1.tar.gz 1516922 SHA256 d5e150408e61d51b3844e14c6304cf61f27243c5dc658e689bbaaee91dce6b0b SHA512 88d2511829936a5987c8ddab068f59d17f16230cb339801672238ae54ce2115e93d7271a78001176ccc203a1b70f7ee2f35992e414059f1db9cb05db210463e5 WHIRLPOOL cff40347c46464a18d6d98e3a3e2a7dab4169f5c0e1b60f08f3292cc87adcc123fc423203d664bcee1dac47a1dd44e44726702de5c2ea0ed0c5e55d8dbe0b45a +DIST mcollective-2.11.2.tar.gz 1516590 SHA256 aa3664d5ba2d4d20e448c374c315c91d55b5bb43918a04092747a4052bc3f969 SHA512 1dc393fa1a09c5151b64b84086ef9af934feeebd2700a00cc4c84696fa2a25d90a410a373b553198f5fda6e1e36808ffb8dc38edcb15bb9e4253998aa7504439 WHIRLPOOL f808d4f9ffbf733842dd29f8e0548b90a4705f8b502dcc62509380b013d69de786204025490d4fb67d657e5c6597fb0d3ffdac2724e8dbca6347511ef50be54a diff --git a/app-admin/mcollective/mcollective-2.10.5.ebuild b/app-admin/mcollective/mcollective-2.11.2.ebuild similarity index 92% rename from app-admin/mcollective/mcollective-2.10.5.ebuild rename to app-admin/mcollective/mcollective-2.11.2.ebuild index ec955b142317..795e37902641 100644 --- a/app-admin/mcollective/mcollective-2.10.5.ebuild +++ b/app-admin/mcollective/mcollective-2.11.2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI="6" USE_RUBY="ruby21 ruby22 ruby23" @@ -9,13 +9,13 @@ inherit ruby-ng DESCRIPTION="Framework to build server orchestration or parallel job execution systems" -HOMEPAGE="http://marionette-collective.org/" +HOMEPAGE="https://docs.puppet.com/mcollective/" SRC_URI="https://github.com/puppetlabs/marionette-collective/archive/${PV}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/all/marionette-collective-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~x86" IUSE="doc +client" DEPEND="" @@ -55,6 +55,6 @@ pkg_postinst() { einfo "It is recommended you read the \'getting started\' guide [2] if this" einfo "is a new installation" einfo - einfo "[1] http://activemq.apache.org/" + einfo "[1] https://activemq.apache.org/" einfo "[2] https://code.google.com/p/mcollective/wiki/GettingStarted" } diff --git a/app-emulation/lxd/Manifest b/app-emulation/lxd/Manifest index 48e3e54919b8..f3db60326694 100644 --- a/app-emulation/lxd/Manifest +++ b/app-emulation/lxd/Manifest @@ -22,7 +22,4 @@ DIST github.com-olekukonko-tablewriter-febf2d34b54a69ce7530036c7503b1c9fbfdf0bb. DIST github.com-pborman-uuid-1b00554d822231195d1babd97ff4a781231955c9.tar.gz 12808 SHA256 54da54d54a914e569fb2b31132e0c458ece12d7cd70c14a33adf95731e07afe7 SHA512 c332bd39781e7a3bd7125bbf26e62da2aca24bb89975491a4165a17580f3ffb99587e4620a9c9c17afff5d34865ae0b86065e1516ca325d0edc4dd84be269283 WHIRLPOOL fb245c1056abe69f7e3fa5a4ded80111777af2fdc107dee3fc36faa25bea8394eb30fda6000075cbdf124cb01c4165ed08fb154d70c30c8a1812988e2bd86619 DIST github.com-stretchr-testify-f6abca593680b2315d2075e0f5e2a9751e3f431a.tar.gz 94237 SHA256 91f64ae4d5093511464b5ddce34b88b0134219a0a17d638fe148b6cb9f9e261a SHA512 3aaa245f70dcee49b08e5f677dfa2137b00cc0cbc18cd52d773722b951ec579e3f4e146f951de51973630488a9d9efc7c54462842c6fe5987cc099a44f04a03f WHIRLPOOL 3e55426a5f3086c3e46652da4f5bebf214ae620950556b6659b48cad01e51781d836a3c1ea9c692dc59b4a3d4862e16cec1acffd31a0b4853f97c4f67c22c2c8 DIST github.com-syndtr-gocapability-e7cb7fa329f456b3855136a2642b197bad7366ba.tar.gz 9894 SHA256 1c90570f690a5b753633bce84097942021893f180c9d27c0b83f7a1bddaf59d9 SHA512 ee2de5568b76b87723e80e081e16094093f09a6be68dd0920793e007d4b705808ec1eac7a15b4c0ce7ed20aff04978f4ade264ab5bf5bdc5e2fdc46db2f4116c WHIRLPOOL ce1a13e5374248ffccaa613d399447d619ad94156f6ebf198d9e63019bd698496d67770ef520b802c59451ff9ad95d9fd789e8c9f758d1df553e2432c3b29289 -DIST go-flags-460c7bb0abd6e927f2767cadc91aa6ef776a98b4.tar.gz 54792 SHA256 382dbeca4e436aa1717c9a413fc53197eb3f94fbbb0b2ba3b0d1a405c9262504 SHA512 d8c748a2617d0997ad69d64530289dc53a310381ba101b942d3e7df04ef9fd79e1d26879c485cb6e8e5c710f42411dbe5b4b157cfd36a511a19c88d336f34fea WHIRLPOOL fb23a71928c1d3d1cdbb1fecaadfed843b986d2f76a9ca57b171d80051f81a886ec7d8b292b0e054d69ed9e2fd55c1f544767332334655cd01a6c83633d6e711 -DIST lxd-2.11.tar.bz2 2407968 SHA256 829643811a711c8e3c118274d517091b4fbd4701b760e46d7f53fcc4d356455d SHA512 8269a20e0c0c0f3a3a247af15fcda3aa764cd2353d8a7aa9183646dbf19a080ce09bf31ff91a9faca3eda494460a788deabdb145a59c2aa1861f2df89c43294b WHIRLPOOL ba12b4c41969e17b5f9beaa7908ca7be18d3ce35ae27c762a556fe6d59f48962cf0ccaecc512887d40338e6e26ccdc2cdf6c89d87fd1b2028fb5e04f3a74b639 DIST lxd-2.14.tar.gz 629982 SHA256 0ccf98257482458ff417c8af141a1f726fe7e696b7ab8b089ed1ee741280b2b8 SHA512 a1b6d7eb055a29ba3c28f9184e6dbac5f279332a6445347bbf8f946ab23b0afb353ac146b379f22922fe678ce034c18dc9d5d2f2dd7704b8cce1730c29dfa9c3 WHIRLPOOL 3483b15f7e09e8212fa5b646e5fc6be305b48e6cfcad5538ff9a4967820928b3f87931ca38fc4787ecab67216d2c876476880551ce56e3ed0c080a7b769e2823 -DIST lxd-2.8.tar.bz2 2317466 SHA256 57f08bd3c26ea4f32453aa163b502301ae0a80716d6de56b069eeebb35850011 SHA512 fdf906add25ab0b79ea7669ad569873a256f0cfc220ed816b0dc2c9b1e525a19e2606678d90d50c4f548b4322a2896d4c12069337f9571a9a4f6646fb6f673a5 WHIRLPOOL 049f3664e60e8f6fd98c8403db31db6e1dd5f6efed2e74b9007f9f99a4b337e9f58852253d226fc294c4bc964dd6d5d732a8a386606f206a74d83a32470dc1d3 diff --git a/app-emulation/lxd/files/lxd-2.11-dont-go-get.patch b/app-emulation/lxd/files/lxd-2.11-dont-go-get.patch deleted file mode 100644 index 8acd93724a5a..000000000000 --- a/app-emulation/lxd/files/lxd-2.11-dont-go-get.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- /Makefile.orig 2016-07-11 23:34:40.299664675 +0000 -+++ /Makefile 2016-07-11 23:37:00.816018727 +0000 -@@ -13,13 +13,11 @@ - - .PHONY: default - default: -- go get -t -v -d ./... - go install -v $(TAGS) $(DEBUG) ./... - @echo "LXD built successfully" - - .PHONY: client - client: -- go get -t -v -d ./... - go install -v $(TAGS) $(DEBUG) ./lxc - @echo "LXD client built successfully" - diff --git a/app-emulation/lxd/files/lxd-2.11.confd b/app-emulation/lxd/files/lxd-2.11.confd deleted file mode 100644 index 3d553276a5e3..000000000000 --- a/app-emulation/lxd/files/lxd-2.11.confd +++ /dev/null @@ -1,27 +0,0 @@ -# Group which owns the shared socket -LXD_OPTIONS+=" --group lxd" - - - -# Enable cpu profiling into the specified file -#LXD_OPTIONS+=" --cpuprofile /tmp/lxc_cpu_profile" - -# Enable memory profiling into the specified file -#LXD_OPTIONS+=" --memprofile /tmp/lxc_mem_profile" - - - -# Enables debug mode -#LXD_OPTIONS+=" --debug" - -# For debugging, print a complete stack trace every n seconds -#LXD_OPTIONS+=" --print-goroutines-every 5" - -# Enables verbose mode -#LXD_OPTIONS+=" -v" - -# Logfile to log to -#LXD_OPTIONS+=" --logfile /var/log/lxd/lxd.log" - -# Enables syslog logging -#LXD_OPTIONS+=" --syslog" diff --git a/app-emulation/lxd/files/lxd-2.11.initd b/app-emulation/lxd/files/lxd-2.11.initd deleted file mode 100644 index be1fb1670047..000000000000 --- a/app-emulation/lxd/files/lxd-2.11.initd +++ /dev/null @@ -1,46 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DAEMON=/usr/sbin/lxd -PIDFILE=/run/lxd.pid - -extra_commands="stopall" - -depend() { - need net - use lxcfs -} - -start() { - ebegin "Starting lxd server" - - start-stop-daemon --start \ - --pidfile ${PIDFILE} \ - --exec ${DAEMON} \ - --background \ - --make-pidfile \ - -- \ - ${LXD_OPTIONS} - - eend $? -} - -stop() { - if [ $RC_GOINGDOWN = YES ] || [ $RC_REBOOT = YES ]; then - stopall - else - ebegin "Stopping lxd service (but not containers)" - start-stop-daemon --stop --quiet -R TERM/45 -p ${PIDFILE} - eend $? - fi -} - -stopall() { - ebegin "Stopping lxd service and containers" - if "${DAEMON}" shutdown; then - /etc/init.d/lxd zap - rm -f ${PIDFILE} - fi - eend $? -} diff --git a/app-emulation/lxd/files/lxd-2.11.service b/app-emulation/lxd/files/lxd-2.11.service deleted file mode 100644 index d00635fbcdd9..000000000000 --- a/app-emulation/lxd/files/lxd-2.11.service +++ /dev/null @@ -1,10 +0,0 @@ -[Unit] -Description=Container hypervisor based on LXC - -[Service] -ExecStart=/usr/sbin/lxd --group lxd -KillMode=process -Restart=on-failure - -[Install] -WantedBy=multi-user.target diff --git a/app-emulation/lxd/files/lxd-2.8-dont-go-get.patch b/app-emulation/lxd/files/lxd-2.8-dont-go-get.patch deleted file mode 100644 index 9402de57735a..000000000000 --- a/app-emulation/lxd/files/lxd-2.8-dont-go-get.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- /Makefile.orig 2016-07-11 23:34:40.299664675 +0000 -+++ /Makefile 2016-07-11 23:37:00.816018727 +0000 -@@ -12,19 +12,11 @@ - - .PHONY: default - default: -- # Must a few times due to go get race -- -go get -t -v -d ./... -- -go get -t -v -d ./... -- -go get -t -v -d ./... - go install -v $(DEBUG) ./... - @echo "LXD built successfully" - - .PHONY: client - client: -- # Must a few times due to go get race -- -go get -t -v -d ./... -- -go get -t -v -d ./... -- -go get -t -v -d ./... - go install -v $(DEBUG) ./lxc - @echo "LXD client built successfully" - diff --git a/app-emulation/lxd/files/lxd-2.8.confd b/app-emulation/lxd/files/lxd-2.8.confd deleted file mode 100644 index 3d553276a5e3..000000000000 --- a/app-emulation/lxd/files/lxd-2.8.confd +++ /dev/null @@ -1,27 +0,0 @@ -# Group which owns the shared socket -LXD_OPTIONS+=" --group lxd" - - - -# Enable cpu profiling into the specified file -#LXD_OPTIONS+=" --cpuprofile /tmp/lxc_cpu_profile" - -# Enable memory profiling into the specified file -#LXD_OPTIONS+=" --memprofile /tmp/lxc_mem_profile" - - - -# Enables debug mode -#LXD_OPTIONS+=" --debug" - -# For debugging, print a complete stack trace every n seconds -#LXD_OPTIONS+=" --print-goroutines-every 5" - -# Enables verbose mode -#LXD_OPTIONS+=" -v" - -# Logfile to log to -#LXD_OPTIONS+=" --logfile /var/log/lxd/lxd.log" - -# Enables syslog logging -#LXD_OPTIONS+=" --syslog" diff --git a/app-emulation/lxd/files/lxd-2.8.initd b/app-emulation/lxd/files/lxd-2.8.initd deleted file mode 100644 index 42e764aa3f4d..000000000000 --- a/app-emulation/lxd/files/lxd-2.8.initd +++ /dev/null @@ -1,49 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DAEMON=/usr/sbin/lxd -PIDFILE=/run/lxd.pid - -extra_commands="stopall" - -depend() { - need net - use lxcfs - - # remove with 2.0 release - need cgmanager -} - -start() { - ebegin "Starting lxd server" - - start-stop-daemon --start \ - --pidfile ${PIDFILE} \ - --exec ${DAEMON} \ - --background \ - --make-pidfile \ - -- \ - ${LXD_OPTIONS} - - eend $? -} - -stop() { - if [[ $RC_GOINGDOWN = YES ]] || [[ $RC_REBOOT = YES ]]; then - stopall - else - ebegin "Stopping lxd service (but not containers)" - start-stop-daemon --stop --quiet -R TERM/45 -p ${PIDFILE} - eend $? - fi -} - -stopall() { - ebegin "Stopping lxd service and containers" - if "${DAEMON}" shutdown; then - /etc/init.d/lxd zap - rm -f ${PIDFILE} - fi - eend $? -} diff --git a/app-emulation/lxd/files/lxd.service b/app-emulation/lxd/files/lxd.service deleted file mode 100644 index a40905190a50..000000000000 --- a/app-emulation/lxd/files/lxd.service +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=Container hypervisor based on LXC -After=cgmanager.service -Requires=cgmanager.service - -[Service] -ExecStart=/usr/sbin/lxd --group lxd -KillMode=process -Restart=on-failure - -[Install] -WantedBy=multi-user.target diff --git a/app-emulation/lxd/lxd-2.11.ebuild b/app-emulation/lxd/lxd-2.11.ebuild deleted file mode 100644 index 16dace1d2ba5..000000000000 --- a/app-emulation/lxd/lxd-2.11.ebuild +++ /dev/null @@ -1,217 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Fast, dense and secure container management" -HOMEPAGE="https://linuxcontainers.org/lxd/introduction/" -EGO_PN_PARENT="github.com/lxc" -EGO_PN="${EGO_PN_PARENT}/lxd" -GO_FLAGS_COMMIT="460c7bb0abd6e927f2767cadc91aa6ef776a98b4" - -# The source is repackaged using a script at: -# https://dev.gentoo.org/~stasibear/lxd_repackage.py -# This is necessary because go's native package management assumes -# that a build starts with checking out many git repositories, often -# from HEAD. This provides no way to build the same code repeatably, -# and anyway portage requires that fetching is only done from SRC_URI. -# The only sane alternative I've seen is in the consul ebuild, which -# is more transparent but raises other questions. -SRC_URI="https://dev.gentoo.org/~stasibear/distfiles/${P}.tar.bz2 - https://github.com/jessevdk/go-flags/archive/${GO_FLAGS_COMMIT}.tar.gz -> - go-flags-${GO_FLAGS_COMMIT}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -PLOCALES="de el fr ja nl ru" -IUSE="+daemon nls test" - -# IUSE and PLOCALES must be defined before l10n inherited -inherit bash-completion-r1 golang-build l10n linux-info systemd user vcs-snapshot - -DEPEND=" - >=dev-lang/go-1.7.1 - dev-go/go-crypto - dev-go/go-net - dev-libs/protobuf - nls? ( sys-devel/gettext ) - test? ( - app-misc/jq - dev-db/sqlite - net-misc/curl - sys-devel/gettext - ) -" - -RDEPEND=" - daemon? ( - app-arch/xz-utils - app-emulation/lxc[seccomp] - net-dns/dnsmasq[dhcp,ipv6] - net-misc/rsync[xattr] - sys-apps/iproute2[ipv6] - sys-fs/squashfs-tools - virtual/acl - ) -" - -CONFIG_CHECK=" - ~BRIDGE - ~DUMMY - ~IP6_NF_NAT - ~IP6_NF_TARGET_MASQUERADE - ~IPV6 - ~IP_NF_NAT - ~IP_NF_TARGET_MASQUERADE - ~MACVLAN - ~NETFILTER_XT_MATCH_COMMENT - ~NET_IPGRE - ~NET_IPGRE_DEMUX - ~NET_IPIP - ~NF_NAT_MASQUERADE_IPV4 - ~NF_NAT_MASQUERADE_IPV6 - ~VXLAN -" - -ERROR_BRIDGE="BRIDGE: needed for network commands" -ERROR_DUMMY="DUMMY: needed for network commands" -ERROR_IP6_NF_NAT="IP6_NF_NAT: needed for network commands" -ERROR_IP6_NF_TARGET_MASQUERADE="IP6_NF_TARGET_MASQUERADE: needed for network commands" -ERROR_IPV6="IPV6: needed for network commands" -ERROR_IP_NF_NAT="IP_NF_NAT: needed for network commands" -ERROR_IP_NF_TARGET_MASQUERADE="IP_NF_TARGET_MASQUERADE: needed for network commands" -ERROR_MACVLAN="MACVLAN: needed for network commands" -ERROR_NETFILTER_XT_MATCH_COMMENT="NETFILTER_XT_MATCH_COMMENT: needed for network commands" -ERROR_NET_IPGRE="NET_IPGRE: needed for network commands" -ERROR_NET_IPGRE_DEMUX="NET_IPGRE_DEMUX: needed for network commands" -ERROR_NET_IPIP="NET_IPIP: needed for network commands" -ERROR_NF_NAT_MASQUERADE_IPV4="NF_NAT_MASQUERADE_IPV4: needed for network commands" -ERROR_NF_NAT_MASQUERADE_IPV6="NF_NAT_MASQUERADE_IPV6: needed for network commands" -ERROR_VXLAN="VXLAN: needed for network commands" - -PATCHES=("${FILESDIR}/${P}-dont-go-get.patch") - -# KNOWN ISSUES: -# - Translations may not work. I've been unsuccessful in forcing -# localized output. Anyway, upstream (Canonical) doesn't install the -# message files. - -src_prepare() { - cd "${S}/src/${EGO_PN}" || die "Failed to change to deep src dir" - - default_src_prepare - - tmpgoroot="${T}/goroot" - mkdir -p "$tmpgoroot" || die "Failed to create temporary GOROOT" - cp -sR "$(get_golibdir_gopath)"/* "${tmpgoroot}" || die "Failed to copy files to temporary GOROOT" - - # Warn on unhandled locale changes - l10n_find_plocales_changes po "" .po - - mkdir -p "${S}/src/${EGO_PN}/vendor/github.com/jessevdk" - mv "${WORKDIR}/go-flags-${GO_FLAGS_COMMIT}" \ - "${S}/src/${EGO_PN}/vendor/github.com/jessevdk/go-flags" || \ - die "Failed to move go-flags" - - # gopkg.in/lxc/go-lxc.v2/examples/clone.go:17: too many errors - rm -rf "${S}/src/gopkg.in/lxc/go-lxc.v2/examples" || die - - while read -r -d ''; do - [[ -d ${REPLY} ]] || continue # parent moved already - [[ ${REPLY} =~ ^${S}/src/${EGO_PN%/*}(/|$) ]] && continue - mkdir -p "$(dirname "${S}/src/${EGO_PN}/vendor/${REPLY#${S}/src}")" - mv "${REPLY}" "${S}/src/${EGO_PN}/vendor/${REPLY#${S}/src}" || \ - die "Failed to move ${REPLY##*/}" - done < <(find "${S}/src" -mindepth 2 -maxdepth 3 -type d -print0) - find "${S}/src" -maxdepth 3 -type d -empty -delete -} - -src_compile() { - golang-build_src_compile - - cd "${S}/src/${EGO_PN}" || die "Failed to change to deep src dir" - - tmpgoroot="${T}/goroot" - if use daemon; then - # Build binaries - GOPATH="${S}:${tmpgoroot}" emake - else - # build client tool - GOPATH="${S}:${tmpgoroot}" emake client - fi - - use nls && emake build-mo -} - -src_test() { - if use daemon; then - # Go native tests should succeed - golang-build_src_test - fi -} - -src_install() { - # Installs all src,pkg to /usr/lib/go-gentoo - golang-build_src_install - - cd "${S}" - dobin bin/lxc - if use daemon; then - dosbin bin/lxd - dobin bin/fuidshift - fi - - cd "src/${EGO_PN}" - - if use nls; then - for lingua in ${PLOCALES}; do - if use linguas_${lingua}; then - domo po/${lingua}.mo - fi - done - fi - - if use daemon; then - newinitd "${FILESDIR}"/${P}.initd lxd - newconfd "${FILESDIR}"/${P}.confd lxd - - systemd_dounit "${FILESDIR}"/${P}.service - fi - - newbashcomp config/bash/lxd-client lxc - - dodoc AUTHORS CONTRIBUTING.md README.md doc/* -} - -pkg_postinst() { - einfo - einfo "Consult https://wiki.gentoo.org/wiki/LXD for more information," - einfo "including a Quick Start." - - # The messaging below only applies to daemon installs - use daemon || return 0 - - # The control socket will be owned by (and writeable by) this group. - enewgroup lxd - - # Ubuntu also defines an lxd user but it appears unused (the daemon - # must run as root) - - einfo - einfo "Though not strictly required, some features are enabled at run-time" - einfo "when the relevant helper programs are detected:" - einfo "- sys-apps/apparmor" - einfo "- sys-fs/btrfs-progs" - einfo "- sys-fs/lvm2" - einfo "- sys-fs/lxcfs" - einfo "- sys-fs/zfs" - einfo "- sys-process/criu" - einfo - einfo "Since these features can't be disabled at build-time they are" - einfo "not USE-conditional." - einfo - einfo "Networks with bridge.mode=fan are unsupported due to requiring" - einfo "a patched kernel and iproute2." -} diff --git a/app-emulation/lxd/lxd-2.8.ebuild b/app-emulation/lxd/lxd-2.8.ebuild deleted file mode 100644 index b3bf035810ff..000000000000 --- a/app-emulation/lxd/lxd-2.8.ebuild +++ /dev/null @@ -1,198 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Fast, dense and secure container management" -HOMEPAGE="https://linuxcontainers.org/lxd/introduction/" -EGO_PN_PARENT="github.com/lxc" -EGO_PN="${EGO_PN_PARENT}/lxd" - -# The source is repackaged using a script at: -# https://dev.gentoo.org/~stasibear/lxd_repackage.py -# This is necessary because go's native package management assumes -# that a build starts with checking out many git repositories, often -# from HEAD. This provides no way to build the same code repeatably, -# and anyway portage requires that fetching is only done from SRC_URI. -# The only sane alternative I've seen is in the consul ebuild, which -# is more transparent but raises other questions. -SRC_URI="https://dev.gentoo.org/~stasibear/distfiles/${P}.tar.bz2" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64" - -PLOCALES="de el fr ja" -IUSE="+daemon nls test" - -# IUSE and PLOCALES must be defined before l10n inherited -inherit bash-completion-r1 golang-build l10n linux-info systemd user vcs-snapshot - -DEPEND=" - >=dev-lang/go-1.7.1 - dev-go/go-crypto - dev-go/go-net - dev-libs/protobuf - nls? ( sys-devel/gettext ) - test? ( - app-misc/jq - dev-db/sqlite - net-misc/curl - sys-devel/gettext - ) -" - -RDEPEND=" - daemon? ( - app-admin/cgmanager - app-arch/xz-utils - app-emulation/lxc[cgmanager,seccomp] - net-dns/dnsmasq[dhcp,ipv6] - net-misc/rsync[xattr] - sys-apps/iproute2[ipv6] - sys-fs/squashfs-tools - virtual/acl - ) -" - -CONFIG_CHECK=" - ~BRIDGE - ~DUMMY - ~IP6_NF_NAT - ~IP6_NF_TARGET_MASQUERADE - ~IPV6 - ~IP_NF_NAT - ~IP_NF_TARGET_MASQUERADE - ~MACVLAN - ~NETFILTER_XT_MATCH_COMMENT - ~NET_IPGRE - ~NET_IPGRE_DEMUX - ~NET_IPIP - ~NF_NAT_MASQUERADE_IPV4 - ~NF_NAT_MASQUERADE_IPV6 - ~VXLAN -" - -ERROR_BRIDGE="BRIDGE: needed for network commands" -ERROR_DUMMY="DUMMY: needed for network commands" -ERROR_IP6_NF_NAT="IP6_NF_NAT: needed for network commands" -ERROR_IP6_NF_TARGET_MASQUERADE="IP6_NF_TARGET_MASQUERADE: needed for network commands" -ERROR_IPV6="IPV6: needed for network commands" -ERROR_IP_NF_NAT="IP_NF_NAT: needed for network commands" -ERROR_IP_NF_TARGET_MASQUERADE="IP_NF_TARGET_MASQUERADE: needed for network commands" -ERROR_MACVLAN="MACVLAN: needed for network commands" -ERROR_NETFILTER_XT_MATCH_COMMENT="NETFILTER_XT_MATCH_COMMENT: needed for network commands" -ERROR_NET_IPGRE="NET_IPGRE: needed for network commands" -ERROR_NET_IPGRE_DEMUX="NET_IPGRE_DEMUX: needed for network commands" -ERROR_NET_IPIP="NET_IPIP: needed for network commands" -ERROR_NF_NAT_MASQUERADE_IPV4="NF_NAT_MASQUERADE_IPV4: needed for network commands" -ERROR_NF_NAT_MASQUERADE_IPV6="NF_NAT_MASQUERADE_IPV6: needed for network commands" -ERROR_VXLAN="VXLAN: needed for network commands" - -PATCHES=("${FILESDIR}/${P}-dont-go-get.patch") - -# KNOWN ISSUES: -# - Translations may not work. I've been unsuccessful in forcing -# localized output. Anyway, upstream (Canonical) doesn't install the -# message files. - -src_prepare() { - cd "${S}/src/${EGO_PN}" || die "Failed to change to deep src dir" - - default_src_prepare - - tmpgoroot="${T}/goroot" - mkdir -p "$tmpgoroot" || die "Failed to create temporary GOROOT" - cp -sR "$(get_golibdir_gopath)"/* "${tmpgoroot}" || die "Failed to copy files to temporary GOROOT" - - # Warn on unhandled locale changes - l10n_find_plocales_changes po "" .po -} - -src_compile() { - golang-build_src_compile - - cd "${S}/src/${EGO_PN}" || die "Failed to change to deep src dir" - - tmpgoroot="${T}/goroot" - if use daemon; then - # Build binaries - GOPATH="${S}:${tmpgoroot}" emake - else - # build client tool - GOPATH="${S}:${tmpgoroot}" emake client - fi - - use nls && emake build-mo -} - -src_test() { - if use daemon; then - # Go native tests should succeed - golang-build_src_test - fi -} - -src_install() { - # Installs all src,pkg to /usr/lib/go-gentoo - golang-build_src_install - - cd "${S}" - dobin bin/lxc - if use daemon; then - dosbin bin/lxd - dobin bin/fuidshift - fi - - cd "src/${EGO_PN}" - - if use nls; then - for lingua in ${PLOCALES}; do - if use linguas_${lingua}; then - domo po/${lingua}.mo - fi - done - fi - - if use daemon; then - newinitd "${FILESDIR}"/${P}.initd lxd - newconfd "${FILESDIR}"/${P}.confd lxd - - systemd_dounit "${FILESDIR}"/lxd.service - fi - - newbashcomp config/bash/lxd-client lxc - - dodoc AUTHORS CONTRIBUTING.md README.md doc/* -} - -pkg_postinst() { - einfo - einfo "Consult https://wiki.gentoo.org/wiki/LXD for more information," - einfo "including a Quick Start." - - # The messaging below only applies to daemon installs - use daemon || return 0 - - # The control socket will be owned by (and writeable by) this group. - enewgroup lxd - - # Ubuntu also defines an lxd user but it appears unused (the daemon - # must run as root) - - einfo - einfo "Though not strictly required, some features are enabled at run-time" - einfo "when the relevant helper programs are detected:" - einfo "- sys-apps/apparmor" - einfo "- sys-fs/btrfs-progs" - einfo "- sys-fs/lvm2" - einfo "- sys-fs/lxcfs" - einfo "- sys-fs/zfs" - einfo "- sys-process/criu" - einfo - einfo "Since these features can't be disabled at build-time they are" - einfo "not USE-conditional." - einfo - einfo "Networks with bridge.mode=fan are unsupported due to requiring" - einfo "a patched kernel and iproute2." -} diff --git a/app-emulation/vagrant/Manifest b/app-emulation/vagrant/Manifest index c93dba623e6f..0e014b61a7a1 100644 --- a/app-emulation/vagrant/Manifest +++ b/app-emulation/vagrant/Manifest @@ -1,2 +1,2 @@ -DIST vagrant-1.9.5.tar.gz 1100561 SHA256 69eb8ede3148b6f94389be5fd2d6cb2b6c79ba78cbcacdc354d2c73f12eccc2a SHA512 8d2ace3cbac5b08d3d046a254ef617fead3677e9243da47c4b5131cef783244f403e4771e05075d1f5e9308edcfd52e9a7d792f89f4f39aefc9a949c79c64697 WHIRLPOOL b5e3a8f433c5637c85834900adfc43aaec2c740424e7250da02cf3a5de6f0d553113aa3f386eb74ef5402e0205238f6024b33a55db495d8f21eef19db84b2208 DIST vagrant-1.9.6.tar.gz 1115853 SHA256 08cde24b5def90e7674d333149ca9d9aec585bdb54ca41598e16ea91a56675bb SHA512 d8ed38a1fcffe31d974e94cf48b8dc4902a8005747dfe7311faa21ab53d838c88974c4c200dcbc0fb27fd50f2e3278e1fd21856e4afa37eaf4ef8602e0f5ca5d WHIRLPOOL cb8f1334f9db55be65fb5fd6dc670535681ed0b5457f15f86599fc2ca37fa791304665b913e5085d78012af7b7bd56c6281b78b70e4f054abb5d460cc14a1174 +DIST vagrant-1.9.7.tar.gz 1119024 SHA256 194de72442a2d08f6e04fbed8698a99d190a0e7203d35b49e80d4ddfcb71fb1b SHA512 062921070ace7ce93145981b5b768dc9dc447559fc12c52c8da323d1e3523fbff2a8e7afca0e2f751e232aae822c969b5d166b3b0f01a0744ca20c4e4e33567f WHIRLPOOL ef0331781cf6a71dca9eb485943c459a5360f55b1db45b4f23b413b848eeac1700afe3ea51b6dd2e0da1a7c1ba6ad456bd9fcb7a7b3532145e95a38fc997dd99 diff --git a/app-emulation/vagrant/files/vagrant-1.9.5 b/app-emulation/vagrant/files/vagrant.in similarity index 70% rename from app-emulation/vagrant/files/vagrant-1.9.5 rename to app-emulation/vagrant/files/vagrant.in index 17041e56575a..0da39caea41a 100644 --- a/app-emulation/vagrant/files/vagrant-1.9.5 +++ b/app-emulation/vagrant/files/vagrant.in @@ -4,16 +4,16 @@ # Vagrant installation directory. This sets up proper environmental variables # so that everything loads and compiles to proper directories. -VAGRANT_DIR="$( ruby -e 'print Gem::default_path[-1] + "/gems/vagrant-1.9.5"' )" +VAGRANT_DIR="$( ruby -e 'print Gem::default_path[-1] + "/gems/vagrant-@VAGRANT_VERSION@"' )" # Export GEM_HOME based on VAGRANT_HOME # # This needs to be set because Bundler includes gem paths # from RubyGems' Gem.paths. -if [ -z $VAGRANT_HOME ]; then - VAGRANT_HOME=$(eval echo "~/.vagrant.d") +if [ -z ${VAGRANT_HOME} ]; then + VAGRANT_HOME="~/.vagrant.d" fi -export GEM_HOME="$VAGRANT_HOME/gems" +export GEM_HOME="${VAGRANT_HOME}/gems" # SSL certs export SSL_CERT_FILE="/etc/ssl/certs/ca-certificates.crt" @@ -27,19 +27,12 @@ export VAGRANT_INSTALLER_ENV=1 export VAGRANT_INSTALLER_EMBEDDED_DIR="/var/lib/vagrant" export VAGRANT_INSTALLER_VERSION="2" -# Determine the OS that we're on, which is used in some later checks. -# It is very important we do this _before_ setting the PATH below -# because uname dependencies can conflict on some platforms. -OS=$(uname -s 2>/dev/null) - # Export the OS as an environmental variable that Vagrant can access # so that it can behave better. -export VAGRANT_DETECTED_OS="${OS}" - -VAGRANT_EXECUTABLE="${VAGRANT_DIR}/bin/vagrant" +export VAGRANT_DETECTED_OS="$(uname -s 2>/dev/null)" # Export the VAGRANT_EXECUTABLE so that pre-rubygems can optimize a bit -export VAGRANT_EXECUTABLE +export VAGRANT_EXECUTABLE="${VAGRANT_DIR}/bin/vagrant" # Call the actual Vagrant bin with our arguments exec ruby "${VAGRANT_EXECUTABLE}" "$@" diff --git a/app-emulation/vagrant/vagrant-1.9.5.ebuild b/app-emulation/vagrant/vagrant-1.9.7.ebuild similarity index 90% rename from app-emulation/vagrant/vagrant-1.9.5.ebuild rename to app-emulation/vagrant/vagrant-1.9.7.ebuild index b8c4920bc85f..b6b67db26be1 100644 --- a/app-emulation/vagrant/vagrant-1.9.5.ebuild +++ b/app-emulation/vagrant/vagrant-1.9.7.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI="6" USE_RUBY="ruby22 ruby23" RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" @@ -28,16 +28,16 @@ RDEPEND="${RDEPEND} ruby_add_rdepend " >=dev-ruby/childprocess-0.6.0 >=dev-ruby/erubis-2.7.0 - >=dev-ruby/i18n-0.6.0:* =dev-ruby/listen-3.1.5 >=dev-ruby/hashicorp-checkpoint-0.1.1 >=dev-ruby/log4r-1.1.9 =dev-ruby/net-ssh-4.1.0:* >=dev-ruby/net-sftp-2.1 >=dev-ruby/net-scp-1.2.0 - || ( >=dev-ruby/rest-client-1.6.0:0 dev-ruby/rest-client:2 ) + || ( dev-ruby/rest-client:2 >=dev-ruby/rest-client-1.6.0:0 ) >=dev-ruby/nokogiri-1.7.1 - >=dev-ruby/mime-types-2.6.2:* "${PN}" || die } all_ruby_install() { @@ -75,7 +77,7 @@ all_ruby_install() { # provide executable similar to upstream: # https://github.com/mitchellh/vagrant-installers/blob/master/substrate/modules/vagrant_installer/templates/vagrant.erb - newbin "${FILESDIR}/${P}" "${PN}" + dobin "${PN}" # directory for plugins.json dodir /var/lib/vagrant diff --git a/app-i18n/fcitx-chewing/fcitx-chewing-0.2.0.ebuild b/app-i18n/fcitx-chewing/fcitx-chewing-0.2.0.ebuild index eafd45e31df9..57e5a2150026 100644 --- a/app-i18n/fcitx-chewing/fcitx-chewing-0.2.0.ebuild +++ b/app-i18n/fcitx-chewing/fcitx-chewing-0.2.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -14,6 +14,6 @@ KEYWORDS="amd64 ppc ~ppc64 x86" IUSE="" RDEPEND=">=app-i18n/fcitx-4.2.7 - dev-libs/libchewing" + app-i18n/libchewing" DEPEND="${RDEPEND} virtual/libintl" diff --git a/app-i18n/fcitx-chewing/fcitx-chewing-0.2.2.ebuild b/app-i18n/fcitx-chewing/fcitx-chewing-0.2.2.ebuild index 746100dcdf07..dee4d7097ae9 100644 --- a/app-i18n/fcitx-chewing/fcitx-chewing-0.2.2.ebuild +++ b/app-i18n/fcitx-chewing/fcitx-chewing-0.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -14,6 +14,6 @@ KEYWORDS="amd64 ~ppc ppc64 ~x86" IUSE="" RDEPEND=">=app-i18n/fcitx-4.2.8 - >=dev-libs/libchewing-0.4.0" + >=app-i18n/libchewing-0.4.0" DEPEND="${RDEPEND} virtual/libintl" diff --git a/app-i18n/ibus-chewing/Manifest b/app-i18n/ibus-chewing/Manifest index 2a54843af515..2c0e8dda2b36 100644 --- a/app-i18n/ibus-chewing/Manifest +++ b/app-i18n/ibus-chewing/Manifest @@ -1 +1,2 @@ DIST ibus-chewing-1.5.1-Source.tar.gz 177044 SHA256 687ce9f09fef31b0e31ad0d2f1be17f1ca0b9212af9d71812cf53d84a90f0060 SHA512 2db6def1fe8ca3bd71419a001909d285ee48ef84c2f65e14bacff9cd114676bed594f0c90217e1fdab67c995a7b05d675812e90e281371d8464722c31649c633 WHIRLPOOL da566ec63b8733e2a80890c8f045829a101da0eaea11592b44541be2e92b57a1425fa65b5bb6868879ff588e798036056473f0e78bc228b90ce40650771c02eb +DIST ibus-chewing-1.6.1.tar.gz 111103 SHA256 3dd7911d6eaa20c3b8b9d8e4deb38e2074aa900c0956eb75946d455d27579b63 SHA512 b093db79c656433614b9f72719a2b0768a30c2fb6fa066eda1e79cc9932ce1836f7f1e5611612fb44f260fe80a9baa9e18fdc9754b285e8a5f12a87c376cbd39 WHIRLPOOL 9213f6b6e3e0c8290f09b2f8cc92de8a0f86d5d07e1a2805a01148a0c5bce471d2607a8925e848bf44107f0288798c74e127a427fe0143ea919605956778aca7 diff --git a/app-i18n/ibus-chewing/files/ibus-chewing-test.patch b/app-i18n/ibus-chewing/files/ibus-chewing-test.patch new file mode 100644 index 000000000000..abed91d377d3 --- /dev/null +++ b/app-i18n/ibus-chewing/files/ibus-chewing-test.patch @@ -0,0 +1,45 @@ +--- a/test/MakerDialogBackend-test.c ++++ b/test/MakerDialogBackend-test.c +@@ -126,7 +126,7 @@ + void backup_key_to_g_value(const gchar * key, GType gType, GValue * value) + { + g_value_init(value, gType); +- backend_command_get_key_value(key, value); ++ mkdg_backend_read(backend, value, QUOTE_ME(PROJECT_SCHEMA_SECTION), key, NULL); + } + + void change_new_value_from_orig_value(GValue * newValue, +@@ -169,7 +169,7 @@ + { + GValue storedGValue = { 0 }; + g_value_init(&storedGValue, G_VALUE_TYPE(newValue)); +- backend_command_get_key_value(key, &storedGValue); ++ mkdg_backend_read(backend, &storedGValue, QUOTE_ME(PROJECT_SCHEMA_SECTION), key, NULL); + g_assert(mkdg_g_value_is_equal(newValue, &storedGValue)); + g_value_unset(&storedGValue); + } +@@ -219,7 +219,7 @@ + #define GCONF_KEY "max-chi-symbol-len" + GValue origValue = { 0 }; + g_value_init(&origValue, G_TYPE_BOOLEAN); +- backend_command_get_key_value(GCONF_KEY, &origValue); ++ mkdg_backend_read(backend, &origValue, QUOTE_ME(PROJECT_SCHEMA_SECTION), GCONF_KEY, NULL); + + GValue newValue = { 0 }; + g_value_init(&newValue, G_TYPE_BOOLEAN); +@@ -229,13 +229,13 @@ + + GValue storedValue = { 0 }; + g_value_init(&storedValue, G_TYPE_BOOLEAN); +- backend_command_get_key_value(GCONF_KEY, &storedValue); ++ mkdg_backend_read(backend, &storedValue, QUOTE_ME(PROJECT_SCHEMA_SECTION), GCONF_KEY, NULL); + g_assert(mkdg_g_value_is_equal(&newValue, &storedValue)); + + /* + * Restore the original value + */ +- backend_command_set_key_value(GCONF_KEY, &origValue); ++ mkdg_backend_write(backend, &origValue, QUOTE_ME(PROJECT_SCHEMA_SECTION), GCONF_KEY, NULL); + #undef GCONF_KEY + } + diff --git a/app-i18n/ibus-chewing/ibus-chewing-1.5.1-r1.ebuild b/app-i18n/ibus-chewing/ibus-chewing-1.5.1-r1.ebuild new file mode 100644 index 000000000000..6e551a4ca242 --- /dev/null +++ b/app-i18n/ibus-chewing/ibus-chewing-1.5.1-r1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +CMAKE_MAKEFILE_GENERATOR="emake" + +inherit cmake-utils gnome2-utils virtualx + +MY_P="${P}-Source" + +DESCRIPTION="Chinese Chewing engine for IBus" +HOMEPAGE="https://github.com/ibus/ibus/wiki" +SRC_URI="https://github.com/definite/${PN}/releases/download/${PV}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gconf nls" + +RDEPEND="app-i18n/ibus + app-i18n/libchewing + dev-libs/glib:2 + dev-util/gob:2 + x11-libs/gtk+:2 + x11-libs/libX11 + gconf? ( gnome-base/gconf ) + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext )" +S="${WORKDIR}/${MY_P}" + +PATCHES=( "${FILESDIR}"/${PN}-test.patch ) +DOCS=( AUTHORS ChangeLog README RELEASE-NOTES.txt USER-GUIDE ) + +src_configure() { + local mycmakeargs=( + -DMANAGE_DEPENDENCY_PACKAGE_EXISTS_CMD=false + -DPRJ_DOC_DIR="${EPREFIX}"/usr/share/doc/${PF} + ) + use nls || mycmakeargs+=( -DMANAGE_GETTEXT_SUPPORT=0 ) + cmake-utils_src_configure +} + +src_test() { + "${EROOT}"${GLIB_COMPILE_SCHEMAS} --allow-any-name "${BUILD_DIR}"/bin || die + + export GSETTINGS_BACKEND="memory" + export GSETTINGS_SCHEMA_DIR="${BUILD_DIR}/bin" + virtx cmake-utils_src_test +} + +pkg_preinst() { + use gconf && gnome2_gconf_savelist + gnome2_schemas_savelist +} + +pkg_postinst() { + use gconf && gnome2_gconf_install + gnome2_schemas_update +} + +pkg_postrm() { + gnome2_schemas_update +} diff --git a/app-i18n/ibus-chewing/ibus-chewing-1.5.1.ebuild b/app-i18n/ibus-chewing/ibus-chewing-1.5.1.ebuild deleted file mode 100644 index 2e82c4f0c2ca..000000000000 --- a/app-i18n/ibus-chewing/ibus-chewing-1.5.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit cmake-utils - -MY_P=${P}-Source - -DESCRIPTION="The Chewing IMEngine for IBus Framework" -HOMEPAGE="https://github.com/ibus/ibus/wiki" -SRC_URI="https://github.com/definite/ibus-chewing/releases/download/${PV}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="nls" - -RDEPEND="x11-libs/libXtst - >=app-i18n/ibus-1.3 - >=dev-libs/libchewing-0.3.3 - x11-libs/gtk+:2 - dev-util/gob:2" -DEPEND="${RDEPEND} - gnome-base/gconf - virtual/pkgconfig" - -S=${WORKDIR}/${MY_P} - -CMAKE_IN_SOURCE_BUILD=1 - -DOCS="AUTHORS ChangeLog README RELEASE-NOTES.txt USER-GUIDE" - -src_configure() { - local mycmakeargs=( - -DPRJ_DOC_DIR=/usr/share/doc/${PF} - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_make all translations -} diff --git a/app-i18n/ibus-chewing/ibus-chewing-1.6.1.ebuild b/app-i18n/ibus-chewing/ibus-chewing-1.6.1.ebuild new file mode 100644 index 000000000000..ea2e88eaa3f6 --- /dev/null +++ b/app-i18n/ibus-chewing/ibus-chewing-1.6.1.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +CMAKE_MAKEFILE_GENERATOR="emake" + +inherit cmake-utils gnome2-utils virtualx + +DESCRIPTION="Chinese Chewing engine for IBus" +HOMEPAGE="https://github.com/ibus/ibus/wiki" +SRC_URI="https://github.com/definite/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gconf nls" + +RDEPEND="app-i18n/ibus + app-i18n/libchewing + dev-libs/glib:2 + dev-util/gob:2 + x11-libs/gtk+:2 + x11-libs/libX11 + gconf? ( gnome-base/gconf ) + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + dev-util/cmake-fedora + virtual/pkgconfig + nls? ( sys-devel/gettext )" + +PATCHES=( "${FILESDIR}"/${PN}-test.patch ) +DOCS=( AUTHORS ChangeLog README.md RELEASE-NOTES.txt USER-GUIDE ) + +src_configure() { + local mycmakeargs=( + -DMANAGE_DEPENDENCY_PACKAGE_EXISTS_CMD=false + -DPRJ_DOC_DIR="${EPREFIX}"/usr/share/doc/${PF} + ) + use nls || mycmakeargs+=( -DMANAGE_GETTEXT_SUPPORT=0 ) + cmake-utils_src_configure +} + +src_test() { + "${EROOT}"${GLIB_COMPILE_SCHEMAS} --allow-any-name "${BUILD_DIR}"/bin || die + + export GSETTINGS_BACKEND="memory" + export GSETTINGS_SCHEMA_DIR="${BUILD_DIR}/bin" + virtx cmake-utils_src_test +} + +pkg_preinst() { + use gconf && gnome2_gconf_savelist + gnome2_schemas_savelist +} + +pkg_postinst() { + use gconf && gnome2_gconf_install + gnome2_schemas_update +} + +pkg_postrm() { + gnome2_schemas_update +} diff --git a/app-i18n/ibus-chewing/metadata.xml b/app-i18n/ibus-chewing/metadata.xml index 5805fc8e3286..e44e996ccd57 100644 --- a/app-i18n/ibus-chewing/metadata.xml +++ b/app-i18n/ibus-chewing/metadata.xml @@ -1,13 +1,18 @@ - - cjk@gentoo.org - Cjk - - The Chewing engine for IBus platform. It provides Chinese input method from libchewing. - - ibus - ibus/ibus - + + cjk@gentoo.org + Cjk + + + The Chewing engine for IBus. It provides a Chinese input method from + app-i18n/libchewing. + + + Enable support for gnome-base/gconf + + + definite/ibus-chewing + diff --git a/app-i18n/ibus-fbterm/ibus-fbterm-1.0.1.ebuild b/app-i18n/ibus-fbterm/ibus-fbterm-1.0.1.ebuild index 170335ffe742..81fd871b7bf2 100644 --- a/app-i18n/ibus-fbterm/ibus-fbterm-1.0.1.ebuild +++ b/app-i18n/ibus-fbterm/ibus-fbterm-1.0.1.ebuild @@ -3,7 +3,7 @@ EAPI="6" -DESCRIPTION="ibus-fbterm is a input method for FbTerm based on iBus" +DESCRIPTION="IBus client for FbTerm" HOMEPAGE="https://github.com/fujiwarat/ibus-fbterm" SRC_URI="https://github.com/fujiwarat/${PN}/releases/download/${PV}/${P}.tar.gz" diff --git a/app-i18n/ibus-table-chinese/Manifest b/app-i18n/ibus-table-chinese/Manifest index 10ebfe1d3b6b..989e7298a20b 100644 --- a/app-i18n/ibus-table-chinese/Manifest +++ b/app-i18n/ibus-table-chinese/Manifest @@ -1 +1,2 @@ DIST ibus-table-chinese-1.4.6-Source.tar.gz 7604868 SHA256 5e3422e59417e70e65cfd342cc3c0627a3b612b1405c493df0245a3841bd9386 SHA512 52a72c388ad287572ae334bb25537b6054f72ecdd641aa1c539b85a5e9a4cf97801ae38baa8ace1caabca95d845d2fb4156eb174ac7ad1c9123409749318d76d WHIRLPOOL bdfd4203fe8954bb02002bfa3868e67f9b1aebcf1a416cc281381601ac42020b98b344443889c7714ce456a171710f00b1f0c0f34f7eb42867a9da6382d7a174 +DIST ibus-table-chinese-1.8.2.tar.gz 10576111 SHA256 ef62c22ef4e8f9085fc40fcbc14c30f6dac458817df98e9f90f883a3e2080089 SHA512 30fd1c7ee8416cd62d8e26bc2646a667ac45c4579a7cb191c77e80fecccbc576c34f33ec0b5c55669c073a633298cfda1711e4b9d89a9ef8f6146acdc0167c1a WHIRLPOOL f03985faa490b227f851acd9e2ec7d125d06ce4da362d1f002cb6f6e378f876547a666bd249e144bbd0f4b1bd68fcc1e8dd257edbf74742ff9e29a2706dbc092 diff --git a/app-i18n/ibus-table-chinese/ibus-table-chinese-1.4.6.ebuild b/app-i18n/ibus-table-chinese/ibus-table-chinese-1.4.6.ebuild index 4b476a67878e..6601af39011c 100644 --- a/app-i18n/ibus-table-chinese/ibus-table-chinese-1.4.6.ebuild +++ b/app-i18n/ibus-table-chinese/ibus-table-chinese-1.4.6.ebuild @@ -1,22 +1,24 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI="6" +CMAKE_IN_SOURCE_BUILD="1" +CMAKE_MAKEFILE_GENERATOR="emake" + inherit cmake-utils -DESCRIPTION="Chinese input tables for ibus-table" -HOMEPAGE="https://github.com/definite/ibus-table-chinese" MY_P="${P}-Source" -SRC_URI="https://ibus.googlecode.com/files/${MY_P}.tar.gz" + +DESCRIPTION="Chinese tables for IBus-Table" +HOMEPAGE="https://github.com/definite/ibus-table-chinese" +SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/${MY_P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND=">=app-i18n/ibus-table-1.2.0" +RDEPEND="app-i18n/ibus-table" DEPEND="${RDEPEND} dev-util/cmake-fedora" - -CMAKE_IN_SOURCE_BUILD=1 S="${WORKDIR}/${MY_P}" diff --git a/app-i18n/ibus-table-chinese/ibus-table-chinese-1.8.2.ebuild b/app-i18n/ibus-table-chinese/ibus-table-chinese-1.8.2.ebuild new file mode 100644 index 000000000000..36f3ece322b8 --- /dev/null +++ b/app-i18n/ibus-table-chinese/ibus-table-chinese-1.8.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +CMAKE_IN_SOURCE_BUILD="1" +CMAKE_MAKEFILE_GENERATOR="emake" + +inherit cmake-utils + +DESCRIPTION="Chinese tables for IBus-Table" +HOMEPAGE="https://github.com/definite/ibus-table-chinese" +SRC_URI="https://github.com/definite/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="app-i18n/ibus-table" +DEPEND="${RDEPEND} + dev-util/cmake-fedora" + +src_configure() { + local mycmakeargs=( + -DCMAKE_FEDORA_TMP_DIR="${T}" + -DDATA_DIR="${EPREFIX}"/usr/share + -DPRJ_DOC_DIR="${EPREFIX}"/usr/share/doc/${PF} + ) + cmake-utils_src_configure +} diff --git a/app-i18n/ibus-table-chinese/metadata.xml b/app-i18n/ibus-table-chinese/metadata.xml index 61aa1fd0eb03..d91706d7e8c4 100644 --- a/app-i18n/ibus-table-chinese/metadata.xml +++ b/app-i18n/ibus-table-chinese/metadata.xml @@ -5,7 +5,6 @@ cjk@gentoo.org - ibus definite/ibus-table-chinese diff --git a/app-i18n/ibus-table-code/Manifest b/app-i18n/ibus-table-code/Manifest deleted file mode 100644 index d1393894c9e1..000000000000 --- a/app-i18n/ibus-table-code/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ibus-table-code-1.2.0.20100305.tar.gz 550208 SHA256 b81e85546ebe74b67f07801d3f25a420dbab936ad6832b8b7dd25fd2f33286df SHA512 20e0b1d8bcf525d2ef510ef3ba90780980c76e158b12d9be99eb73ea4abaf8fd0be119fe047a3ce87d9751365d7abaf3f4566e25fcf08eeaaace1acfa73c3de8 WHIRLPOOL e2e74f9b3d0329c28c8197055aaa5529f88c3deeeef2fc1d4eda9b6a3c1542acf72202cb67075e6c66d45b571d5d7f31a5f7fd3dd1cf1d7d93c1b6116865a449 diff --git a/app-i18n/ibus-table-code/ibus-table-code-1.2.0.20100305.ebuild b/app-i18n/ibus-table-code/ibus-table-code-1.2.0.20100305.ebuild deleted file mode 100644 index d15ab4b3279b..000000000000 --- a/app-i18n/ibus-table-code/ibus-table-code-1.2.0.20100305.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="The code tables for IBus-Table" -HOMEPAGE="https://github.com/ibus/ibus/wiki" -SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=">=app-i18n/ibus-table-1.2.0.20090912 - !>app-i18n/ibus-table-1.3.9" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc AUTHORS ChangeLog NEWS README || die -} diff --git a/app-i18n/ibus-table-code/metadata.xml b/app-i18n/ibus-table-code/metadata.xml deleted file mode 100644 index 6a53f53cffe4..000000000000 --- a/app-i18n/ibus-table-code/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - cjk@gentoo.org - Cjk - - The package contains additional tables for Ibus-Table. - - ibus - ibus/ibus - - diff --git a/app-i18n/ibus-table-cyrillic/Manifest b/app-i18n/ibus-table-cyrillic/Manifest deleted file mode 100644 index 540481a1835a..000000000000 --- a/app-i18n/ibus-table-cyrillic/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ibus-table-cyrillic-1.2.0.20100305.tar.gz 93474 SHA256 cfe929df5c46da9ccd57efdd851ce2110f1143863a6e18b586f09319fba405b0 SHA512 420d335453def7a5a701562e22d87c20a3d22af7f42e7df3c58f4f3735e0f5d510198838a31632fedf3a34cd192a543f2466a27dabb5cec71e467dca98b6f231 WHIRLPOOL 45a6fdc87391f3aa7740be024aac83e8a61256465698efd098f3388d574159449ee542d169705dc3fe6a4696d8307b99823936995446fc412a6028d94f66fcda diff --git a/app-i18n/ibus-table-cyrillic/ibus-table-cyrillic-1.2.0.20100305.ebuild b/app-i18n/ibus-table-cyrillic/ibus-table-cyrillic-1.2.0.20100305.ebuild deleted file mode 100644 index 4df4be4397e9..000000000000 --- a/app-i18n/ibus-table-cyrillic/ibus-table-cyrillic-1.2.0.20100305.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="Translit, Russian Traditional, Yawerty tables for IBus-Table" -HOMEPAGE="https://github.com/ibus/ibus/wiki" -SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=">=app-i18n/ibus-table-1.2" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc AUTHORS ChangeLog NEWS README || die -} diff --git a/app-i18n/ibus-table-cyrillic/metadata.xml b/app-i18n/ibus-table-cyrillic/metadata.xml deleted file mode 100644 index 1854fff4d1ff..000000000000 --- a/app-i18n/ibus-table-cyrillic/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - cjk@gentoo.org - Cjk - - ibus-table-cyrillic provides Transit, Russian Traditional, Yawerty input method on IBus-Table on IBus framework. - - ibus - ibus/ibus - - diff --git a/app-i18n/ibus-table-extraphrase/ibus-table-extraphrase-1.3.9.20110826.ebuild b/app-i18n/ibus-table-extraphrase/ibus-table-extraphrase-1.3.9.20110826.ebuild index ab0a85fcf16c..bb2767a50861 100644 --- a/app-i18n/ibus-table-extraphrase/ibus-table-extraphrase-1.3.9.20110826.ebuild +++ b/app-i18n/ibus-table-extraphrase/ibus-table-extraphrase-1.3.9.20110826.ebuild @@ -1,22 +1,17 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI="6" -DESCRIPTION="Chinese extra phrases for ibus-table based IME" +DESCRIPTION="Chinese extra phrases for IBus-Table" HOMEPAGE="https://github.com/ibus/ibus/wiki" -SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz" +SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND=">=app-i18n/ibus-table-1.1" +RDEPEND="app-i18n/ibus-table" DEPEND="${RDEPEND} virtual/pkgconfig" - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog NEWS README -} diff --git a/app-i18n/ibus-table-extraphrase/metadata.xml b/app-i18n/ibus-table-extraphrase/metadata.xml index c05fa70dc099..13ee2c91ec75 100644 --- a/app-i18n/ibus-table-extraphrase/metadata.xml +++ b/app-i18n/ibus-table-extraphrase/metadata.xml @@ -1,12 +1,12 @@ - - cjk@gentoo.org - Cjk - - - ibus - ibus/ibus - + + cjk@gentoo.org + Cjk + + + ibus + ibus/ibus + diff --git a/app-i18n/ibus-table-latin/ibus-table-latin-1.2.0.20100305.ebuild b/app-i18n/ibus-table-latin/ibus-table-latin-1.2.0.20100305.ebuild index e75fed021bb1..5b626b21e185 100644 --- a/app-i18n/ibus-table-latin/ibus-table-latin-1.2.0.20100305.ebuild +++ b/app-i18n/ibus-table-latin/ibus-table-latin-1.2.0.20100305.ebuild @@ -1,21 +1,17 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -DESCRIPTION="The Latin tables for IBus-Table" +EAPI="6" + +DESCRIPTION="Latin tables for IBus-Table" HOMEPAGE="https://github.com/ibus/ibus/wiki" -SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz" +SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND=">=app-i18n/ibus-table-1.2.0.20090912" +RDEPEND="app-i18n/ibus-table" DEPEND="${RDEPEND} virtual/pkgconfig" - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc AUTHORS ChangeLog NEWS README || die -} diff --git a/app-i18n/ibus-table-latin/metadata.xml b/app-i18n/ibus-table-latin/metadata.xml index 678ff7b0f117..13ee2c91ec75 100644 --- a/app-i18n/ibus-table-latin/metadata.xml +++ b/app-i18n/ibus-table-latin/metadata.xml @@ -1,13 +1,12 @@ - - cjk@gentoo.org - Cjk - - The Latin tables for Ibus-Table. - - ibus - ibus/ibus - + + cjk@gentoo.org + Cjk + + + ibus + ibus/ibus + diff --git a/app-i18n/ibus-table-others/Manifest b/app-i18n/ibus-table-others/Manifest new file mode 100644 index 000000000000..29a6c40202ea --- /dev/null +++ b/app-i18n/ibus-table-others/Manifest @@ -0,0 +1 @@ +DIST ibus-table-others-1.3.9.tar.gz 627253 SHA256 63b14a809636a32a5d000a5dd44670a60eca3a872ff1c22d72617d2f6d52e008 SHA512 4557ba981a00035226b6cbe0d97ae14df275d3e7c5c453097b85e433a524e00efeebe508621495e63d6ff9cdd590f9d54b51a143147b83e1e3748f05b03d2019 WHIRLPOOL 5419e7d6e1f1b82b59289e096942046d492c99b0657fea881fc7270f458b736fa6ba6beb0580a94393a4be3dced53668287f94ec43f62fc5366d217c190ca5f8 diff --git a/app-i18n/ibus-table-others/ibus-table-others-1.3.9.ebuild b/app-i18n/ibus-table-others/ibus-table-others-1.3.9.ebuild new file mode 100644 index 000000000000..636e5dce4891 --- /dev/null +++ b/app-i18n/ibus-table-others/ibus-table-others-1.3.9.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +DESCRIPTION="Various tables for IBus-Table" +HOMEPAGE="https://github.com/moebiuscurve/ibus-table-others" +SRC_URI="https://github.com/moebiuscurve/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="app-i18n/ibus-table" +DEPEND="${RDEPEND} + virtual/pkgconfig" diff --git a/app-i18n/ibus-table-others/metadata.xml b/app-i18n/ibus-table-others/metadata.xml new file mode 100644 index 000000000000..1c7ec141883e --- /dev/null +++ b/app-i18n/ibus-table-others/metadata.xml @@ -0,0 +1,27 @@ + + + + + cjk@gentoo.org + Cjk + + + ibus-table-others provides the following tables for IBus-Table: + + * CNS11643 + * Compose + * Emoji + * IPA-X-SAMPA + * LaTex + * Mathwriter + * RussianTraditional + * Thai + * Translit + * Ua-Translit + * Viqr + * Yawerty + + + moebiuscurve/ibus-table-others + + diff --git a/app-i18n/ibus-table-tv/Manifest b/app-i18n/ibus-table-tv/Manifest deleted file mode 100644 index 7ee8d5269335..000000000000 --- a/app-i18n/ibus-table-tv/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ibus-table-tv-1.2.0.20100305.tar.gz 75183 SHA256 98acc450afdfdb7b6eabb43c78dbb60dc15921b7e04deb3ba4299e1f9358c990 SHA512 5bfe114f1cfd426d11dca103a636d59603264854c8f861de8716e48efe4c3ab1a1b6c8cff6820797799513c67a67d92a98de9ba577504b55fe41b7347922112f WHIRLPOOL 0d40ea44637bbc441deb7a26713007adf2d63671191a69e7a171f7cf0ed9a0daee6e46beeea280345a9848dba6e563ac6e4a89cc017c3b2ed06d349ad28e6bbc diff --git a/app-i18n/ibus-table-tv/ibus-table-tv-1.2.0.20100305.ebuild b/app-i18n/ibus-table-tv/ibus-table-tv-1.2.0.20100305.ebuild deleted file mode 100644 index 15a63fbdf92d..000000000000 --- a/app-i18n/ibus-table-tv/ibus-table-tv-1.2.0.20100305.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="The Thai and Viqr (Vietnamese) tables for IBus-Table" -HOMEPAGE="https://github.com/ibus/ibus/wiki" -SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=">=app-i18n/ibus-table-1.2" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_install() { - emake DESTDIR="${D}" install || die - - dodoc AUTHORS ChangeLog NEWS README || die -} diff --git a/app-i18n/ibus-table-tv/metadata.xml b/app-i18n/ibus-table-tv/metadata.xml deleted file mode 100644 index 40d121dd8694..000000000000 --- a/app-i18n/ibus-table-tv/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - cjk@gentoo.org - Cjk - - The Thai and Viqr (Vietnamese) tables for Ibus-Table. - - ibus - ibus/ibus - - diff --git a/app-i18n/ibus-table/Manifest b/app-i18n/ibus-table/Manifest index 67c6fd594970..260bf26fc917 100644 --- a/app-i18n/ibus-table/Manifest +++ b/app-i18n/ibus-table/Manifest @@ -1 +1,2 @@ DIST ibus-table-1.5.0.tar.gz 432844 SHA256 6ba89c70c50773d43927769a2c608f71b282afbf3538188f65b9c89ebdc1a184 SHA512 2c52da1b4d6ae8aec29e97a8a413b388912cfcfd15860ba0e65c97b139b14f8a7d4087eb196d516abe731df03a2e4904666194414242da8cf1f3f0b54696248e WHIRLPOOL cec2ad28dd8fa936738e7e2ae1ffa3c0e96a6d5c6cf88c74a98ed0900c31464ba405c6e4449977936733dc28f3c7768f22bb216fca2a583f1679a7bcb596c39d +DIST ibus-table-1.9.18.tar.gz 585309 SHA256 d0ef094c84c47c5ae490fc0c30a6afea0e0337559f5b7042d6b07e92dd86de37 SHA512 3f28269be1987023402eb6075b8e68b3bbba3c572a94551d072281677fde5fa14f8f4186455f8f9156b252934580c7a3837555d0edb46c76f13c8b109e26aca2 WHIRLPOOL 1d960d5a73266fb86f3f76bfa1789609d38f8a356bd2405b043f6c1123a84069bc2cfc34cb7c3e90d463b34ba987bedab5b14307380f4381a29fe2f712806977 diff --git a/app-i18n/ibus-table/ibus-table-1.5.0-r1.ebuild b/app-i18n/ibus-table/ibus-table-1.5.0-r1.ebuild index 117770e0b80a..313b0d5d4716 100644 --- a/app-i18n/ibus-table/ibus-table-1.5.0-r1.ebuild +++ b/app-i18n/ibus-table/ibus-table-1.5.0-r1.ebuild @@ -1,41 +1,42 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI="6" PYTHON_COMPAT=( python2_7 ) -PYTHON_REQ_USE="sqlite" -inherit eutils python-single-r1 +PYTHON_REQ_USE="sqlite(+)" -DESCRIPTION="The Table Engine for IBus Framework" +inherit python-single-r1 + +DESCRIPTION="Tables engines for IBus" HOMEPAGE="https://github.com/ibus/ibus/wiki" -SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz" +SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/${P}.tar.gz" LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="amd64 x86" IUSE="nls" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} - >=app-i18n/ibus-1.2[python,${PYTHON_USEDEP}] + app-i18n/ibus[python(+),${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + virtual/libiconv nls? ( virtual/libintl )" DEPEND="${RDEPEND} - nls? ( >=sys-devel/gettext-0.16.1 ) - virtual/pkgconfig" -REQUIRED_USE=${PYTHON_REQUIRED_USE} + virtual/pkgconfig + nls? ( sys-devel/gettext )" src_prepare() { python_fix_shebang . - sed -i -e "s/python/${EPYTHON}/" \ - engine/ibus-table-createdb.in engine/ibus-engine-table.in || die + sed -i \ + "s/python/${EPYTHON}/" \ + engine/${PN}-createdb.in \ + engine/${PN/-/-engine-}.in + + default } src_configure() { econf $(use_enable nls) } - -src_install() { - emake DESTDIR="${D}" install - - dodoc AUTHORS ChangeLog NEWS README -} diff --git a/app-i18n/ibus-table/ibus-table-1.9.18.ebuild b/app-i18n/ibus-table/ibus-table-1.9.18.ebuild new file mode 100644 index 000000000000..114b81267db0 --- /dev/null +++ b/app-i18n/ibus-table/ibus-table-1.9.18.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" +PYTHON_COMPAT=( python{3_4,3_5,3_6} ) +PYTHON_REQ_USE="sqlite(+)" + +inherit python-single-r1 + +DESCRIPTION="Tables engines for IBus" +HOMEPAGE="https://github.com/ibus/ibus/wiki" +SRC_URI="https://github.com/kaio/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + app-i18n/ibus[python(+),${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}] + virtual/libiconv + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext )" + +src_prepare() { + python_fix_shebang . + + sed -i \ + "s/python/${EPYTHON}/" \ + engine/${PN}-createdb.in \ + engine/${PN/-/-engine-}.in + + default +} + +src_configure() { + econf $(use_enable nls) +} diff --git a/app-i18n/ibus-table/metadata.xml b/app-i18n/ibus-table/metadata.xml index 8984a413a909..577d254feeb7 100644 --- a/app-i18n/ibus-table/metadata.xml +++ b/app-i18n/ibus-table/metadata.xml @@ -1,13 +1,14 @@ - - cjk@gentoo.org - Cjk - - The package contains general Table engine for IBus platform. - - ibus - ibus/ibus - + + cjk@gentoo.org + Cjk + + + A framework for table based input methods using IBus. + + + kaio/ibus-table + diff --git a/dev-libs/libchewing/Manifest b/app-i18n/libchewing/Manifest similarity index 66% rename from dev-libs/libchewing/Manifest rename to app-i18n/libchewing/Manifest index c5123f411130..1244d7f81374 100644 --- a/dev-libs/libchewing/Manifest +++ b/app-i18n/libchewing/Manifest @@ -1,2 +1,3 @@ DIST libchewing-0.3.3.tar.bz2 1798134 SHA256 72a0de12b86c4d5f6468a68d88c736227ff16fa7a915f8595ffe5a31cae95eae SHA512 24df8d4a1dab72b32bca03bb1086223248a261d522e703c662aad53cfb16fef74691623361d275b8d811d4a0e6bc2b23b044248f7d3982dc657c9872de1de005 WHIRLPOOL 12b67dc7aa3c34fefe66bed995642d021b5c2997d706b7bb73319a0c26b3f9291c771f6308c50bc1cb3e319ff8848a09bf0aec1ed713eb55706bf11cdefdb824 DIST libchewing-0.4.0.tar.gz 3367957 SHA256 128eae0616c8b4dadaecfb8982304241e65e2eb397001144ba5ed451ec197cc2 SHA512 8ac2a50531867dd628ed0c084a30b22e24cd102671b9ce23b008fb54d049c07135a8af205186e4ed719077cef6739e230fdcbd33cab0821a9bfab5b8fb4248c7 WHIRLPOOL a7ed4841fac60d402c710a8775b74e61bdb6ed6790ce33221bce1efc9b111192251b60bedbd04654d6afb8264d784600794be402d02c04f802bbe6ba03b54984 +DIST libchewing-0.5.1.tar.bz2 3141084 SHA256 9708c63415fa6034435c0f38100e7d30d0e1bac927f67bec6dfeb3fef016172b SHA512 a6551661bb5e56bba59730b93b373db56af7d42f2ab4881fbfff8727689dd2604d42d2e5c0b04820df66a431dfb5fcb73cc5c9b538615da76198ee3635501c1f WHIRLPOOL 317069206b5e739539c327a071dd3be467d755b561afb2186e94c747ce291dfb4473f110023026bf78974ce53ffadde342fa74db4f608fcb9dc655004ccc7331 diff --git a/dev-libs/libchewing/files/0.3.3-strncat-fix.patch b/app-i18n/libchewing/files/0.3.3-strncat-fix.patch similarity index 100% rename from dev-libs/libchewing/files/0.3.3-strncat-fix.patch rename to app-i18n/libchewing/files/0.3.3-strncat-fix.patch diff --git a/dev-libs/libchewing/libchewing-0.3.3.ebuild b/app-i18n/libchewing/libchewing-0.3.3.ebuild similarity index 100% rename from dev-libs/libchewing/libchewing-0.3.3.ebuild rename to app-i18n/libchewing/libchewing-0.3.3.ebuild diff --git a/dev-libs/libchewing/libchewing-0.4.0-r1.ebuild b/app-i18n/libchewing/libchewing-0.4.0-r1.ebuild similarity index 52% rename from dev-libs/libchewing/libchewing-0.4.0-r1.ebuild rename to app-i18n/libchewing/libchewing-0.4.0-r1.ebuild index a2a73dc6986f..6f3fb5790d76 100644 --- a/dev-libs/libchewing/libchewing-0.4.0-r1.ebuild +++ b/app-i18n/libchewing/libchewing-0.4.0-r1.ebuild @@ -1,45 +1,41 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI="6" -inherit autotools eutils multilib toolchain-funcs +inherit autotools ltprune DESCRIPTION="Library for Chinese Phonetic input method" HOMEPAGE="http://chewing.csie.net/" -SRC_URI="https://github.com/chewing/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI="https://github.com/${PN/lib}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="amd64 ~ppc ppc64 ~x86" IUSE="static-libs test" +REQUIRED_USE="test? ( static-libs )" -DEPEND=" +RDEPEND="dev-db/sqlite:3" +DEPEND="${RDEPEND} virtual/pkgconfig test? ( + dev-libs/check sys-libs/ncurses[unicode] - >=dev-libs/check-0.9.4 - ) - dev-db/sqlite:3 -" - -DOCS=( AUTHORS NEWS README.md TODO ) + )" src_prepare() { + default eautoreconf } src_configure() { econf \ $(use_enable static-libs static) \ - --with-sqlite3 \ - --disable-gcov + --with-sqlite3 } src_test() { - # test subdirectory is not enabled by default; this means that we - # have to make it explicit. - emake -C test check + emake -j1 check } src_install() { diff --git a/app-i18n/libchewing/libchewing-0.5.1.ebuild b/app-i18n/libchewing/libchewing-0.5.1.ebuild new file mode 100644 index 000000000000..5f89bccd1733 --- /dev/null +++ b/app-i18n/libchewing/libchewing-0.5.1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit ltprune + +DESCRIPTION="Library for Chinese Phonetic input method" +HOMEPAGE="http://chewing.csie.net/" +SRC_URI="https://github.com/${PN/lib}/${PN}/releases/download/v${PV}/${P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="static-libs test" +REQUIRED_USE="test? ( static-libs )" + +RDEPEND="dev-db/sqlite:3" +DEPEND="${RDEPEND} + virtual/pkgconfig + test? ( + dev-libs/check + sys-libs/ncurses[unicode] + )" + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --with-sqlite3 +} + +src_test() { + emake -j1 check +} + +src_install() { + default + prune_libtool_files +} diff --git a/dev-libs/libchewing/metadata.xml b/app-i18n/libchewing/metadata.xml similarity index 100% rename from dev-libs/libchewing/metadata.xml rename to app-i18n/libchewing/metadata.xml diff --git a/app-i18n/xcin/xcin-2.5.3_pre3-r2.ebuild b/app-i18n/xcin/xcin-2.5.3_pre3-r2.ebuild index a883ecec6be1..045287f7c182 100644 --- a/app-i18n/xcin/xcin-2.5.3_pre3-r2.ebuild +++ b/app-i18n/xcin/xcin-2.5.3_pre3-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 inherit multilib eutils autotools libtool @@ -19,7 +19,7 @@ RDEPEND=">=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) - dev-libs/libchewing + app-i18n/libchewing x11-libs/libX11" DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" diff --git a/app-i18n/xcin/xcin-2.5.3_pre3-r3.ebuild b/app-i18n/xcin/xcin-2.5.3_pre3-r3.ebuild index e01b8e7bf80b..5ba8a1b13e56 100644 --- a/app-i18n/xcin/xcin-2.5.3_pre3-r3.ebuild +++ b/app-i18n/xcin/xcin-2.5.3_pre3-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="4" @@ -20,7 +20,7 @@ RDEPEND=">=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) - dev-libs/libchewing + app-i18n/libchewing x11-libs/libX11" DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" diff --git a/app-portage/mirrorselect/mirrorselect-2.2.0.1.ebuild b/app-portage/mirrorselect/mirrorselect-2.2.0.1.ebuild index bfeb515a270e..b45d2f38ba34 100644 --- a/app-portage/mirrorselect/mirrorselect-2.2.0.1.ebuild +++ b/app-portage/mirrorselect/mirrorselect-2.2.0.1.ebuild @@ -9,7 +9,7 @@ PYTHON_REQ_USE="xml" inherit eutils distutils-r1 prefix DESCRIPTION="Tool to help select distfiles mirrors for Gentoo" -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Mirrorselect" +HOMEPAGE="https://wiki.gentoo.org/wiki/Mirrorselect" SRC_URI="https://dev.gentoo.org/~dolsen/distfiles/${P}.tar.gz" LICENSE="GPL-2" diff --git a/app-portage/mirrorselect/mirrorselect-2.2.2-r2.ebuild b/app-portage/mirrorselect/mirrorselect-2.2.2-r2.ebuild index 01573125ff9d..725b4bf5dcce 100644 --- a/app-portage/mirrorselect/mirrorselect-2.2.2-r2.ebuild +++ b/app-portage/mirrorselect/mirrorselect-2.2.2-r2.ebuild @@ -9,7 +9,7 @@ PYTHON_REQ_USE="xml" inherit eutils distutils-r1 prefix DESCRIPTION="Tool to help select distfiles mirrors for Gentoo" -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Mirrorselect" +HOMEPAGE="https://wiki.gentoo.org/wiki/Mirrorselect" SRC_URI="https://dev.gentoo.org/~dolsen/releases/mirrorselect/${P}.tar.gz https://dev.gentoo.org/~dolsen/releases/mirrorselect/mirrorselect-test " diff --git a/app-portage/mirrorselect/mirrorselect-2.2.2.ebuild b/app-portage/mirrorselect/mirrorselect-2.2.2.ebuild index 013d4e92a042..88aaa45414ac 100644 --- a/app-portage/mirrorselect/mirrorselect-2.2.2.ebuild +++ b/app-portage/mirrorselect/mirrorselect-2.2.2.ebuild @@ -9,7 +9,7 @@ PYTHON_REQ_USE="xml" inherit eutils distutils-r1 prefix DESCRIPTION="Tool to help select distfiles mirrors for Gentoo" -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Mirrorselect" +HOMEPAGE="https://wiki.gentoo.org/wiki/Mirrorselect" SRC_URI="https://dev.gentoo.org/~dolsen/releases/mirrorselect/${P}.tar.gz https://dev.gentoo.org/~dolsen/releases/mirrorselect/mirrorselect-test " diff --git a/app-portage/mirrorselect/mirrorselect-2.2.3.ebuild b/app-portage/mirrorselect/mirrorselect-2.2.3.ebuild index 2ee0f8efa3e5..6ccd13bd12db 100644 --- a/app-portage/mirrorselect/mirrorselect-2.2.3.ebuild +++ b/app-portage/mirrorselect/mirrorselect-2.2.3.ebuild @@ -9,7 +9,7 @@ PYTHON_REQ_USE="xml" inherit eutils distutils-r1 prefix DESCRIPTION="Tool to help select distfiles mirrors for Gentoo" -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Mirrorselect" +HOMEPAGE="https://wiki.gentoo.org/wiki/Mirrorselect" SRC_URI="https://dev.gentoo.org/~dolsen/releases/mirrorselect/${P}.tar.gz https://dev.gentoo.org/~dolsen/releases/mirrorselect/mirrorselect-test " diff --git a/app-portage/mirrorselect/mirrorselect-9999.ebuild b/app-portage/mirrorselect/mirrorselect-9999.ebuild index bbcd9c04a8a1..efbbddff3d18 100644 --- a/app-portage/mirrorselect/mirrorselect-9999.ebuild +++ b/app-portage/mirrorselect/mirrorselect-9999.ebuild @@ -11,7 +11,7 @@ inherit eutils distutils-r1 git-r3 prefix EGIT_REPO_URI="git://anongit.gentoo.org/proj/mirrorselect.git" DESCRIPTION="Tool to help select distfiles mirrors for Gentoo" -HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Mirrorselect" +HOMEPAGE="https://wiki.gentoo.org/wiki/Mirrorselect" SRC_URI="" LICENSE="GPL-2" diff --git a/app-text/liblangtag/files/liblangtag-0.5.6-musl.patch b/app-text/liblangtag/files/liblangtag-0.5.6-musl.patch deleted file mode 100644 index e6d1d1184cea..000000000000 --- a/app-text/liblangtag/files/liblangtag-0.5.6-musl.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 6ebf5709810983dca570d9f8873293b01b4a49bc Mon Sep 17 00:00:00 2001 -From: Akira TAGOH -Date: Mon, 20 Apr 2015 10:28:29 +0900 -Subject: [PATCH] add missing sys/types.h in lt-string.h required to build musl - libc to satisfy ssize_t. (fixes issue#12) - ---- - liblangtag/lt-string.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/liblangtag/lt-string.h b/liblangtag/lt-string.h -index 15724fc..c784430 100644 ---- a/liblangtag/lt-string.h -+++ b/liblangtag/lt-string.h -@@ -18,6 +18,7 @@ - #define __LT_STRING_H__ - - #include -+#include - - LT_BEGIN_DECLS - --- -2.4.1 - diff --git a/app-text/par/par-1.52.ebuild b/app-text/par/par-1.52-r1.ebuild similarity index 87% rename from app-text/par/par-1.52.ebuild rename to app-text/par/par-1.52-r1.ebuild index dbaf0fdc8fa6..7e6f9b7dcf6e 100644 --- a/app-text/par/par-1.52.ebuild +++ b/app-text/par/par-1.52-r1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +EAPI=6 + inherit toolchain-funcs MY_P="Par${PV/./}" @@ -16,7 +18,7 @@ IUSE="" DEPEND="!dev-util/par !app-arch/par" -S=${WORKDIR}/${MY_P} +S="${WORKDIR}/${MY_P}" src_compile() { make -f protoMakefile CC="$(tc-getCC) -c $CFLAGS" \ @@ -24,7 +26,7 @@ src_compile() { } src_install() { - newbin par par-format || die + newbin par par-format doman par.1 dodoc releasenotes par.doc } diff --git a/app-text/tabler/tabler-2-r1.ebuild b/app-text/tabler/tabler-2-r1.ebuild new file mode 100644 index 000000000000..ed6a81d08f97 --- /dev/null +++ b/app-text/tabler/tabler-2-r1.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A utility to create text art tables from delimited input" +HOMEPAGE="https://sourceforge.net/projects/tabler/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +src_install() { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog README +} diff --git a/dev-db/pgagent/files/postgres-10-build-fix.patch b/dev-db/pgagent/files/postgres-10-build-fix.patch new file mode 100644 index 000000000000..e2ecb0aa60b7 --- /dev/null +++ b/dev-db/pgagent/files/postgres-10-build-fix.patch @@ -0,0 +1,52 @@ +From a7b82fb3d3bd3de3ce624d9e4b0da53cb9835c2d Mon Sep 17 00:00:00 2001 +From: Ashesh Vashi +Date: Mon, 31 Jul 2017 14:57:55 +0530 +Subject: [PATCH] Added support two digits version for PostgreSQL/EDB Postgres + Advanced Server >= 10 + +--- + CMakeLists.txt | 6 +++++- + cmake/FindPG.cmake | 6 +++--- + 2 files changed, 8 insertions(+), 4 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 8214650..29755b4 100755 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -176,7 +176,11 @@ MESSAGE(STATUS " Description : ${CPACK_PACKAGE_DESCRIPTION_SUMM + MESSAGE(STATUS " Version : ${VERSION}") + MESSAGE(STATUS " ") + MESSAGE(STATUS " PostgreSQL version string : ${PG_VERSION_STRING}") +-MESSAGE(STATUS " PostgreSQL version parts : ${PG_MAJOR_VERSION}.${PG_MINOR_VERSION}.${PG_PATCH_VERSION}") ++IF(${PG_MAJOR_VERSION} GREATER 9) ++ MESSAGE(STATUS " PostgreSQL version parts : ${PG_MAJOR_VERSION}") ++ELSE() ++ MESSAGE(STATUS " PostgreSQL version parts : ${PG_MAJOR_VERSION}.${PG_MINOR_VERSION}") ++ENDIF(${PG_MAJOR_VERSION} GREATER 10) + MESSAGE(STATUS " PostgreSQL path : ${PG_ROOT_DIR}") + MESSAGE(STATUS " PostgreSQL config binary : ${PG_CONFIG_PATH}") + MESSAGE(STATUS " PostgreSQL include path : ${PG_INCLUDE_DIRS}") +diff --git a/cmake/FindPG.cmake b/cmake/FindPG.cmake +index 349086c..9768771 100644 +--- a/cmake/FindPG.cmake ++++ b/cmake/FindPG.cmake +@@ -28,7 +28,6 @@ + # PG_VERSION_STRING - The PostgreSQL version number. + # PG_MAJOR_VERSION - The PostgreSQL major version (x in x.y.z). + # PG_MINOR_VERSION - The PostgreSQL minor version (y in x.y.z). +-# PG_PATCH_VERSION - The PostgreSQL patch version (z in x.y.z). + # PG_EXTENSION - Set to TRUE if PostgreSQL supports extensions. + + IF(NOT PG_STATIC OR PG_STATIC STREQUAL "") +@@ -70,8 +69,9 @@ IF(NOT _retval) + # Split the version into its component parts. + STRING(REGEX MATCHALL "[0-9]+" PG_VERSION_PARTS "${PG_VERSION_STRING}") + LIST(GET PG_VERSION_PARTS 0 PG_MAJOR_VERSION) +- LIST(GET PG_VERSION_PARTS 1 PG_MINOR_VERSION) +- LIST(GET PG_VERSION_PARTS 2 PG_PATCH_VERSION) ++ IF((PG_MAJOR_VERSION LESS 10)) ++ LIST(GET PG_VERSION_PARTS 1 PG_MINOR_VERSION) ++ ENDIF((PG_MAJOR_VERSION LESS 10)) + + # Are extensions supported? + IF((PG_MAJOR_VERSION GREATER 9) OR ((PG_MAJOR_VERSION EQUAL 9) AND (PG_MINOR_VERSION GREATER 0))) diff --git a/dev-db/pgagent/pgagent-3.4.0-r2.ebuild b/dev-db/pgagent/pgagent-3.4.0-r2.ebuild index 9f44b6fff0f9..e71c4b87d440 100644 --- a/dev-db/pgagent/pgagent-3.4.0-r2.ebuild +++ b/dev-db/pgagent/pgagent-3.4.0-r2.ebuild @@ -24,6 +24,8 @@ DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_PN}-${PV}-Source" +PATCHES=( "${FILESDIR}/postgres-10-build-fix.patch" ) + src_prepare() { default sed -e "s:share):share/${P}):" \ diff --git a/dev-libs/libchewing/files/0.3.3-cflags.patch b/dev-libs/libchewing/files/0.3.3-cflags.patch deleted file mode 100644 index dba1093c5ae6..000000000000 --- a/dev-libs/libchewing/files/0.3.3-cflags.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -153,7 +122,6 @@ - if test x$LIBDEBUG = x"true"; then - AC_DEFINE(ENABLE_DEBUG, 1, - [Define to 1 if you want native library runtime debugging code enabled]) -- CFLAGS="$CFLAGS -g" - fi - AC_SUBST(LIBDEBUG) - diff --git a/dev-libs/libchewing/files/0.3.3-tinfo.patch b/dev-libs/libchewing/files/0.3.3-tinfo.patch deleted file mode 100644 index 10692e72c8ed..000000000000 --- a/dev-libs/libchewing/files/0.3.3-tinfo.patch +++ /dev/null @@ -1,43 +0,0 @@ ---- a/configure.ac -+++ b/configure.ac -@@ -91,38 +91,8 @@ - AM_CONDITIONAL(ENABLE_UNIT_TEST, test x$enable_check = "xyes") - - # Checks for ncursesw --OLDCFLAGS=$CFLAGS --LIB_NAME=ncursesw --NCURSESW_CFLAGS= --NCURSESW_LIBS= --for p in "$HOME/include" "$prefix/include" /usr/local/include /usr/include --do -- if test -f "$p/ncursesw/ncurses.h" -- then -- NCURSESW_CFLAGS="-I$p" -- AC_DEFINE(HAVE_NCURSESW_NCURSES_H, 1, [ Define to 1 if you have the header file. ]) -- break -- elif test -f "$p/ncurses/ncurses.h" -- then -- NCURSESW_CFLAGS="-I$p" -- AC_DEFINE(HAVE_NCURSES_NCURSES_H, 1, [ Define to 1 if you have the header file. ]) -- break -- fi --done -- --for p in "$HOME/lib" "$prefix/lib" /usr/local/lib /usr/lib --do -- if test -f "$p/libncursesw.so" -- then -- if test "$p" != x/usr/lib -- then -- NCURSESW_LIBS="-L$p -lncursesw" -- else -- NCURSESW_LIBS="-lncursesw" -- fi -- break -- fi --done -+PKG_CHECK_MODULES(NCURSESW,ncursesw, -+ AC_DEFINE(HAVE_NCURSESW_NCURSES_H, 1, [ Define to 1 if you have the header file. ]),) - - enable_ncursesw=yes - if test -z "$NCURSESW_CFLAGS"; then diff --git a/dev-libs/libchewing/libchewing-0.3.3-r1.ebuild b/dev-libs/libchewing/libchewing-0.3.3-r1.ebuild deleted file mode 100644 index 44ef3bd839e2..000000000000 --- a/dev-libs/libchewing/libchewing-0.3.3-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools eutils multilib toolchain-funcs - -DESCRIPTION="Library for Chinese Phonetic input method" -HOMEPAGE="http://chewing.csie.net/" -SRC_URI="http://chewing.csie.net/download/libchewing/${P}.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="static-libs test" - -DEPEND=" - virtual/pkgconfig - test? ( - sys-libs/ncurses[unicode] - >=dev-libs/check-0.9.4 - ) -" - -src_prepare() { - epatch \ - "${FILESDIR}"/${PV}-cflags.patch \ - "${FILESDIR}"/${PV}-strncat-fix.patch \ - "${FILESDIR}"/${PV}-tinfo.patch - - eautoreconf -} - -src_configure() { - econf $(use_enable static-libs static) -} - -src_test() { - # test subdirectory is not enabled by default; this means that we - # have to make it explicit. - emake -C test check -} - -DOCS=( AUTHORS ChangeLog NEWS README TODO ) - -src_install() { - default - - prune_libtool_files -} diff --git a/dev-libs/libixion/files/libixion-0.9.1-python-optional.patch b/dev-libs/libixion/files/libixion-0.9.1-python-optional.patch deleted file mode 100644 index 632fa07e0f6e..000000000000 --- a/dev-libs/libixion/files/libixion-0.9.1-python-optional.patch +++ /dev/null @@ -1,64 +0,0 @@ ---- a/configure.ac 2016-02-06 17:08:05.505990463 +0100 -+++ b/configure.ac 2016-02-06 17:08:42.316530268 +0100 -@@ -15,18 +15,22 @@ - AC_INIT([libixion], [ixion_version]) - AC_CONFIG_HEADERS([config.h]) - AM_INIT_AUTOMAKE([1.11 foreign dist-bzip2 dist-xz]) --AM_PATH_PYTHON(2.7.0) - m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) - - AC_ARG_WITH(hash-container-compat, - [ - --with-hash-container-compat use std::hash_foo instead of boost::unordered_foo - ], - ,with_hash_container_compat=no) - - AC_ARG_WITH(mdds-include-path, - AS_HELP_STRING([--with-mdds-include-path], [specify include path for mdds headers.]) - ,) -+AC_ARG_ENABLE([python], -+ [AS_HELP_STRING([--disable-python], [Disable python bindings])], -+ [enable_python="$enableval"], -+ [enable_python=yes] -+) - - IXION_API_VERSION=ixion_api_version - IXION_MAJOR_VERSION=ixion_major_version -@@ -70,7 +74,11 @@ - PKG_CHECK_MODULES([MDDS],[mdds >= 0.12.0]) - - # Check for python. --PKG_CHECK_MODULES([PYTHON], [python >= 0.27.1]) -+AS_IF([test "x$enable_python" != "xno"], [ -+ AM_PATH_PYTHON(2.7.0) -+ PKG_CHECK_MODULES([PYTHON], [python >= 0.27.1]) -+]) -+AM_CONDITIONAL([BUILD_PYTHON], [test "x$enable_python" != "xno"]) - - CPPFLAGS="$CPPFLAGS -g -Os -fvisibility=hidden" - -@@ -101,3 +109,10 @@ - src/libixion/constants.inl - src/python/Makefile]) - AC_OUTPUT -+ -+AC_MSG_NOTICE([ -+============================================================================== -+Build configuration: -+ python: $enable_python -+============================================================================== -+]) ---- a/src/python/Makefile.am 2016-02-06 17:08:12.138907540 +0100 -+++ b/src/python/Makefile.am 2016-02-06 17:08:38.034583800 +0100 -@@ -1,3 +1,5 @@ -+if BUILD_PYTHON -+ - pyexec_LTLIBRARIES = ixion.la - ixion_la_SOURCES = \ - document.hpp \ -@@ -16,3 +18,5 @@ - - AM_TESTS_ENVIRONMENT = PYTHONPATH=.libs$${PYTHONPATH:+:$${PYTHONPATH}}; export PYTHONPATH; - TESTS = ../../test/ixion-python-test.py -+ -+endif diff --git a/dev-libs/libixion/files/libixion-0.9.1-typo.patch b/dev-libs/libixion/files/libixion-0.9.1-typo.patch deleted file mode 100644 index 7e41f7bb752f..000000000000 --- a/dev-libs/libixion/files/libixion-0.9.1-typo.patch +++ /dev/null @@ -1,18 +0,0 @@ -commit ceddf45ed98dd0b65b510a284d373630c7642587 -Author: Andreas Sturmlechner -Date: Sun May 31 11:55:08 2015 +0200 - - src/Makefile.am: Fix typo - -diff --git a/src/Makefile.am b/src/Makefile.am -index ee9a1cc..b28c610 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -28,6 +28,6 @@ ixion_sorter_SOURCES = \ - ixion_sorter_LDADD = libixion/libixion-@IXION_API_VERSION@.la \ - $(BOOST_THREAD_LIBS) $(BOOST_PROGRAM_OPTIONS_LIBS) - --AM_TESTS_ENVIRONMENT = PATH=.libs$${PATH:+:$${PATH}}; epxort PATH; \ -+AM_TESTS_ENVIRONMENT = PATH=.libs$${PATH:+:$${PATH}}; export PATH; \ - LD_LIBRARY_PATH=libixion/.libs$${LD_LIBRARY_PATH:+:$${LD_LIBRARY_PATH}}; export LD_LIBRARY_PATH; - TESTS = ../test/ixion-parser-test.sh diff --git a/dev-libs/libpcre2/Manifest b/dev-libs/libpcre2/Manifest index 1b257c8d41f2..b0a26ad9875f 100644 --- a/dev-libs/libpcre2/Manifest +++ b/dev-libs/libpcre2/Manifest @@ -1,2 +1,3 @@ DIST pcre2-10.22.tar.bz2 1470620 SHA256 b2b44619f4ac6c50ad74c2865fd56807571392496fae1c9ad7a70993d018f416 SHA512 dcf70b5e5b73f29188a56e4d9efb9afdf2b9ebe50e13a7640b80f543851235a289e476e1f517f49fac9628b456268bcdaf2b492237bc879ddff36f84ef4f32ea WHIRLPOOL 154ee1c4d2445878c2d2fd1eafa96584d8c943e9e545937b37d4c1fb12ba847938647184723d429244bf5aa989ba335cfbf74fadb5d38227862762bd34166232 DIST pcre2-10.23.tar.bz2 1515314 SHA256 dfc79b918771f02d33968bd34a749ad7487fa1014aeb787fad29dd392b78c56e SHA512 3e5910bd2405cc35934d91e4be760abe4f2e900202a20b6ba74adb7a3acb2b74b3bf9b0e97e8de10f8e8534133e0722e0bf0f5fb40d6c2c4520d1ed61749d456 WHIRLPOOL 8db3deb22c26688607e1dc4b52229c64f8bcbb80908155ff9bd58b690a239984b6f5d1aff0cdc70efa3abf3ee899e22ea6e3a502437af424cb92d345133889a6 +DIST pcre2-10.30.tar.bz2 1583543 SHA256 90bd41c605d30e3745771eb81928d779f158081a51b2f314bbcc1f73de5773db SHA512 f247a9f917c75920793b9919a45bb1426d126246e7a5d04e39d9407e44b5781f894a90cd3d232b385436b2f22be391335ab782664dd3a28c79058a2fcc74dc3e WHIRLPOOL 4491d5ea682ee90dad91f5b1a3dccf482c17768ea5de3c5cca2fa2b56ba97180b746242e552fbe240b154f98eac5b11da466b86d34e9bfe7c7a202d4c976172f diff --git a/dev-libs/libpcre2/libpcre2-10.30.ebuild b/dev-libs/libpcre2/libpcre2-10.30.ebuild new file mode 100644 index 000000000000..a94857246afc --- /dev/null +++ b/dev-libs/libpcre2/libpcre2-10.30.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit flag-o-matic libtool ltprune multilib-minimal toolchain-funcs + +DESCRIPTION="Perl-compatible regular expression library" +HOMEPAGE="http://www.pcre.org/" +MY_P="pcre2-${PV/_rc/-RC}" +if [[ ${PV} != *_rc* ]] ; then + # Only the final releases are available here. + SRC_URI="mirror://sourceforge/pcre/${MY_P}.tar.bz2 + ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${MY_P}.tar.bz2" +else + SRC_URI="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/Testing/${MY_P}.tar.bz2" +fi + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="bzip2 +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs unicode zlib" +REQUIRED_USE="?? ( libedit readline )" + +RDEPEND="bzip2? ( app-arch/bzip2 ) + zlib? ( sys-libs/zlib ) + libedit? ( dev-libs/libedit ) + readline? ( sys-libs/readline:0= )" +DEPEND="${RDEPEND} + virtual/pkgconfig + userland_GNU? ( >=sys-apps/findutils-4.4.0 )" + +S="${WORKDIR}/${MY_P}" + +MULTILIB_CHOST_TOOLS=( + /usr/bin/pcre2-config +) + +src_prepare() { + default + + elibtoolize +} + +multilib_src_configure() { + local myeconfargs=( + --enable-pcre2-8 + --enable-shared + --htmldir="${EPREFIX}"/usr/share/doc/${PF}/html + --with-match-limit-depth=$(usex recursion-limit 8192 MATCH_LIMIT) + $(multilib_native_use_enable bzip2 pcre2grep-libbz2) + $(multilib_native_use_enable libedit pcre2test-libedit) + $(multilib_native_use_enable readline pcre2test-libreadline) + $(multilib_native_use_enable zlib pcre2grep-libz) + $(use_enable jit) + $(use_enable jit pcre2grep-jit) + $(use_enable pcre16 pcre2-16) + $(use_enable pcre32 pcre2-32) + $(use_enable static-libs static) + $(use_enable unicode) + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_compile() { + emake V=1 $(multilib_is_native_abi || echo "bin_PROGRAMS=") +} + +multilib_src_install() { + emake \ + DESTDIR="${D}" \ + $(multilib_is_native_abi || echo "bin_PROGRAMS= dist_html_DATA=") \ + install + multilib_is_native_abi && gen_usr_ldscript -a pcre2-posix +} + +multilib_src_install_all() { + prune_libtool_files +} diff --git a/dev-python/cryptography-vectors/Manifest b/dev-python/cryptography-vectors/Manifest index bd2367fa91ff..8818f9ace21d 100644 --- a/dev-python/cryptography-vectors/Manifest +++ b/dev-python/cryptography-vectors/Manifest @@ -3,3 +3,4 @@ DIST cryptography_vectors-1.7.2.tar.gz 26652633 SHA256 4be4eee8a11deee5c2f00e389 DIST cryptography_vectors-1.8.1.tar.gz 26653746 SHA256 2fd61facea08800ca98ac923f6d02f48a7ae6648025b29cdeb51987c1532add6 SHA512 78cf2a50ebbf0b11c57a53ac683a7ee39f157c7ad04d6374cfe5448bc474964ef61f74d0edd63b5a6b871b4efacc0b3fb9ea8d6025a99567ad2e6a5ec744255d WHIRLPOOL e982e3ed38e2b2c6ba5de4f65d86e13360b6418cdfc2b6191d3b4ef63ed740f3a59de8386f45b21149f11801bccf85e500462c1138af06db2754ef29d11a5c6d DIST cryptography_vectors-1.9.tar.gz 26653563 SHA256 bbf767727ad1b9d4cb684fb2b36db4cc78bd420fa6999e7e6ca1aab8c30d78f3 SHA512 3c37dc39496b66539f54bf377b4653b59abaa81fc9fbd68e2d337acbfe9c7fd80801b37ddddc2f7698356b22fb9bcd9f8a41ff95ee405b208c267c0fcba56ead WHIRLPOOL 801a6e58cf48b68422905de1a2ccc4ce5955799df505cfcb2a0870a7826acaa29d5f1de0c0752c8b326ea5d3c0530cee660ba030255da47650862eb3425f64da DIST cryptography_vectors-2.0.2.tar.gz 27011827 SHA256 512f1e699dfbb41376e938e6dc6d7f1f40b9578f873438f002e2e5212e13717b SHA512 ab14bdf664e6df08c8436eb24c4465d3080aacd4e6cb47a0113b0877f869cd91d4184ad9122a428b323e91316b686eeb167c4e932773cac1e7b2adbc9309ca36 WHIRLPOOL 9c699e29a636ac56afcd12d938a316d4c89ebf55330fb747d61cf24d77273694e91bc5cc212e80c13497b72d24668ef738ecbb47eaefaf7891c046d20d729064 +DIST cryptography_vectors-2.0.3.tar.gz 27011810 SHA256 beb831aa73663a224f4d7520483ed02da544533bb03b26ec07a5f9a0dd0941e1 SHA512 a944ca7781d47e6e81d69c32a717a19c2f461412e38f4d2b93cb02309bacdf01d766f7227a20b520faae2db20cf3dca194ed3c34363dcc70866d9ef6200f65cc WHIRLPOOL c2f35a4421fab2744daa3be10a2eedb461bd8db148b088df94fa3a473bcb4df46312a3e88dadac9df7ae1276e1fe16c38788b946cae2789c093b04ef1aea00ff diff --git a/dev-python/cryptography-vectors/cryptography-vectors-2.0.3.ebuild b/dev-python/cryptography-vectors/cryptography-vectors-2.0.3.ebuild new file mode 100644 index 000000000000..711276fa7749 --- /dev/null +++ b/dev-python/cryptography-vectors/cryptography-vectors-2.0.3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 ) + +inherit distutils-r1 + +MY_PN=${PN/-/_} +MY_P=${MY_PN}-${PV} + +DESCRIPTION="Test vectors for the cryptography package" +HOMEPAGE="https://pypi.python.org/pypi/cryptography-vectors/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz" + +LICENSE="|| ( Apache-2.0 BSD )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" + +S=${WORKDIR}/${MY_P} diff --git a/dev-python/cryptography/Manifest b/dev-python/cryptography/Manifest index 088d0ff31e1f..a35e54d7cc3a 100644 --- a/dev-python/cryptography/Manifest +++ b/dev-python/cryptography/Manifest @@ -3,3 +3,4 @@ DIST cryptography-1.7.2.tar.gz 420867 SHA256 878cb68b3da3d493ffd68f36db11c29deee DIST cryptography-1.8.1.tar.gz 423560 SHA256 323524312bb467565ebca7e50c8ae5e9674e544951d28a2904a50012a8828190 SHA512 273c8ca4ad6c9d1151a8a731d148d02e619e14e37df25dc26030b0a90f895b88fbf4d3e320aec5ea7af4a8fcc58f720c61f48968f912c69156d4e0e794743345 WHIRLPOOL ff760c9dc7dfbba355afde726a9154bcf45102e135b95b431aab5ac34c8003edccafa646b51ca02296aa55f244b0ff752d8d1b775cb76a1c9f15d347d505e8ce DIST cryptography-1.9.tar.gz 409664 SHA256 5518337022718029e367d982642f3e3523541e098ad671672a90b82474c84882 SHA512 815e9c09366935f8603a3e6e74c28ce79175596d00dbcd19d3792505237bd1cf953a4f401c2b97e4beaa7f2bbdcf9d7f95c4753d001a07fa816830af97cdd24e WHIRLPOOL b79a10de82b2cf98b27535f0b018f651038ed235f5e63eed48da52a87efaf672057e147b9c1b23701da0505d52cc85558ad3b6e692670a9f9e63061b381500d8 DIST cryptography-2.0.2.tar.gz 427303 SHA256 3780b2663ee7ebb37cb83263326e3cd7f8b2ea439c448539d4b87de12c8d06ab SHA512 a71219ff52006a7c8bf1553d0f132c747566c630281ef89aac40c65b193b1f0074fc9cda1de7057c76b452113dfb6188c83baef3ed9c05ff18adbc8b7bba646b WHIRLPOOL 2c3b3da3d2d578c0ba29230c0955fd48688fd5039f08eacefc4017c5cd357d1096cdc79a271ff4e7319c1bb344edee12f8c184c33f12569226612a4dccfb6d11 +DIST cryptography-2.0.3.tar.gz 427544 SHA256 d04bb2425086c3fe86f7bc48915290b13e798497839fbb18ab7f6dffcf98cc3a SHA512 fa569c4f5a994e2bd90810649fdf48115bfd5ff46790c849991e8f7a7c8b5435402f92453e4365426ee645623b3bb509c9bb781657c4b4e81e3a36b58ba5461c WHIRLPOOL 4bbbfb4c57a5c4de7c84654d6474bd9b7b0d1eb9ed1f63d91a360b2987187f7bb1910ff4ca540b37fd3e98a00b37d5963a92b2d6ae0acfaab1636f512e887ca3 diff --git a/dev-python/cryptography/cryptography-2.0.3.ebuild b/dev-python/cryptography/cryptography-2.0.3.ebuild new file mode 100644 index 000000000000..963e8c1c16d1 --- /dev/null +++ b/dev-python/cryptography/cryptography-2.0.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} ) +PYTHON_REQ_USE="threads(+)" + +inherit distutils-r1 + +DESCRIPTION="Library providing cryptographic recipes and primitives" +HOMEPAGE="https://github.com/pyca/cryptography/ https://pypi.python.org/pypi/cryptography/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="|| ( Apache-2.0 BSD )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86" +IUSE="libressl test" + +RDEPEND=" + !libressl? ( >=dev-libs/openssl-1.0.2:0=[-bindist(-)] ) + libressl? ( dev-libs/libressl ) + $(python_gen_cond_dep '>=dev-python/cffi-1.7:=[${PYTHON_USEDEP}]' 'python*') + $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7 pypy{,3}) + >=dev-python/idna-2.1[${PYTHON_USEDEP}] + >=dev-python/asn1crypto-0.21.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/six-1.4.1[${PYTHON_USEDEP}] + virtual/python-ipaddress[${PYTHON_USEDEP}] + " +DEPEND="${RDEPEND} + >=dev-python/setuptools-1.0[${PYTHON_USEDEP}] + test? ( + ~dev-python/cryptography-vectors-${PV}[${PYTHON_USEDEP}] + dev-python/hypothesis[${PYTHON_USEDEP}] + dev-python/iso8601[${PYTHON_USEDEP}] + dev-python/pretend[${PYTHON_USEDEP}] + dev-python/pyasn1-modules[${PYTHON_USEDEP}] + >=dev-python/pytest-2.9.0[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + )" + +DOCS=( AUTHORS.rst CONTRIBUTING.rst README.rst ) + +python_test() { + py.test -v -v -x || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/dbusmock/Manifest b/dev-python/dbusmock/Manifest index 456da5e87fea..d4ff31f5ca6b 100644 --- a/dev-python/dbusmock/Manifest +++ b/dev-python/dbusmock/Manifest @@ -1 +1,2 @@ DIST dbusmock-0.16.7.tar.gz 70544 SHA256 2d2ea892fa4633c3ec6ac1e912120ec493047a5c6522849b7d1c95ad755bce75 SHA512 749728b966b1e067a0a8bd61ee64c1c7ff22751ccb48e15096d041e78c6e779d787160ee191e90daa3177b92c0ee45c66af74b2dd4e4bcb570892b431ec13467 WHIRLPOOL 921c47fb0b86a6a3368c3b37c27f30b75edacefb46f1a726e39f35eb7b1ea7d0f78c3a7e04b218016c558578625ff28188bfece7cbc7aa06405effe4ab614f92 +DIST dbusmock-0.16.9.tar.gz 71014 SHA256 892b770a7f6c800fd6c0a9d102ef085a9371cc4eaed95dabbd740913dc08dd9b SHA512 3aa91f6ede054ed3d3a69f68f3886094e881d266a8f09c7d08a34d10b080a77facde8aae01e75232472c2e643574fe897dae2c3588f5ad9ecf4ec4e67f404f54 WHIRLPOOL 192d522a79b365630d0ef2069b5cf1cdae3ddb7896ad9db590ff8e7a180d44ac101ed123c035c272c27cc96cb33bbed1a9e00bf08ab0e248554f3ed374ead1ee diff --git a/dev-python/dbusmock/dbusmock-0.16.9.ebuild b/dev-python/dbusmock/dbusmock-0.16.9.ebuild new file mode 100644 index 000000000000..23325f8ccdb0 --- /dev/null +++ b/dev-python/dbusmock/dbusmock-0.16.9.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 + +MY_PN="python-${PN}" +MY_P="${MY_PN}-${PV}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="Easily create mock objects on D-Bus for software testing" +HOMEPAGE="https://github.com/martinpitt/python-dbusmock" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86" +IUSE="test" + +RDEPEND=" + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/pygobject:3[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + >=dev-python/setuptools-17.1[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + )" + +PATCHES=( + "${FILESDIR}"/0.16.9-disable-style-tests.patch + "${FILESDIR}"/0.16.9-replace-dbus-launch.patch +) + +python_test() { + nosetests --verbose || die "tests fail under ${EPYTHON}" +} + +python_install_all() { + local DOCS=( NEWS README.rst ) + + distutils-r1_python_install_all +} diff --git a/dev-python/dbusmock/files/0.16.9-disable-style-tests.patch b/dev-python/dbusmock/files/0.16.9-disable-style-tests.patch new file mode 100644 index 000000000000..cb7febdb4e53 --- /dev/null +++ b/dev-python/dbusmock/files/0.16.9-disable-style-tests.patch @@ -0,0 +1,14 @@ +These tests are bound to fail dependending on QA tools updates + +https://github.com/martinpitt/python-dbusmock/issues/28 + +--- a/tests/test_code.py 2017-08-16 09:20:43.848503995 +0200 ++++ b/tests/test_code.py 2017-08-16 09:20:54.410177037 +0200 +@@ -21,6 +21,7 @@ + pycodestyle = None + + ++@unittest.skip('style tests') + class StaticCodeTests(unittest.TestCase): + @unittest.skipIf(subprocess.call(['which', 'pyflakes'], stdout=subprocess.PIPE) != 0, + 'pyflakes not installed') diff --git a/dev-python/dbusmock/files/0.16.9-replace-dbus-launch.patch b/dev-python/dbusmock/files/0.16.9-replace-dbus-launch.patch new file mode 100644 index 000000000000..54149ed033aa --- /dev/null +++ b/dev-python/dbusmock/files/0.16.9-replace-dbus-launch.patch @@ -0,0 +1,76 @@ +From 9470c54a2836795974e83e55ea859e4653b20b37 Mon Sep 17 00:00:00 2001 +From: Martin Pitt +Date: Mon, 19 Jun 2017 16:31:28 +0200 +Subject: [PATCH] Call dbus-daemon directly instead of dbus-launch + +dbus-launch is X11 specific and being deprecated. + +Adjust documentation to use dbus-run-session instead. + +https://bugs.debian.org/836053 +--- + NEWS | 4 ++++ + README.rst | 6 +++--- + dbusmock/testcase.py | 18 ++++++++++-------- + 3 files changed, 17 insertions(+), 11 deletions(-) + +diff --git a/NEWS b/NEWS +index c1250ea..181a4df 100644 +--- a/NEWS ++++ b/NEWS +@@ -1,3 +1,7 @@ ++0.17 (UNRELEASED) ++----------------- ++ - Call dbus-daemon directly instead of dbus-launch. (Debian #836053) ++ + 0.16.9 (2017-06-19) + ------------------- + - NetworkManager template: Fix type of 'State' property in AddActiveConnection() +diff --git a/README.rst b/README.rst +index 3dc4552..310e1ac 100644 +--- a/README.rst ++++ b/README.rst +@@ -118,9 +118,9 @@ Let's walk through: + Simple example from shell + ------------------------- + +-We use the actual session bus for this example. You can use ``dbus-launch`` to +-start a private one as well if you want, but that is not part of the actual +-mocking. ++We use the actual session bus for this example. You can use ++``dbus-run-session`` to start a private one as well if you want, but that is ++not part of the actual mocking. + + So let's start a mock at the D-Bus name ``com.example.Foo`` with an initial + "main" object on path /, with the main D-Bus interface +diff --git a/dbusmock/testcase.py b/dbusmock/testcase.py +index 825c61f..49787e2 100644 +--- a/dbusmock/testcase.py ++++ b/dbusmock/testcase.py +@@ -97,16 +97,18 @@ def start_dbus(klass, conf=None): + Normally you do not need to call this directly. Use start_system_bus() + and start_session_bus() instead. + ''' +- argv = ['dbus-launch'] ++ argv = ['dbus-daemon', '--fork', '--print-address=1', '--print-pid=1'] + if conf: + argv.append('--config-file=' + conf) +- out = subprocess.check_output(argv, universal_newlines=True) +- variables = {} +- for line in out.splitlines(): +- (k, v) = line.split('=', 1) +- variables[k] = v +- return (int(variables['DBUS_SESSION_BUS_PID']), +- variables['DBUS_SESSION_BUS_ADDRESS']) ++ else: ++ argv.append('--session') ++ lines = subprocess.check_output(argv, universal_newlines=True).strip().splitlines() ++ assert len(lines) == 2, 'expected exactly 2 lines of output from dbus-daemon' ++ # usually the first line is the address, but be lenient and accept any order ++ try: ++ return (int(lines[1]), lines[0]) ++ except ValueError: ++ return (int(lines[0]), lines[1]) + + @classmethod + def stop_dbus(klass, pid): diff --git a/dev-python/python-slip/Manifest b/dev-python/python-slip/Manifest index c3454de6267b..e441c71e9d7a 100644 --- a/dev-python/python-slip/Manifest +++ b/dev-python/python-slip/Manifest @@ -1,2 +1,2 @@ -DIST python-slip-0.6.0.tar.bz2 24930 SHA256 f47361ec52b608309b83c71905e692b6b363eaf3b8a7afdeff866cd94463ad5c SHA512 5787995521cce568d6569c15270bee63d9c42e85e21e652c9042c09d62d2c99bbee0b3efcaaa187e3f78d0d90a69ba4d9846b1182f0f366a6c75cb822b412164 WHIRLPOOL 30ede47ceafe7eef0c441504061cbfa1cddac80afb732030a8e27765f0a30b4b2b176061fe19d57001f39ed764b298f8bfc9d2e0d01b878ac0a0a7ae5c623a04 DIST python-slip-0.6.1.tar.bz2 25000 SHA256 bc897f1ab6f5b4989f85548799aaeb84fde67bbba18e40341bfe1d7885c2fd9a SHA512 d7d79b8ee4468d3a3b5e2ff31dcc8af30f70591ba42f74af9787e5c883a137e85c39a6ffc7c36cd2383840aa4ca09cd1ca3d9e40fc4d266b37689a85f084a9ab WHIRLPOOL 95595c7cc45bd403fa8ed1a5a36e32bbcce7aa621ff2d86503487174279e996e3839e7c3033a771274c944f46591f819a0ab1981e1301c4a13757f4787c2586b +DIST python-slip-0.6.5.tar.bz2 25996 SHA256 c726c086f0dd93a0ac7a0176f383a12af91b6657b78a301e3f5b25d9f8d4d10b SHA512 84dfd4d74602e996797261aa4021fc1579a6aba554d2b3d497c0a7b8618366a9c0a6f12051b00c5653845dda923eedb58afdded37f2a1f31b5b0ce1a0532ccff WHIRLPOOL 54f9d0663cbfada42ab1fee2372919dae7960326719bced4da2e31167a9a92894ec7a0e9ce439cc659fc7511c22d47fe25a6ccf83ffe84ff830b55ca153bdda0 diff --git a/dev-python/python-slip/files/python-slip-0.6.5-no-selinux.patch b/dev-python/python-slip/files/python-slip-0.6.5-no-selinux.patch new file mode 100644 index 000000000000..b957625f7ecd --- /dev/null +++ b/dev-python/python-slip/files/python-slip-0.6.5-no-selinux.patch @@ -0,0 +1,93 @@ +From 66480a1ee0222d9944f58af945959183b23c26f6 Mon Sep 17 00:00:00 2001 +From: Alexandre Rostovtsev +Date: Wed, 16 Aug 2017 10:49:43 +0200 +Subject: [PATCH] Disable selinux + +Signed-off-by: Gilles Dartiguelongue +--- + setup.py.in | 2 +- + slip/util/files.py | 27 ++++++++++++++------------- + 2 files changed, 15 insertions(+), 14 deletions(-) + +diff --git a/setup.py.in b/setup.py.in +index 9e7644b..fb276a7 100644 +--- a/setup.py.in ++++ b/setup.py.in +@@ -8,7 +8,7 @@ setup(name="slip", version="@VERSION@", + py_modules=["slip.__init__", "slip.util.__init__", + "slip.util.hookable", "slip.util.files", + "slip._wrappers.__init__", "slip._wrappers._glib"], +- requires=["selinux"]) ++ requires=[]) + + setup(name="slip.dbus", version="@VERSION@", + py_modules=["slip.dbus.__init__", "slip.dbus.bus", +diff --git a/slip/util/files.py b/slip/util/files.py +index 98faa7c..a0a3768 100644 +--- a/slip/util/files.py ++++ b/slip/util/files.py +@@ -33,6 +33,7 @@ __all__ = ["issamefile", "linkfile", "copyfile", "linkorcopyfile", + + import os + import selinux ++# import selinux + import tempfile + import errno + import stat +@@ -140,8 +141,8 @@ def copyfile(srcpath, dstpath, copy_mode_from_dst=True, run_restorecon=True): + + os.rename(dsttmpfile.name, dstpath) + +- if run_restorecon and selinux.is_selinux_enabled() > 0: +- selinux.restorecon(dstpath) ++# if run_restorecon and selinux.is_selinux_enabled() > 0: ++# selinux.restorecon(dstpath) + + + def linkorcopyfile( +@@ -247,8 +248,8 @@ def overwrite_safely( + + exists = os.path.exists(path) + +- if preserve_context and selinux.is_selinux_enabled() <= 0: +- preserve_context = False ++# if preserve_context and selinux.is_selinux_enabled() <= 0: ++# preserve_context = False + + try: + fd, tmpname = tempfile.mkstemp(prefix=base + os.path.extsep, +@@ -263,10 +264,10 @@ def overwrite_safely( + if preserve_mode: + os.fchmod(fd, stat.S_IMODE(s.st_mode)) + +- if preserve_context: +- ret, ctx = selinux.getfilecon(path) +- if ret < 0: +- raise RuntimeError("getfilecon(%r) failed" % path) ++# if preserve_context: ++# ret, ctx = selinux.getfilecon(path) ++# if ret < 0: ++# raise RuntimeError("getfilecon(%r) failed" % path) + + f = os.fdopen(fd, "w") + fd = None +@@ -278,11 +279,11 @@ def overwrite_safely( + + os.rename(tmpname, path) + +- if preserve_context: +- if exists: +- selinux.setfilecon(path, ctx) +- else: +- selinux.restorecon(path) ++# if preserve_context: ++# if exists: ++# selinux.setfilecon(path, ctx) ++# else: ++# selinux.restorecon(path) + + finally: + if f: +-- +2.14.0 + diff --git a/dev-python/python-slip/python-slip-0.6.1.ebuild b/dev-python/python-slip/python-slip-0.6.1.ebuild index ef1a2e3f7a8b..7ec1e7fe6ee7 100644 --- a/dev-python/python-slip/python-slip-0.6.1.ebuild +++ b/dev-python/python-slip/python-slip-0.6.1.ebuild @@ -9,7 +9,7 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) inherit distutils-r1 eutils DESCRIPTION="Miscellaneous convenience, extension and workaround code for Python" -HOMEPAGE="https://fedorahosted.org/python-slip/" +HOMEPAGE="https://github.com/nphilipp/python-slip" SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.bz2" LICENSE="GPL-2+" diff --git a/dev-python/python-slip/python-slip-0.6.0.ebuild b/dev-python/python-slip/python-slip-0.6.5.ebuild similarity index 74% rename from dev-python/python-slip/python-slip-0.6.0.ebuild rename to dev-python/python-slip/python-slip-0.6.5.ebuild index 63a1bf9001b5..58abc1ead8da 100644 --- a/dev-python/python-slip/python-slip-0.6.0.ebuild +++ b/dev-python/python-slip/python-slip-0.6.5.ebuild @@ -1,20 +1,20 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 PYTHON_REQ_USE="xml" -PYTHON_COMPAT=( python{2_7,3_4} ) +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) inherit distutils-r1 eutils DESCRIPTION="Miscellaneous convenience, extension and workaround code for Python" -HOMEPAGE="https://fedorahosted.org/python-slip/" -SRC_URI="https://fedorahosted.org/released/${PN}/${P}.tar.bz2" +HOMEPAGE="https://github.com/nphilipp/python-slip" +SRC_URI="https://github.com/nphilipp/${PN}/releases/download/${P}/${P}.tar.bz2" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="~amd64 ~arm64 ~x86" IUSE="dbus selinux" RDEPEND=" @@ -27,7 +27,7 @@ RDEPEND=" DEPEND="" python_prepare_all() { - use selinux || epatch "${FILESDIR}/${PN}-0.4.0-no-selinux.patch" + use selinux || epatch "${FILESDIR}"/${PN}-0.6.5-no-selinux.patch # hard-disable slip.gtk since it did not get ported to gtk3+ and the only user # of slip (firewalld) does not use it (upstream disables it for py3 already) diff --git a/dev-ruby/annoy/annoy-0.5.6-r1.ebuild b/dev-ruby/annoy/annoy-0.5.6-r1.ebuild index 33cff4e3addd..94b202b0bd7b 100644 --- a/dev-ruby/annoy/annoy-0.5.6-r1.ebuild +++ b/dev-ruby/annoy/annoy-0.5.6-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_TASK_TEST="" diff --git a/dev-ruby/arel-helpers/arel-helpers-2.4.0.ebuild b/dev-ruby/arel-helpers/arel-helpers-2.4.0.ebuild index 980137fea785..1010c5893b47 100644 --- a/dev-ruby/arel-helpers/arel-helpers-2.4.0.ebuild +++ b/dev-ruby/arel-helpers/arel-helpers-2.4.0.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=5 -USE_RUBY="ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_RECIPE_TEST="rspec" diff --git a/dev-ruby/astrolabe/astrolabe-1.3.1.ebuild b/dev-ruby/astrolabe/astrolabe-1.3.1.ebuild index 230ea02cc8dc..61abe54ff9fb 100644 --- a/dev-ruby/astrolabe/astrolabe-1.3.1.ebuild +++ b/dev-ruby/astrolabe/astrolabe-1.3.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_RECIPE_DOC="yard" RUBY_FAKEGEM_RECIPE_TEST="rspec" diff --git a/dev-ruby/binding_of_caller/binding_of_caller-0.7.2.ebuild b/dev-ruby/binding_of_caller/binding_of_caller-0.7.2.ebuild index d6d8b4467b4d..cabb6b095196 100644 --- a/dev-ruby/binding_of_caller/binding_of_caller-0.7.2.ebuild +++ b/dev-ruby/binding_of_caller/binding_of_caller-0.7.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_RECIPE_DOC="rdoc" RUBY_FAKEGEM_EXTRADOC="HISTORY README.md" diff --git a/dev-ruby/bogus/bogus-0.1.6.ebuild b/dev-ruby/bogus/bogus-0.1.6.ebuild index 8815fd38c438..91b7a6b75e09 100644 --- a/dev-ruby/bogus/bogus-0.1.6.ebuild +++ b/dev-ruby/bogus/bogus-0.1.6.ebuild @@ -3,7 +3,7 @@ EAPI=6 -USE_RUBY="ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_RECIPE_TEST="rspec3" @@ -12,7 +12,7 @@ RUBY_FAKEGEM_EXTRADOC="README.md" inherit ruby-fakegem -DESCRIPTION="Decreases the need for integration tests by ensuring that the things you stub or mock actually exist." +DESCRIPTION="Ensuring that the things you stub or mock actually exist" HOMEPAGE="https://github.com/psyho/bogus" LICENSE="MIT" diff --git a/dev-ruby/bones/bones-3.8.4-r1.ebuild b/dev-ruby/bones/bones-3.8.4-r1.ebuild index f220b0df04a7..4be6b8a788df 100644 --- a/dev-ruby/bones/bones-3.8.4-r1.ebuild +++ b/dev-ruby/bones/bones-3.8.4-r1.ebuild @@ -3,7 +3,7 @@ EAPI=5 -USE_RUBY="ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_RECIPE_TEST="rspec" diff --git a/dev-ruby/bones/bones-3.8.4.ebuild b/dev-ruby/bones/bones-3.8.4.ebuild deleted file mode 100644 index 20ae06856def..000000000000 --- a/dev-ruby/bones/bones-3.8.4.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -USE_RUBY="ruby21 ruby22 ruby23" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" - -RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc" - -RUBY_FAKEGEM_EXTRAINSTALL="default version.txt" - -inherit ruby-fakegem - -DESCRIPTION="Tool that creates new Ruby projects from a code skeleton" -HOMEPAGE="https://github.com/TwP/bones" - -IUSE="test" -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -ruby_add_rdepend " - dev-ruby/builder - >=dev-ruby/loquacious-1.9.1 - >=dev-ruby/little-plugger-1.1.3 - >=dev-ruby/rake-12" - -all_ruby_prepare() { - epatch "${FILESDIR}"/${PN}-3.8.1-builder.patch -} diff --git a/dev-ruby/bourne/bourne-1.6.0.ebuild b/dev-ruby/bourne/bourne-1.6.0.ebuild index 345d84b3b5c8..2e540174232c 100644 --- a/dev-ruby/bourne/bourne-1.6.0.ebuild +++ b/dev-ruby/bourne/bourne-1.6.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="README.md" diff --git a/dev-ruby/bsearch/bsearch-1.5.0-r2.ebuild b/dev-ruby/bsearch/bsearch-1.5.0-r2.ebuild index f1c574d84b32..6a13d9da56a9 100644 --- a/dev-ruby/bsearch/bsearch-1.5.0-r2.ebuild +++ b/dev-ruby/bsearch/bsearch-1.5.0-r2.ebuild @@ -6,7 +6,7 @@ EAPI=5 RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="doc/*" -USE_RUBY="ruby20 ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" inherit ruby-fakegem DESCRIPTION="A binary search library for Ruby" diff --git a/dev-ruby/buftok/buftok-0.2.0-r1.ebuild b/dev-ruby/buftok/buftok-0.2.0-r1.ebuild index aeb09259c4dc..b4dfba193a58 100644 --- a/dev-ruby/buftok/buftok-0.2.0-r1.ebuild +++ b/dev-ruby/buftok/buftok-0.2.0-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_EXTRADOC="CONTRIBUTING.md README.md" RUBY_FAKEGEM_TASK_DOC="" diff --git a/dev-ruby/facter/facter-3.7.1.ebuild b/dev-ruby/facter/facter-3.7.1.ebuild index cc659bb14f6a..5f534455759d 100644 --- a/dev-ruby/facter/facter-3.7.1.ebuild +++ b/dev-ruby/facter/facter-3.7.1.ebuild @@ -14,7 +14,7 @@ S="${S}/all/${P}" LICENSE="Apache-2.0" SLOT="0" IUSE="debug test" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~hppa ~ppc ~ppc64 x86" BDEPEND=" >=sys-devel/gcc-4.8:* diff --git a/dev-ruby/ice_nine/ice_nine-0.11.2.ebuild b/dev-ruby/ice_nine/ice_nine-0.11.2.ebuild index 9713ae0e9adc..f9bc9a374f6c 100644 --- a/dev-ruby/ice_nine/ice_nine-0.11.2.ebuild +++ b/dev-ruby/ice_nine/ice_nine-0.11.2.ebuild @@ -3,7 +3,7 @@ EAPI=5 -USE_RUBY="ruby21 ruby22 ruby23" +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_EXTRADOC="README.md TODO CONTRIBUTING.md" RUBY_FAKEGEM_RECIPE_TEST="rspec3" diff --git a/dev-ruby/rake/rake-0.9.6-r1.ebuild b/dev-ruby/rake/rake-0.9.6-r1.ebuild index 4d3fa36e44b8..a5f937717f03 100644 --- a/dev-ruby/rake/rake-0.9.6-r1.ebuild +++ b/dev-ruby/rake/rake-0.9.6-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=5 -USE_RUBY="ruby20 ruby21" +USE_RUBY="ruby21 ruby22" RUBY_FAKEGEM_TASK_DOC="" RUBY_FAKEGEM_EXTRADOC="CHANGES README.rdoc TODO" @@ -45,7 +45,7 @@ all_ruby_compile() { } each_ruby_test() { - ${RUBY} -S testrb test/test_*.rb || die + ${RUBY} -S testrb-2 test/test_*.rb || die } all_ruby_install() { diff --git a/dev-ruby/rouge/Manifest b/dev-ruby/rouge/Manifest index 85e44857448a..4ad4b404f4c0 100644 --- a/dev-ruby/rouge/Manifest +++ b/dev-ruby/rouge/Manifest @@ -1,5 +1,4 @@ DIST rouge-1.11.1.tar.gz 491281 SHA256 da89a26cc995b9084e75041fbca8425c57fbe9576339b6b6c10be42fad038cb0 SHA512 0419c4c1ca4fa4acc250349d9fd72164c7f293facc31588e5cffb533f3d321787cd3cc50acd7bfd13037d1ba77ee2f91ec37ddaeeb80180f6958f05d52181f56 WHIRLPOOL a915e367ff2edf776ffc6b8b33b200dba840db2cc263bf70613cbd493bdc951c31a74de6116bde9e811351f4686be042fd6d9b4c8d1eb48197be779bfcde93c8 -DIST rouge-2.0.6.gem 232960 SHA256 40fd67c9d8433aaf1f490d2310611580cd2ecd34230a8358b9a33d039db850a0 SHA512 eef9b10b07b4853fd98c3b1a9df7f0c71f3198b8c21afe16332c4b94176d5233b5e57167886a485e187b6f70502055acd14056965cbc63e444ab6b7a02b53c20 WHIRLPOOL 953625f389aa79e1a465b80c69d26942de2be1b0a21940020664ff650452dcea74e66d909c6e2cdca0b7d1055d55476cb3dae1d111f566b8e613e3dd7ca41050 -DIST rouge-2.0.7.gem 239616 SHA256 2da14eb856839a81ad708883c2495507f50f973f3f46904cc7d87784039ed169 SHA512 9baf3e3170f0fdba9693eee52e7a730dead7319828416aaf8b13541cf761e265af42a116adda19d982cae141cbbd27119fe09f88b68211fb1f2ca73822b9689f WHIRLPOOL 93ac13d7f1ad026911311c4000686f17a735cabcb7844bfb754501597b812939fac6e873f36bfb95410c9ea08ee51beac488eb71092c9bed5c44e03708637e5c DIST rouge-2.1.0.gem 270336 SHA256 24eb33b9834c3ed77c74075699a61d989fa94819314b1dc0177e36f7f77e62a4 SHA512 9ffcb1f23d22c18f3f9d68cdd6b50b8bdf154c47bd27ab656328d7fbef3fe2df544ba6caa10f6ee925aee8f0baeafcac77aa0eaab02dd71144d1269dd72432a7 WHIRLPOOL 23062bef13f18e389244856a4e4bbd11546d2bfee2e8fb480bff4c760dcf419a68f84c86b502690e8234356c22ad8a569775dba2ad775bb61475a37accc417f0 DIST rouge-2.1.1.gem 270336 SHA256 37048e4b8dbd826971d9cae8b75e36e4bcfaccfe4ad2d963829c55890bcec6f2 SHA512 4635e65e8a2dfb05e1bd969b137622e3754931308d23c61dfcee1f604256e5f81ddc633898cda67b66f2bb1b70e9ebc4e79f4057c168579b7b31f6b24b7cf209 WHIRLPOOL f3aaf50d39d421c331f0e8198f73bb39a72ed0e08f90e69e6790655a86b3e7fe773c59da55ed0b9e37d2ea78485a49c117ea20302918092a463c15c6b4f9b870 +DIST rouge-2.2.0.gem 271872 SHA256 1ad808f636f6d852ee1704e68de0b7b54964375557c5a2b9a69167d1e8bdcd38 SHA512 5e2eedd1a35fff7dfb241d8d47d767ceb8f58c024c852830a97313dbec099ecc21e22ef20a167f48eadae351c113a69276cf6a02b9572225a06884dac438ce86 WHIRLPOOL 3c800807fa7f035827bb5b0660a985195325a4dfba820c40139a5b2a4aa502221d9d73d5535a335cf6a165549342ec3e2b7ad60ff9232e92261ef44c1b9e361d diff --git a/dev-ruby/rouge/rouge-2.0.6.ebuild b/dev-ruby/rouge/rouge-2.0.6.ebuild deleted file mode 100644 index ef58d64edc20..000000000000 --- a/dev-ruby/rouge/rouge-2.0.6.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -RUBY_FAKEGEM_TASK_TEST="spec" -RUBY_FAKEGEM_RECIPE_DOC="yard" - -inherit ruby-fakegem - -DESCRIPTION="Yet-another-markdown-parser using a strict syntax definition in pure Ruby" -HOMEPAGE="https://github.com/jneen/rouge" -#SRC_URI="https://github.com/jneen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" - -SLOT="2" -KEYWORDS="~amd64 ~arm ~ppc64 ~x86" -IUSE="" - -ruby_add_bdepend "doc? ( dev-ruby/redcarpet )" -ruby_add_rdepend "dev-ruby/redcarpet - !!dev-ruby/rouge:0" - -RESTRICT="test" -# Depends on dev-ruby/wrong, which is not packaged yet. diff --git a/dev-ruby/rouge/rouge-2.0.7.ebuild b/dev-ruby/rouge/rouge-2.2.0.ebuild similarity index 87% rename from dev-ruby/rouge/rouge-2.0.7.ebuild rename to dev-ruby/rouge/rouge-2.2.0.ebuild index 21965cacfe44..b87df474b268 100644 --- a/dev-ruby/rouge/rouge-2.0.7.ebuild +++ b/dev-ruby/rouge/rouge-2.2.0.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -USE_RUBY="ruby21 ruby22 ruby23" +EAPI=6 +USE_RUBY="ruby21 ruby22 ruby23 ruby24" RUBY_FAKEGEM_TASK_TEST="spec" RUBY_FAKEGEM_RECIPE_DOC="yard" diff --git a/dev-ruby/selenium-webdriver/Manifest b/dev-ruby/selenium-webdriver/Manifest index 63db12d155c2..1c5ee64ef196 100644 --- a/dev-ruby/selenium-webdriver/Manifest +++ b/dev-ruby/selenium-webdriver/Manifest @@ -3,3 +3,4 @@ DIST selenium-webdriver-3.3.0.gem 823808 SHA256 3605ceed7093ac503a0dbf0d64820b91 DIST selenium-webdriver-3.4.3.gem 837632 SHA256 61b29ae4970250f811f559bdf67dc704a9fccb49eb0a53052b6b56c98d552aa0 SHA512 29df75d4a89a710fbd48e67b6c6c72e85a2a266e678de7ce45965da9d108ea01f997cf881996930e41804c1d793e6f4b93e5bef18ecccf19be16ca2538d90c5f WHIRLPOOL edb2ba1dd3abebec61b4ab9282054a2887742cfcfded9e7e9f0b41b696ca0a4be8198128ee84fe84b07f565bda555e083918f381a3cf0e5b3a9f8bad892bbd5a DIST selenium-webdriver-3.4.4.gem 838144 SHA256 4188bcf6db106b97e5961295a736492e72d02fae16942c6d70015410f1df0a57 SHA512 57382abfb5e01781c38688c2d70bfbddd31708b84851b099ce06959f33c12aa3e93ec6455c8c310484ab556fff0fe1d27c02990a9cf0a563cf1259abad38d57d WHIRLPOOL 11fe418dc5dbc73a0c2c9c327f80e7b19042000dcfd5a20108859a738445d6bcbcc0a439505c2962bb39a4a65a0b9bb31f7c1b95cda6c7fd9d1702853f41b203 DIST selenium-webdriver-3.5.0.gem 829952 SHA256 60ac0c326fc2362735fee0e46e1ac840f7ef6fa42870874741f3c2c3c304d970 SHA512 34fa22d24bf6853bffc67b39bc85f5ef085bcc3509229a8124437afaf0d567b9e97bc8d8916b166f5b4e9f5ec1081159f4df40c01051f8bd739e755d1f0497f4 WHIRLPOOL 97786c6967168a2da5f22b1c74746de0610ad93cf0394e32158d557b8b37efe01759bed58160eac4e98f6ae8dc7a3f63305a3a85d17b2af6bd65be0b2cf24713 +DIST selenium-webdriver-3.5.1.gem 830464 SHA256 7fb36c73618ddcd1553313de9e2e3100d4e767ec752f2e2cdb17b553e6d9ee28 SHA512 5a3c0776d4ab6816b107e8e8bca62afd7df9f90b3f757563b2180de4764a4b4499b9afd88668913cbcec9b10df04a94be27a91ad96181f4a4d7e9008e7062fa8 WHIRLPOOL db091e5eb671bf98096bb8c3d41b2814a96bab11f8c6dbce87ae0aa04c98b6c072ac6efe96c5e58617167e46ff818ea10c726887fa430ef3e9c8e460b4a611bc diff --git a/dev-ruby/selenium-webdriver/selenium-webdriver-3.5.1.ebuild b/dev-ruby/selenium-webdriver/selenium-webdriver-3.5.1.ebuild new file mode 100644 index 000000000000..9c991789564e --- /dev/null +++ b/dev-ruby/selenium-webdriver/selenium-webdriver-3.5.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby21 ruby22 ruby23 ruby24" + +# NOTE: this package contains precompiled code. It appears that all +# source code can be found at https://code.google.com/p/selenium/ but the +# repository is not organized in a way so that we can easily rebuild the +# suited shared object. We'll just try our luck with the precompiled +# objects for now. + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="CHANGES README.md" + +RUBY_FAKEGEM_TASK_TEST="" + +RUBY_QA_ALLOWED_LIBS="x_ignore_nofocus.so" +QA_PREBUILT="*/x_ignore_nofocus.so" + +inherit ruby-fakegem + +DESCRIPTION="This gem provides Ruby bindings for WebDriver" +HOMEPAGE="https://github.com/seleniumhq/selenium" + +LICENSE="Apache-2.0" +SLOT="3" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +ruby_add_rdepend ">=dev-ruby/childprocess-0.5.0 + dev-ruby/rubyzip:1" diff --git a/games-misc/games-envd/games-envd-0.ebuild b/games-misc/games-envd/games-envd-0.ebuild index 2824a9677f05..4cf3739f060c 100644 --- a/games-misc/games-envd/games-envd-0.ebuild +++ b/games-misc/games-envd/games-envd-0.ebuild @@ -6,7 +6,7 @@ EAPI=5 inherit multilib games DESCRIPTION="Environment file for gentoo games" -HOMEPAGE="https://www.gentoo.org/proj/en/desktop/games/index.xml" +HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Games" SRC_URI="" LICENSE="GPL-2" diff --git a/gnome-base/gvfs/gvfs-1.32.1.ebuild b/gnome-base/gvfs/gvfs-1.32.1.ebuild index 73995ec2f047..a105e360978f 100644 --- a/gnome-base/gvfs/gvfs-1.32.1.ebuild +++ b/gnome-base/gvfs/gvfs-1.32.1.ebuild @@ -102,7 +102,6 @@ src_configure() { # --disable-obexftp, upstream bug #729945 gnome2_src_configure \ --disable-gdu \ - --disable-hal \ --enable-documentation \ --enable-gcr \ --with-dbus-service-dir="${EPREFIX}"/usr/share/dbus-1/services \ diff --git a/mail-client/claws-mail/claws-mail-3.15.0-r1.ebuild b/mail-client/claws-mail/claws-mail-3.15.0-r2.ebuild similarity index 97% rename from mail-client/claws-mail/claws-mail-3.15.0-r1.ebuild rename to mail-client/claws-mail/claws-mail-3.15.0-r2.ebuild index c92913afd868..6a0a35b07a3d 100644 --- a/mail-client/claws-mail/claws-mail-3.15.0-r1.ebuild +++ b/mail-client/claws-mail/claws-mail-3.15.0-r2.ebuild @@ -4,7 +4,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 ) -inherit autotools gnome2-utils eutils python-single-r1 +inherit autotools gnome2-utils python-single-r1 xdg-utils DESCRIPTION="An email client (and news reader) based on GTK+" HOMEPAGE="http://www.claws-mail.org/" @@ -200,8 +200,10 @@ pkg_postinst() { ewarn "- Plugins with no special dependencies are just built and can be loaded through the interface" ewarn "- The gtkhtml2, dillo and trayicon plugins have been dropped entirely" gnome2_icon_cache_update + xdg_desktop_database_update } pkg_postrm() { gnome2_icon_cache_update + xdg_desktop_database_update } diff --git a/media-gfx/autotrace/Manifest b/media-gfx/autotrace/Manifest deleted file mode 100644 index a6c51613f1e0..000000000000 --- a/media-gfx/autotrace/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST autotrace_0.31.1-15.diff.gz 343197 SHA256 d7084e992ef43db3dec5f912ba757c616b4698aeea17b9c167f2686c3f2df9c9 SHA512 70d3003120e2c0eb82c5f6dc7fd303eec2dcc772b81c22c3624bfa28bb5048016fd923a85f333904af326e201422bde05bed22fe7af5de939542e64b2883a7cb WHIRLPOOL c0c7f64c14aab41d56f3435c63ff40b1a1df51d69285192f2ef3532b03688aa13f120f1b9778ffa9fa9d2e97ab8bce2a229f49819177985e86ae8177f3225c72 -DIST autotrace_0.31.1.orig.tar.gz 362718 SHA256 5a1a923c3335dfd7cbcccb2bbd4cc3d68cafe7713686a2f46a1591ed8a92aff6 SHA512 7d0ec86a41617b3d4336eed72f2974c10f569ff53d450a4c91b4611bb6fdb8c4ff81d04d91e9d20f1b4df592f82c8421e7656af7fa2bdc786ffb4618e9eadd24 WHIRLPOOL 2fda99c453bf4a98ba85abf9853a06fdf8f6d49df5804d377ff4bb9131f21a202eb60749f39afa4ca258432c2ddef4d12e6edce14c69f42a25b26c56fb46fc3d diff --git a/media-gfx/autotrace/autotrace-0.31.1-r7.ebuild b/media-gfx/autotrace/autotrace-0.31.1-r7.ebuild deleted file mode 100644 index bccb26c660a2..000000000000 --- a/media-gfx/autotrace/autotrace-0.31.1-r7.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils - -_dpatch=15 - -DESCRIPTION="A program for converting bitmaps to vector graphics" -HOMEPAGE="http://packages.qa.debian.org/a/autotrace.html http://autotrace.sourceforge.net/" -SRC_URI="mirror://debian/pool/main/a/${PN}/${PN}_${PV}.orig.tar.gz - mirror://debian/pool/main/a/${PN}/${PN}_${PV}-${_dpatch}.diff.gz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd" -IUSE="+imagemagick static-libs" - -RDEPEND="media-libs/libexif:= - media-libs/libpng:0= - >=media-libs/ming-0.4.2:= - >=media-gfx/pstoedit-3.50:= - imagemagick? ( >=media-gfx/imagemagick-6.6.2.5 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog NEWS README ) - -src_prepare() { - epatch "${WORKDIR}"/${PN}_${PV}-${_dpatch}.diff - - epatch \ - "${FILESDIR}"/${P}-{m4,libpng14,pkgconfig}.patch \ - "${FILESDIR}"/${P}-swf-output.patch \ - "${FILESDIR}"/${P}-GetOnePixel.patch \ - "${FILESDIR}"/${P}-libpng-1.5.patch - - # Fix building on PowerPC with Altivec - epatch "${FILESDIR}"/${P}-bool.patch - - # Addresses bug #466078 - epatch "${FILESDIR}"/${P}-CVE-2013-1953.patch - - sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die #468496 - - eautoreconf -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_with imagemagick magick) \ - --with-ming \ - --with-pstoedit -} - -src_install() { - default - prune_libtool_files --all -} diff --git a/media-gfx/autotrace/autotrace-0.31.1-r8.ebuild b/media-gfx/autotrace/autotrace-0.31.1-r8.ebuild deleted file mode 100644 index 565f13b5f927..000000000000 --- a/media-gfx/autotrace/autotrace-0.31.1-r8.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools eutils - -_dpatch=15 - -DESCRIPTION="A program for converting bitmaps to vector graphics" -HOMEPAGE="http://packages.qa.debian.org/a/autotrace.html http://autotrace.sourceforge.net/" -SRC_URI="mirror://debian/pool/main/a/${PN}/${PN}_${PV}.orig.tar.gz - mirror://debian/pool/main/a/${PN}/${PN}_${PV}-${_dpatch}.diff.gz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" -IUSE="+imagemagick static-libs" - -RDEPEND="media-libs/libexif:= - media-libs/libpng:0= - >=media-libs/ming-0.4.2:= - >=media-gfx/pstoedit-3.50:= - imagemagick? ( >=media-gfx/imagemagick-6.6.2.5 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog NEWS README ) - -src_prepare() { - epatch "${WORKDIR}"/${PN}_${PV}-${_dpatch}.diff - - epatch \ - "${FILESDIR}"/${P}-{m4,libpng14,pkgconfig}.patch \ - "${FILESDIR}"/${P}-swf-output.patch \ - "${FILESDIR}"/${P}-GetOnePixel.patch \ - "${FILESDIR}"/${P}-libpng-1.5.patch - - # Fix building on PowerPC with Altivec - epatch "${FILESDIR}"/${P}-bool.patch - - # Addresses bug #466078 - epatch "${FILESDIR}"/${P}-CVE-2013-1953.patch - - # bug #613992 - epatch "${FILESDIR}"/${P}-CVE-2016-7392.patch - - sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.in || die #468496 - - eautoreconf -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_with imagemagick magick) \ - --with-ming \ - --with-pstoedit -} - -src_install() { - default - prune_libtool_files --all -} diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-CVE-2013-1953.patch b/media-gfx/autotrace/files/autotrace-0.31.1-CVE-2013-1953.patch deleted file mode 100644 index 38d7eaece81c..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-CVE-2013-1953.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up autotrace-0.31.1/input-bmp.c.orig autotrace-0.31.1/input-bmp.c ---- autotrace-0.31.1/input-bmp.c.orig 2002-10-10 22:44:08.000000000 +0200 -+++ autotrace-0.31.1/input-bmp.c 2013-06-28 10:24:58.336056959 +0200 -@@ -166,7 +166,7 @@ input_bmp_reader (at_string filename, - /* 36 */ - Maps = 4; - } -- else if (Bitmap_File_Head.biSize <= 64) /* Probably OS/2 2.x */ -+ else if (Bitmap_File_Head.biSize >= 40 && Bitmap_File_Head.biSize <= 64) /* Probably OS/2 2.x */ - { - if (!ReadOK (fd, buffer, Bitmap_File_Head.biSize - 4)) - { diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-CVE-2016-7392.patch b/media-gfx/autotrace/files/autotrace-0.31.1-CVE-2016-7392.patch deleted file mode 100644 index e3bb0303cb8f..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-CVE-2016-7392.patch +++ /dev/null @@ -1,15 +0,0 @@ -Patch from debian to fix CVE-2016-7392 -https://blogs.gentoo.org/ago/2016/09/10/autotrace-heap-based-buffer-overflow-in-pstoedit_suffix_table_init-output-pstoedit-c/ - ---- a/output-pstoedit.c -+++ b/output-pstoedit.c -@@ -84,7 +84,7 @@ - dd_tmp = dd_start; - while (dd_tmp->symbolicname) - dd_tmp++; -- XMALLOC(pstoedit_suffix_table, sizeof(char *) * 2 * (dd_tmp - dd_start) + 1); -+ XMALLOC(pstoedit_suffix_table, sizeof(char *) * (2 * (dd_tmp - dd_start) + 1)); - - #if defined (OUTPUT_PSTOEDIT_DEBUG) && defined(__GNUC__) - fprintf(stderr, "OUTPUT PSTOEDIT BACKEND DEBUG(%s)\n", __FUNCTION__); - diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-GetOnePixel.patch b/media-gfx/autotrace/files/autotrace-0.31.1-GetOnePixel.patch deleted file mode 100644 index 048b7a76be70..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-GetOnePixel.patch +++ /dev/null @@ -1,16 +0,0 @@ -http://cvs.fedoraproject.org/viewvc/rpms/autotrace/devel/autotrace-0.31.1-GetOnePixel.patch?view=markup - ---- input-magick.c -+++ input-magick.c -@@ -83,7 +83,11 @@ - - for(j=0,runcount=0,point=0;jrows;j++) - for(i=0;icolumns;i++) { -+#if (MagickLibVersion < 0x0645) || (MagickLibVersion >= 0x0649) - p=GetOnePixel(image,i,j); -+#else -+ GetOnePixel(image,i,j,pixel); -+#endif - AT_BITMAP_BITS(bitmap)[point++]=pixel->red; /* if gray: red=green=blue */ - if(np==3) { - AT_BITMAP_BITS(bitmap)[point++]=pixel->green; diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-bool.patch b/media-gfx/autotrace/files/autotrace-0.31.1-bool.patch deleted file mode 100644 index 447f10c735ad..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-bool.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- types.h.old 2011-03-03 13:56:30.000000000 +0000 -+++ types.h 2011-03-03 13:59:45.000000000 +0000 -@@ -25,6 +25,9 @@ - #ifndef bool - typedef enum { false = 0, true = 1 } at_bool; - #else -+#ifdef __ALTIVEC__ -+#include -+#endif - #define at_bool bool - #endif - #else diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-libpng-1.5.patch b/media-gfx/autotrace/files/autotrace-0.31.1-libpng-1.5.patch deleted file mode 100644 index a2f748d9b425..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-libpng-1.5.patch +++ /dev/null @@ -1,64 +0,0 @@ -https://sourceforge.net/mailarchive/forum.php?thread_name=01e601cbc22e%24f45d7200%24dd185600%24%40acm.org&forum_name=png-mng-implement - -$NetBSD$ - -Fix build with png-1.5. - ---- input-png.c.orig 2002-10-10 20:44:14.000000000 +0000 -+++ input-png.c -@@ -42,17 +42,17 @@ static png_bytep * read_png(png_structp - - static void handle_warning(png_structp png, const at_string message) { - LOG1("PNG warning: %s", message); -- at_exception_warning((at_exception_type *)png->error_ptr, -+ at_exception_warning((at_exception_type *)png_get_error_ptr(png), - message); -- /* at_exception_fatal((at_exception_type *)at_png->error_ptr, -+ /* at_exception_fatal((at_exception_type *)png_get_error_ptr(at_png), - "PNG warning"); */ - } - - static void handle_error(png_structp png, const at_string message) { - LOG1("PNG error: %s", message); -- at_exception_fatal((at_exception_type *)png->error_ptr, -+ at_exception_fatal((at_exception_type *)png_get_error_ptr(png), - message); -- /* at_exception_fatal((at_exception_type *)at_png->error_ptr, -+ /* at_exception_fatal((at_exception_type *)png_get_error_ptr(at_png), - "PNG error"); */ - - } -@@ -157,8 +157,8 @@ read_png(png_structp png_ptr, png_infop - - png_set_strip_16(png_ptr); - png_set_packing(png_ptr); -- if ((png_ptr->bit_depth < 8) || -- (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE) || -+ if ((png_get_bit_depth(png_ptr, info_ptr) < 8) || -+ (png_get_color_type(png_ptr, info_ptr) == PNG_COLOR_TYPE_PALETTE) || - (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))) - png_set_expand(png_ptr); - -@@ -181,20 +181,10 @@ read_png(png_structp png_ptr, png_infop - PNG_BACKGROUND_GAMMA_FILE, 1, 1.0); - } else - png_set_strip_alpha(png_ptr); -+ png_set_interlace_handling(png_ptr); - png_read_update_info(png_ptr, info_ptr); - -- -- info_ptr->row_pointers = (png_bytepp)png_malloc(png_ptr, -- info_ptr->height * sizeof(png_bytep)); --#ifdef PNG_FREE_ME_SUPPORTED -- info_ptr->free_me |= PNG_FREE_ROWS; --#endif -- for (row = 0; row < (int)info_ptr->height; row++) -- info_ptr->row_pointers[row] = (png_bytep)png_malloc(png_ptr, -- png_get_rowbytes(png_ptr, info_ptr)); -- -- png_read_image(png_ptr, info_ptr->row_pointers); -- info_ptr->valid |= PNG_INFO_IDAT; -+ png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_IDENTITY, NULL); - png_read_end(png_ptr, info_ptr); - return png_get_rows(png_ptr, info_ptr); - } diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-libpng14.patch b/media-gfx/autotrace/files/autotrace-0.31.1-libpng14.patch deleted file mode 100644 index 72f76bcf1535..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-libpng14.patch +++ /dev/null @@ -1,17 +0,0 @@ -http://bugs.gentoo.org/321525 - ---- configure.in -+++ configure.in -@@ -188,9 +188,9 @@ - HAVE_LIBPNG=yes ,,-lz -lm) - if test "x$HAVE_LIBPNG" = "xyes" ; then - LIBPNG_LDFLAGS="-lpng -lz -lm" -- PKGCONFIG_REQS="$PKGCONFIG_REQS, libpng12" -- if pkg-config --exists libpng12 ; then -- LIBPNG_LDFLAGS="`pkg-config --libs libpng12`" -+ PKGCONFIG_REQS="$PKGCONFIG_REQS, libpng" -+ if pkg-config --exists libpng ; then -+ LIBPNG_LDFLAGS="`pkg-config --libs libpng`" - fi - AC_SUBST(LIBPNG_LDFLAGS) - AC_DEFINE(HAVE_LIBPNG) diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-m4.patch b/media-gfx/autotrace/files/autotrace-0.31.1-m4.patch deleted file mode 100644 index 7781be784f01..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-m4.patch +++ /dev/null @@ -1,7 +0,0 @@ ---- autotrace.m4 -+++ autotrace.m4 -@@ -6,3 +6,3 @@ - dnl --AC_DEFUN(AM_PATH_AUTOTRACE, -+AC_DEFUN([AM_PATH_AUTOTRACE], - [dnl diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-pkgconfig.patch b/media-gfx/autotrace/files/autotrace-0.31.1-pkgconfig.patch deleted file mode 100644 index a6371dd3c725..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-pkgconfig.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://bugs.gentoo.org/283534 - ---- configure.in -+++ configure.in -@@ -223,7 +223,7 @@ if test "${swf_header_found}" = yes ; then - AC_CHECK_LIB(ming, Ming_init, - HAVE_LIBSWF=yes,,-lm) - if test "$HAVE_LIBSWF" = "yes" ; then -- PKGCONFIG_REQS="$PKGCONFIG_REQS, ming" -+ PKGCONFIG_REQS="$PKGCONFIG_REQS, libming" - LIBSWF_LDFLAGS="-lming -lm" - AC_SUBST(LIBSWF_LDFLAGS) - AC_DEFINE(HAVE_LIBSWF) diff --git a/media-gfx/autotrace/files/autotrace-0.31.1-swf-output.patch b/media-gfx/autotrace/files/autotrace-0.31.1-swf-output.patch deleted file mode 100644 index b9132c2ac529..000000000000 --- a/media-gfx/autotrace/files/autotrace-0.31.1-swf-output.patch +++ /dev/null @@ -1,30 +0,0 @@ -http://bugs.gentoo.org/122035 - ---- output-swf.c -+++ output-swf.c -@@ -24,7 +24,6 @@ - #include "spline.h" - #include "color.h" - #include "output-swf.h" --#include - - #define FPS 24.0 - #define IMGID 1 - ---- output-swf.h -+++ output-swf.h -@@ -23,6 +23,7 @@ - #define OUTPUTSWF_H - - #include "output.h" -+#include - - int output_swf_writer(FILE* file, at_string name, - int llx, int lly, int urx, int ury, -@@ -31,4 +32,6 @@ - at_msg_func msg_func, - at_address msg_data); - -+void fileOutputMethod(byte b, void *data); -+ - #endif /* Not def: OUTPUTSWF_H */ diff --git a/media-gfx/autotrace/metadata.xml b/media-gfx/autotrace/metadata.xml deleted file mode 100644 index c643d07989f4..000000000000 --- a/media-gfx/autotrace/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - graphics@gentoo.org - Gentoo Graphics Project - - - fonts@gentoo.org - Fonts - - - autotrace - - diff --git a/media-sound/flacon/Manifest b/media-sound/flacon/Manifest index 4bf3cf8ba69c..5594c53c657f 100644 --- a/media-sound/flacon/Manifest +++ b/media-sound/flacon/Manifest @@ -1,2 +1,2 @@ DIST flacon-2.1.1.tar.gz 337500 SHA256 9ece812c0bd68828301d745fbdddaf9ff2d9e572cc205e20d2bbcb093de98a1b SHA512 ef145685770ce4e5cb5f09b42023b5f88feed90f9444dcdb7bb30839d4ee6a4526542b0c3a5595f2b43b99759c7ff6ff4d419b88780d1394baa3654163db20ec WHIRLPOOL 15cd24fe75722aff2d5e0f8307caefa5822739aa60ae9872a23159e382eccab7895c00dfbbcb4b5fd85f8e3da2a11c8756a3f77e8c7309377445e680f6a8bbc3 -DIST flacon-3.0.0.tar.gz 430724 SHA256 5349fdc29c6cb173e7d40260e7ea4ba13ae39f4a144c22028fbfa132ceef5bb3 SHA512 108cca3e456525d39529ecaa6f17ebebafefe50b6e3ccddfeb1a783d363cf8c53e694c549ffdf488d0826c58d2204f89d8a349e703d11ae060a8de83da66b2b9 WHIRLPOOL eb855df7bbd9c4832f7ced4fcd0b73e35be6318caf3795c663df66aba5c6581f365b5ca8f1bad23027d73cf20d03f6ef816416ebc7585422517c7ac99a483a9f +DIST flacon-3.1.1.tar.gz 431743 SHA256 ca5bd24ba61fc06a39e95b4b7fda188af437ad3eff666b55071895bde11bd15a SHA512 13b1abc2edba73e30c9a1b729650e8001a5b8de7e34fe2b599f28277c347539fb50679f8a0e608c87eb7feb1e05e26c7f71fbc3c696f0fa29ae8ae9e20e63cfd WHIRLPOOL 3cab80fe57bf4d7c98d199adbe751c18cc6ee654f90f5dcda03a02d5fd4dfdc0aa8d99b7f88c056b32a6f5f64846634f4c040c45a1c4eb878181d79e21e1cd02 diff --git a/media-sound/flacon/flacon-3.0.0.ebuild b/media-sound/flacon/flacon-3.1.1.ebuild similarity index 98% rename from media-sound/flacon/flacon-3.0.0.ebuild rename to media-sound/flacon/flacon-3.1.1.ebuild index d7f8823db192..9b072d93b5c3 100644 --- a/media-sound/flacon/flacon-3.0.0.ebuild +++ b/media-sound/flacon/flacon-3.1.1.ebuild @@ -81,10 +81,6 @@ src_test() { virtx "${BUILD_DIR}/tests/${PN}_test" } -pkg_preinst() { - gnome2_icon_savelist -} - pkg_postinst() { elog "${PN} optionally supports formats listed below." elog "(List will be empty if all extra packages are installed.)" diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 8aea9876f1db..deecb404393a 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Wed, 16 Aug 2017 06:09:04 +0000 +Wed, 16 Aug 2017 18:39:06 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 8aea9876f1db..deecb404393a 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Wed, 16 Aug 2017 06:09:04 +0000 +Wed, 16 Aug 2017 18:39:06 +0000 diff --git a/metadata/md5-cache/app-admin/logstash-bin-5.4.3 b/metadata/md5-cache/app-admin/logstash-bin-5.4.3-r1 similarity index 89% rename from metadata/md5-cache/app-admin/logstash-bin-5.4.3 rename to metadata/md5-cache/app-admin/logstash-bin-5.4.3-r1 index 3011ddb6574c..eab3dd47d527 100644 --- a/metadata/md5-cache/app-admin/logstash-bin-5.4.3 +++ b/metadata/md5-cache/app-admin/logstash-bin-5.4.3-r1 @@ -9,4 +9,4 @@ RESTRICT=strip SLOT=0 SRC_URI=https://artifacts.elastic.co/downloads/logstash/logstash-5.4.3.zip _eclasses_=user e4b567c44272a719fabf53f0f885d3f7 -_md5_=25347115f171079809c5e3077cfdeb46 +_md5_=ef68635426cfbddd6a0e2f54e0cbab21 diff --git a/metadata/md5-cache/app-admin/mcollective-2.10.5 b/metadata/md5-cache/app-admin/mcollective-2.11.2 similarity index 87% rename from metadata/md5-cache/app-admin/mcollective-2.10.5 rename to metadata/md5-cache/app-admin/mcollective-2.11.2 index 1a1ab03c99f2..3106e1b3e17e 100644 --- a/metadata/md5-cache/app-admin/mcollective-2.10.5 +++ b/metadata/md5-cache/app-admin/mcollective-2.11.2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst prepare setup test unpack DEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) DESCRIPTION=Framework to build server orchestration or parallel job execution systems -EAPI=5 -HOMEPAGE=http://marionette-collective.org/ +EAPI=6 +HOMEPAGE=https://docs.puppet.com/mcollective/ IUSE=doc +client elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 -KEYWORDS=amd64 x86 +KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 RDEPEND=dev-ruby/stomp ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=0 -SRC_URI=https://github.com/puppetlabs/marionette-collective/archive/2.10.5.tar.gz -> mcollective-2.10.5.tar.gz +SRC_URI=https://github.com/puppetlabs/marionette-collective/archive/2.11.2.tar.gz -> mcollective-2.11.2.tar.gz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b39929c9f653e12c3956aa1cf050b2a2 +_md5_=a0db2bb3c24c978770c95aee54fd1751 diff --git a/metadata/md5-cache/app-emulation/lxd-2.11 b/metadata/md5-cache/app-emulation/lxd-2.11 deleted file mode 100644 index b9d7ed487814..000000000000 --- a/metadata/md5-cache/app-emulation/lxd-2.11 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare setup test unpack -DEPEND=>=dev-lang/go-1.7.1 dev-go/go-crypto dev-go/go-net dev-libs/protobuf nls? ( sys-devel/gettext ) test? ( app-misc/jq dev-db/sqlite net-misc/curl sys-devel/gettext ) >=dev-lang/go-1.8 virtual/pkgconfig -DESCRIPTION=Fast, dense and secure container management -EAPI=6 -HOMEPAGE=https://linuxcontainers.org/lxd/introduction/ -IUSE=+daemon nls test linguas_de linguas_el linguas_fr linguas_ja linguas_nl linguas_ru -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=daemon? ( app-arch/xz-utils app-emulation/lxc[seccomp] net-dns/dnsmasq[dhcp,ipv6] net-misc/rsync[xattr] sys-apps/iproute2[ipv6] sys-fs/squashfs-tools virtual/acl ) -SLOT=0 -SRC_URI=https://dev.gentoo.org/~stasibear/distfiles/lxd-2.11.tar.bz2 https://github.com/jessevdk/go-flags/archive/460c7bb0abd6e927f2767cadc91aa6ef776a98b4.tar.gz -> go-flags-460c7bb0abd6e927f2767cadc91aa6ef776a98b4.tar.gz -_eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea golang-base 51a1f13e065f1cff4507685d9cc268c7 golang-build b66349c110e4ddd6203bbe8bf4ae05c1 l10n 2c2e15383ba891d642f51896a7f0ecfe linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd e12dd5e3cf1f359292cea2a70abeba5f toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 vcs-snapshot 03289f51c769cf409d200d2d628cdd6e versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=0a4217020aa126cb278228f60408cf31 diff --git a/metadata/md5-cache/app-emulation/lxd-2.8 b/metadata/md5-cache/app-emulation/lxd-2.8 deleted file mode 100644 index 1ceb45a63f79..000000000000 --- a/metadata/md5-cache/app-emulation/lxd-2.8 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile install postinst prepare setup test unpack -DEPEND=>=dev-lang/go-1.7.1 dev-go/go-crypto dev-go/go-net dev-libs/protobuf nls? ( sys-devel/gettext ) test? ( app-misc/jq dev-db/sqlite net-misc/curl sys-devel/gettext ) >=dev-lang/go-1.8 virtual/pkgconfig -DESCRIPTION=Fast, dense and secure container management -EAPI=6 -HOMEPAGE=https://linuxcontainers.org/lxd/introduction/ -IUSE=+daemon nls test linguas_de linguas_el linguas_fr linguas_ja -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=daemon? ( app-admin/cgmanager app-arch/xz-utils app-emulation/lxc[cgmanager,seccomp] net-dns/dnsmasq[dhcp,ipv6] net-misc/rsync[xattr] sys-apps/iproute2[ipv6] sys-fs/squashfs-tools virtual/acl ) -SLOT=0 -SRC_URI=https://dev.gentoo.org/~stasibear/distfiles/lxd-2.8.tar.bz2 -_eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea golang-base 51a1f13e065f1cff4507685d9cc268c7 golang-build b66349c110e4ddd6203bbe8bf4ae05c1 l10n 2c2e15383ba891d642f51896a7f0ecfe linux-info ca370deef9d44125d829f2eb6ebc83e0 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd e12dd5e3cf1f359292cea2a70abeba5f toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 vcs-snapshot 03289f51c769cf409d200d2d628cdd6e versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=cc3395749d5349c2e04d742ad1e6ca9e diff --git a/metadata/md5-cache/app-emulation/vagrant-1.9.5 b/metadata/md5-cache/app-emulation/vagrant-1.9.5 deleted file mode 100644 index 2d09b77db400..000000000000 --- a/metadata/md5-cache/app-emulation/vagrant-1.9.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby22? ( >=dev-ruby/childprocess-0.6.0[ruby_targets_ruby22] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby22] >=dev-ruby/i18n-0.6.0:*[ruby_targets_ruby22] =dev-ruby/listen-3.1.5[ruby_targets_ruby22] >=dev-ruby/hashicorp-checkpoint-0.1.1[ruby_targets_ruby22] >=dev-ruby/log4r-1.1.9[ruby_targets_ruby22] =dev-ruby/net-ssh-4.1.0:*[ruby_targets_ruby22] >=dev-ruby/net-sftp-2.1[ruby_targets_ruby22] >=dev-ruby/net-scp-1.2.0[ruby_targets_ruby22] || ( >=dev-ruby/rest-client-1.6.0:0[ruby_targets_ruby22] dev-ruby/rest-client:2[ruby_targets_ruby22] ) >=dev-ruby/nokogiri-1.7.1[ruby_targets_ruby22] >=dev-ruby/mime-types-2.6.2:*[ruby_targets_ruby22] =dev-ruby/childprocess-0.6.0[ruby_targets_ruby23] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby23] >=dev-ruby/i18n-0.6.0:*[ruby_targets_ruby23] =dev-ruby/listen-3.1.5[ruby_targets_ruby23] >=dev-ruby/hashicorp-checkpoint-0.1.1[ruby_targets_ruby23] >=dev-ruby/log4r-1.1.9[ruby_targets_ruby23] =dev-ruby/net-ssh-4.1.0:*[ruby_targets_ruby23] >=dev-ruby/net-sftp-2.1[ruby_targets_ruby23] >=dev-ruby/net-scp-1.2.0[ruby_targets_ruby23] || ( >=dev-ruby/rest-client-1.6.0:0[ruby_targets_ruby23] dev-ruby/rest-client:2[ruby_targets_ruby23] ) >=dev-ruby/nokogiri-1.7.1[ruby_targets_ruby23] >=dev-ruby/mime-types-2.6.2:*[ruby_targets_ruby23] =dev-ruby/rake-11.3.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/rake-11.3.0[ruby_targets_ruby23] ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) -DESCRIPTION=A tool for building and distributing development environments -EAPI=5 -HOMEPAGE=http://vagrantup.com/ -IUSE=+virtualbox test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=app-arch/libarchive net-misc/curl virtualbox? ( || ( app-emulation/virtualbox app-emulation/virtualbox-bin ) ) ruby_targets_ruby22? ( >=dev-ruby/childprocess-0.6.0[ruby_targets_ruby22] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby22] >=dev-ruby/i18n-0.6.0:*[ruby_targets_ruby22] =dev-ruby/listen-3.1.5[ruby_targets_ruby22] >=dev-ruby/hashicorp-checkpoint-0.1.1[ruby_targets_ruby22] >=dev-ruby/log4r-1.1.9[ruby_targets_ruby22] =dev-ruby/net-ssh-4.1.0:*[ruby_targets_ruby22] >=dev-ruby/net-sftp-2.1[ruby_targets_ruby22] >=dev-ruby/net-scp-1.2.0[ruby_targets_ruby22] || ( >=dev-ruby/rest-client-1.6.0:0[ruby_targets_ruby22] dev-ruby/rest-client:2[ruby_targets_ruby22] ) >=dev-ruby/nokogiri-1.7.1[ruby_targets_ruby22] >=dev-ruby/mime-types-2.6.2:*[ruby_targets_ruby22] =dev-ruby/childprocess-0.6.0[ruby_targets_ruby23] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby23] >=dev-ruby/i18n-0.6.0:*[ruby_targets_ruby23] =dev-ruby/listen-3.1.5[ruby_targets_ruby23] >=dev-ruby/hashicorp-checkpoint-0.1.1[ruby_targets_ruby23] >=dev-ruby/log4r-1.1.9[ruby_targets_ruby23] =dev-ruby/net-ssh-4.1.0:*[ruby_targets_ruby23] >=dev-ruby/net-sftp-2.1[ruby_targets_ruby23] >=dev-ruby/net-scp-1.2.0[ruby_targets_ruby23] || ( >=dev-ruby/rest-client-1.6.0:0[ruby_targets_ruby23] dev-ruby/rest-client:2[ruby_targets_ruby23] ) >=dev-ruby/nokogiri-1.7.1[ruby_targets_ruby23] >=dev-ruby/mime-types-2.6.2:*[ruby_targets_ruby23] vagrant-1.9.5.tar.gz -_eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=0bd1c3054f328f3f68dd2a28421191fb diff --git a/metadata/md5-cache/app-emulation/vagrant-1.9.7 b/metadata/md5-cache/app-emulation/vagrant-1.9.7 new file mode 100644 index 000000000000..07c094657701 --- /dev/null +++ b/metadata/md5-cache/app-emulation/vagrant-1.9.7 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby22? ( >=dev-ruby/childprocess-0.6.0[ruby_targets_ruby22] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby22] =dev-ruby/listen-3.1.5[ruby_targets_ruby22] >=dev-ruby/hashicorp-checkpoint-0.1.1[ruby_targets_ruby22] >=dev-ruby/log4r-1.1.9[ruby_targets_ruby22] =dev-ruby/net-ssh-4.1.0:*[ruby_targets_ruby22] >=dev-ruby/net-sftp-2.1[ruby_targets_ruby22] >=dev-ruby/net-scp-1.2.0[ruby_targets_ruby22] || ( dev-ruby/rest-client:2[ruby_targets_ruby22] >=dev-ruby/rest-client-1.6.0:0[ruby_targets_ruby22] ) >=dev-ruby/nokogiri-1.7.1[ruby_targets_ruby22] =dev-ruby/childprocess-0.6.0[ruby_targets_ruby23] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby23] =dev-ruby/listen-3.1.5[ruby_targets_ruby23] >=dev-ruby/hashicorp-checkpoint-0.1.1[ruby_targets_ruby23] >=dev-ruby/log4r-1.1.9[ruby_targets_ruby23] =dev-ruby/net-ssh-4.1.0:*[ruby_targets_ruby23] >=dev-ruby/net-sftp-2.1[ruby_targets_ruby23] >=dev-ruby/net-scp-1.2.0[ruby_targets_ruby23] || ( dev-ruby/rest-client:2[ruby_targets_ruby23] >=dev-ruby/rest-client-1.6.0:0[ruby_targets_ruby23] ) >=dev-ruby/nokogiri-1.7.1[ruby_targets_ruby23] =dev-ruby/rake-11.3.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/rake-11.3.0[ruby_targets_ruby23] ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DESCRIPTION=A tool for building and distributing development environments +EAPI=6 +HOMEPAGE=http://vagrantup.com/ +IUSE=+virtualbox test elibc_FreeBSD ruby_targets_ruby22 ruby_targets_ruby23 test test +KEYWORDS=~amd64 +LICENSE=MIT +RDEPEND=app-arch/libarchive net-misc/curl virtualbox? ( || ( app-emulation/virtualbox app-emulation/virtualbox-bin ) ) ruby_targets_ruby22? ( >=dev-ruby/childprocess-0.6.0[ruby_targets_ruby22] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby22] =dev-ruby/listen-3.1.5[ruby_targets_ruby22] >=dev-ruby/hashicorp-checkpoint-0.1.1[ruby_targets_ruby22] >=dev-ruby/log4r-1.1.9[ruby_targets_ruby22] =dev-ruby/net-ssh-4.1.0:*[ruby_targets_ruby22] >=dev-ruby/net-sftp-2.1[ruby_targets_ruby22] >=dev-ruby/net-scp-1.2.0[ruby_targets_ruby22] || ( dev-ruby/rest-client:2[ruby_targets_ruby22] >=dev-ruby/rest-client-1.6.0:0[ruby_targets_ruby22] ) >=dev-ruby/nokogiri-1.7.1[ruby_targets_ruby22] =dev-ruby/childprocess-0.6.0[ruby_targets_ruby23] >=dev-ruby/erubis-2.7.0[ruby_targets_ruby23] =dev-ruby/listen-3.1.5[ruby_targets_ruby23] >=dev-ruby/hashicorp-checkpoint-0.1.1[ruby_targets_ruby23] >=dev-ruby/log4r-1.1.9[ruby_targets_ruby23] =dev-ruby/net-ssh-4.1.0:*[ruby_targets_ruby23] >=dev-ruby/net-sftp-2.1[ruby_targets_ruby23] >=dev-ruby/net-scp-1.2.0[ruby_targets_ruby23] || ( dev-ruby/rest-client:2[ruby_targets_ruby23] >=dev-ruby/rest-client-1.6.0:0[ruby_targets_ruby23] ) >=dev-ruby/nokogiri-1.7.1[ruby_targets_ruby23] vagrant-1.9.7.tar.gz +_eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=58a36f1463c8a0b06a20b75a190f19db diff --git a/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.0 b/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.0 index 744f1a649872..158ba3ebe221 100644 --- a/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.0 +++ b/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.0 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=>=app-i18n/fcitx-4.2.7 dev-libs/libchewing virtual/libintl sys-devel/make >=dev-util/cmake-3.7.2 +DEPEND=>=app-i18n/fcitx-4.2.7 app-i18n/libchewing virtual/libintl sys-devel/make >=dev-util/cmake-3.7.2 DESCRIPTION=Chewing module for Fcitx EAPI=5 HOMEPAGE=http://fcitx-im.org/ KEYWORDS=amd64 ppc ~ppc64 x86 LICENSE=GPL-2 -RDEPEND=>=app-i18n/fcitx-4.2.7 dev-libs/libchewing +RDEPEND=>=app-i18n/fcitx-4.2.7 app-i18n/libchewing SLOT=0 SRC_URI=https://fcitx.googlecode.com/files/fcitx-chewing-0.2.0.tar.xz _eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=527867deffede66eec988923dabe8ade +_md5_=0db7b3eaf037442a485ca704b0315a14 diff --git a/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.2 b/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.2 index 3185a1210a2f..f6c827c7cc94 100644 --- a/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.2 +++ b/metadata/md5-cache/app-i18n/fcitx-chewing-0.2.2 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=>=app-i18n/fcitx-4.2.8 >=dev-libs/libchewing-0.4.0 virtual/libintl sys-devel/make >=dev-util/cmake-3.7.2 +DEPEND=>=app-i18n/fcitx-4.2.8 >=app-i18n/libchewing-0.4.0 virtual/libintl sys-devel/make >=dev-util/cmake-3.7.2 DESCRIPTION=Chewing module for Fcitx EAPI=5 HOMEPAGE=http://fcitx-im.org/ KEYWORDS=amd64 ~ppc ppc64 ~x86 LICENSE=GPL-2 -RDEPEND=>=app-i18n/fcitx-4.2.8 >=dev-libs/libchewing-0.4.0 +RDEPEND=>=app-i18n/fcitx-4.2.8 >=app-i18n/libchewing-0.4.0 SLOT=0 SRC_URI=http://download.fcitx-im.org/fcitx-chewing/fcitx-chewing-0.2.2.tar.xz _eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=b587d920793f6ceae7657b2ae77c8e3a +_md5_=a196d7c9d21671bb436b51a683fff3f3 diff --git a/metadata/md5-cache/app-i18n/ibus-chewing-1.5.1-r1 b/metadata/md5-cache/app-i18n/ibus-chewing-1.5.1-r1 new file mode 100644 index 000000000000..c09787489c17 --- /dev/null +++ b/metadata/md5-cache/app-i18n/ibus-chewing-1.5.1-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=app-i18n/ibus app-i18n/libchewing dev-libs/glib:2 dev-util/gob:2 x11-libs/gtk+:2 x11-libs/libX11 gconf? ( gnome-base/gconf ) nls? ( virtual/libintl ) virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-3.7.2 >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Chinese Chewing engine for IBus +EAPI=6 +HOMEPAGE=https://github.com/ibus/ibus/wiki +IUSE=gconf nls test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=app-i18n/ibus app-i18n/libchewing dev-libs/glib:2 dev-util/gob:2 x11-libs/gtk+:2 x11-libs/libX11 gconf? ( gnome-base/gconf ) nls? ( virtual/libintl ) +SLOT=0 +SRC_URI=https://github.com/definite/ibus-chewing/releases/download/1.5.1/ibus-chewing-1.5.1-Source.tar.gz +_eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b gnome2-utils 8a5e0bf2b8031478ecfeaec753ef4560 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=cbe1f0eaf10f86798da8e0d4d62a169b diff --git a/metadata/md5-cache/app-i18n/ibus-chewing-1.6.1 b/metadata/md5-cache/app-i18n/ibus-chewing-1.6.1 new file mode 100644 index 000000000000..f13912799199 --- /dev/null +++ b/metadata/md5-cache/app-i18n/ibus-chewing-1.6.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=app-i18n/ibus app-i18n/libchewing dev-libs/glib:2 dev-util/gob:2 x11-libs/gtk+:2 x11-libs/libX11 gconf? ( gnome-base/gconf ) nls? ( virtual/libintl ) dev-util/cmake-fedora virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-3.7.2 >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Chinese Chewing engine for IBus +EAPI=6 +HOMEPAGE=https://github.com/ibus/ibus/wiki +IUSE=gconf nls test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=app-i18n/ibus app-i18n/libchewing dev-libs/glib:2 dev-util/gob:2 x11-libs/gtk+:2 x11-libs/libX11 gconf? ( gnome-base/gconf ) nls? ( virtual/libintl ) +SLOT=0 +SRC_URI=https://github.com/definite/ibus-chewing/archive/1.6.1.tar.gz -> ibus-chewing-1.6.1.tar.gz +_eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b gnome2-utils 8a5e0bf2b8031478ecfeaec753ef4560 ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=857eb588962e6b88b327a808bf4a103b diff --git a/metadata/md5-cache/app-i18n/ibus-fbterm-1.0.1 b/metadata/md5-cache/app-i18n/ibus-fbterm-1.0.1 index 422d028ba964..df67b9d16b76 100644 --- a/metadata/md5-cache/app-i18n/ibus-fbterm-1.0.1 +++ b/metadata/md5-cache/app-i18n/ibus-fbterm-1.0.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=- DEPEND=app-i18n/ibus app-i18n/fbterm dev-libs/glib:2 virtual/pkgconfig -DESCRIPTION=ibus-fbterm is a input method for FbTerm based on iBus +DESCRIPTION=IBus client for FbTerm EAPI=6 HOMEPAGE=https://github.com/fujiwarat/ibus-fbterm KEYWORDS=~amd64 ~x86 @@ -8,4 +8,4 @@ LICENSE=GPL-2 RDEPEND=app-i18n/ibus app-i18n/fbterm dev-libs/glib:2 SLOT=0 SRC_URI=https://github.com/fujiwarat/ibus-fbterm/releases/download/1.0.1/ibus-fbterm-1.0.1.tar.gz -_md5_=4b5ed58ae5ff738f0f87574e91ff5728 +_md5_=f1d599ae6aea9ccc9d39d542986487be diff --git a/metadata/md5-cache/app-i18n/ibus-table-1.5.0-r1 b/metadata/md5-cache/app-i18n/ibus-table-1.5.0-r1 index 744859a1bb67..cf2a61a5d539 100644 --- a/metadata/md5-cache/app-i18n/ibus-table-1.5.0-r1 +++ b/metadata/md5-cache/app-i18n/ibus-table-1.5.0-r1 @@ -1,14 +1,14 @@ -DEFINED_PHASES=configure install prepare setup -DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] >=app-i18n/ibus-1.2[python,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] nls? ( virtual/libintl ) nls? ( >=sys-devel/gettext-0.16.1 ) virtual/pkgconfig -DESCRIPTION=The Table Engine for IBus Framework -EAPI=5 +DEFINED_PHASES=configure prepare setup +DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] app-i18n/ibus[python(+),python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/pygobject:3[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] virtual/libiconv nls? ( virtual/libintl ) virtual/pkgconfig nls? ( sys-devel/gettext ) +DESCRIPTION=Tables engines for IBus +EAPI=6 HOMEPAGE=https://github.com/ibus/ibus/wiki IUSE=nls python_targets_python2_7 KEYWORDS=amd64 x86 LICENSE=GPL-2 LGPL-2.1 -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] >=app-i18n/ibus-1.2[python,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] nls? ( virtual/libintl ) +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] app-i18n/ibus[python(+),python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-python/pygobject:3[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] virtual/libiconv nls? ( virtual/libintl ) REQUIRED_USE=python_targets_python2_7 SLOT=0 -SRC_URI=https://ibus.googlecode.com/files/ibus-table-1.5.0.tar.gz -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=20801bf0845899db0dfc66b8d5950747 +SRC_URI=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/ibus-table-1.5.0.tar.gz +_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=0d09ab505281ec8c8dcead56cb97b0f6 diff --git a/metadata/md5-cache/app-i18n/ibus-table-1.9.18 b/metadata/md5-cache/app-i18n/ibus-table-1.9.18 new file mode 100644 index 000000000000..29cc2dc8aa7a --- /dev/null +++ b/metadata/md5-cache/app-i18n/ibus-table-1.9.18 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure prepare setup +DEPEND=python_single_target_python3_4? ( dev-lang/python:3.4[sqlite(+)] ) python_single_target_python3_5? ( dev-lang/python:3.5[sqlite(+)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] app-i18n/ibus[python(+),python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] dev-python/pygobject:3[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] virtual/libiconv nls? ( virtual/libintl ) virtual/pkgconfig nls? ( sys-devel/gettext ) +DESCRIPTION=Tables engines for IBus +EAPI=6 +HOMEPAGE=https://github.com/ibus/ibus/wiki +IUSE=nls python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 LGPL-2.1 +RDEPEND=python_single_target_python3_4? ( dev-lang/python:3.4[sqlite(+)] ) python_single_target_python3_5? ( dev-lang/python:3.5[sqlite(+)] ) python_single_target_python3_6? ( dev-lang/python:3.6[sqlite(+)] ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] app-i18n/ibus[python(+),python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] dev-python/pygobject:3[python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),python_single_target_python3_4(+)?,python_single_target_python3_5(+)?,python_single_target_python3_6(+)?] virtual/libiconv nls? ( virtual/libintl ) +REQUIRED_USE=^^ ( python_single_target_python3_4 python_single_target_python3_5 python_single_target_python3_6 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) python_single_target_python3_6? ( python_targets_python3_6 ) +SLOT=0 +SRC_URI=https://github.com/kaio/ibus-table/releases/download/1.9.18/ibus-table-1.9.18.tar.gz +_eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=59c421c616560e4335729be44be077d9 diff --git a/metadata/md5-cache/app-i18n/ibus-table-chinese-1.4.6 b/metadata/md5-cache/app-i18n/ibus-table-chinese-1.4.6 index 06c5ba7a5a19..7f3ab0c2a48d 100644 --- a/metadata/md5-cache/app-i18n/ibus-table-chinese-1.4.6 +++ b/metadata/md5-cache/app-i18n/ibus-table-chinese-1.4.6 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=>=app-i18n/ibus-table-1.2.0 dev-util/cmake-fedora sys-devel/make >=dev-util/cmake-3.7.2 -DESCRIPTION=Chinese input tables for ibus-table -EAPI=5 +DEPEND=app-i18n/ibus-table dev-util/cmake-fedora sys-devel/make >=dev-util/cmake-3.7.2 +DESCRIPTION=Chinese tables for IBus-Table +EAPI=6 HOMEPAGE=https://github.com/definite/ibus-table-chinese KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 -RDEPEND=>=app-i18n/ibus-table-1.2.0 +RDEPEND=app-i18n/ibus-table SLOT=0 -SRC_URI=https://ibus.googlecode.com/files/ibus-table-chinese-1.4.6-Source.tar.gz +SRC_URI=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/ibus-table-chinese-1.4.6-Source.tar.gz _eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a67a3c14412b2b1653d029cbf702dd19 +_md5_=8bba87925c78047f2cb1717aa69f5c1d diff --git a/metadata/md5-cache/app-i18n/ibus-chewing-1.5.1 b/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.2 similarity index 51% rename from metadata/md5-cache/app-i18n/ibus-chewing-1.5.1 rename to metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.2 index 79cbfa446676..175d4e7917fc 100644 --- a/metadata/md5-cache/app-i18n/ibus-chewing-1.5.1 +++ b/metadata/md5-cache/app-i18n/ibus-table-chinese-1.8.2 @@ -1,13 +1,12 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=x11-libs/libXtst >=app-i18n/ibus-1.3 >=dev-libs/libchewing-0.3.3 x11-libs/gtk+:2 dev-util/gob:2 gnome-base/gconf virtual/pkgconfig sys-devel/make >=dev-util/cmake-3.7.2 -DESCRIPTION=The Chewing IMEngine for IBus Framework -EAPI=5 -HOMEPAGE=https://github.com/ibus/ibus/wiki -IUSE=nls +DEPEND=app-i18n/ibus-table dev-util/cmake-fedora sys-devel/make >=dev-util/cmake-3.7.2 +DESCRIPTION=Chinese tables for IBus-Table +EAPI=6 +HOMEPAGE=https://github.com/definite/ibus-table-chinese KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=x11-libs/libXtst >=app-i18n/ibus-1.3 >=dev-libs/libchewing-0.3.3 x11-libs/gtk+:2 dev-util/gob:2 +LICENSE=GPL-3 +RDEPEND=app-i18n/ibus-table SLOT=0 -SRC_URI=https://github.com/definite/ibus-chewing/releases/download/1.5.1/ibus-chewing-1.5.1-Source.tar.gz +SRC_URI=https://github.com/definite/ibus-table-chinese/archive/1.8.2.tar.gz -> ibus-table-chinese-1.8.2.tar.gz _eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=90b6fdb4e9bbe3bc7aabb018587e33a7 +_md5_=ce017e3c27b893cac286bd887a070d1c diff --git a/metadata/md5-cache/app-i18n/ibus-table-code-1.2.0.20100305 b/metadata/md5-cache/app-i18n/ibus-table-code-1.2.0.20100305 deleted file mode 100644 index eb30cbab7fff..000000000000 --- a/metadata/md5-cache/app-i18n/ibus-table-code-1.2.0.20100305 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install -DEPEND=>=app-i18n/ibus-table-1.2.0.20090912 !>app-i18n/ibus-table-1.3.9 virtual/pkgconfig -DESCRIPTION=The code tables for IBus-Table -EAPI=0 -HOMEPAGE=https://github.com/ibus/ibus/wiki -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=>=app-i18n/ibus-table-1.2.0.20090912 !>app-i18n/ibus-table-1.3.9 -SLOT=0 -SRC_URI=https://ibus.googlecode.com/files/ibus-table-code-1.2.0.20100305.tar.gz -_md5_=19863312ed161f18444c7790b53c50e5 diff --git a/metadata/md5-cache/app-i18n/ibus-table-cyrillic-1.2.0.20100305 b/metadata/md5-cache/app-i18n/ibus-table-cyrillic-1.2.0.20100305 deleted file mode 100644 index 59f571efd7f6..000000000000 --- a/metadata/md5-cache/app-i18n/ibus-table-cyrillic-1.2.0.20100305 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install -DEPEND=>=app-i18n/ibus-table-1.2 virtual/pkgconfig -DESCRIPTION=Translit, Russian Traditional, Yawerty tables for IBus-Table -EAPI=0 -HOMEPAGE=https://github.com/ibus/ibus/wiki -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=>=app-i18n/ibus-table-1.2 -SLOT=0 -SRC_URI=https://ibus.googlecode.com/files/ibus-table-cyrillic-1.2.0.20100305.tar.gz -_md5_=9fc36cea7b91d7eb3f773efc296fcac2 diff --git a/metadata/md5-cache/app-i18n/ibus-table-extraphrase-1.3.9.20110826 b/metadata/md5-cache/app-i18n/ibus-table-extraphrase-1.3.9.20110826 index b7ff3b08318c..5f13792d676e 100644 --- a/metadata/md5-cache/app-i18n/ibus-table-extraphrase-1.3.9.20110826 +++ b/metadata/md5-cache/app-i18n/ibus-table-extraphrase-1.3.9.20110826 @@ -1,11 +1,11 @@ -DEFINED_PHASES=install -DEPEND=>=app-i18n/ibus-table-1.1 virtual/pkgconfig -DESCRIPTION=Chinese extra phrases for ibus-table based IME -EAPI=5 +DEFINED_PHASES=- +DEPEND=app-i18n/ibus-table virtual/pkgconfig +DESCRIPTION=Chinese extra phrases for IBus-Table +EAPI=6 HOMEPAGE=https://github.com/ibus/ibus/wiki KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=app-i18n/ibus-table-1.1 +LICENSE=GPL-3 +RDEPEND=app-i18n/ibus-table SLOT=0 -SRC_URI=https://ibus.googlecode.com/files/ibus-table-extraphrase-1.3.9.20110826.tar.gz -_md5_=eb12483379578acbf811a5d97ba574ca +SRC_URI=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/ibus-table-extraphrase-1.3.9.20110826.tar.gz +_md5_=4f84ea656c3f05c5c66c04ddf09eab9d diff --git a/metadata/md5-cache/app-i18n/ibus-table-latin-1.2.0.20100305 b/metadata/md5-cache/app-i18n/ibus-table-latin-1.2.0.20100305 index 6cffe44e5029..4a726a566b5c 100644 --- a/metadata/md5-cache/app-i18n/ibus-table-latin-1.2.0.20100305 +++ b/metadata/md5-cache/app-i18n/ibus-table-latin-1.2.0.20100305 @@ -1,11 +1,11 @@ -DEFINED_PHASES=install -DEPEND=>=app-i18n/ibus-table-1.2.0.20090912 virtual/pkgconfig -DESCRIPTION=The Latin tables for IBus-Table -EAPI=0 +DEFINED_PHASES=- +DEPEND=app-i18n/ibus-table virtual/pkgconfig +DESCRIPTION=Latin tables for IBus-Table +EAPI=6 HOMEPAGE=https://github.com/ibus/ibus/wiki KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 -RDEPEND=>=app-i18n/ibus-table-1.2.0.20090912 +RDEPEND=app-i18n/ibus-table SLOT=0 -SRC_URI=https://ibus.googlecode.com/files/ibus-table-latin-1.2.0.20100305.tar.gz -_md5_=c9eca89513351a46b2dc8b2bc56a4f8b +SRC_URI=https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/ibus/ibus-table-latin-1.2.0.20100305.tar.gz +_md5_=fbe3f58773e4d70ad57f30e3f98d586f diff --git a/metadata/md5-cache/app-i18n/ibus-table-others-1.3.9 b/metadata/md5-cache/app-i18n/ibus-table-others-1.3.9 new file mode 100644 index 000000000000..792a6467e1f7 --- /dev/null +++ b/metadata/md5-cache/app-i18n/ibus-table-others-1.3.9 @@ -0,0 +1,11 @@ +DEFINED_PHASES=- +DEPEND=app-i18n/ibus-table virtual/pkgconfig +DESCRIPTION=Various tables for IBus-Table +EAPI=6 +HOMEPAGE=https://github.com/moebiuscurve/ibus-table-others +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=app-i18n/ibus-table +SLOT=0 +SRC_URI=https://github.com/moebiuscurve/ibus-table-others/releases/download/1.3.9/ibus-table-others-1.3.9.tar.gz +_md5_=7a4fa834a7a8217685643100f0fe4c4b diff --git a/metadata/md5-cache/app-i18n/ibus-table-tv-1.2.0.20100305 b/metadata/md5-cache/app-i18n/ibus-table-tv-1.2.0.20100305 deleted file mode 100644 index 19dc864b1855..000000000000 --- a/metadata/md5-cache/app-i18n/ibus-table-tv-1.2.0.20100305 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install -DEPEND=>=app-i18n/ibus-table-1.2 virtual/pkgconfig -DESCRIPTION=The Thai and Viqr (Vietnamese) tables for IBus-Table -EAPI=0 -HOMEPAGE=https://github.com/ibus/ibus/wiki -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=app-i18n/ibus-table-1.2 -SLOT=0 -SRC_URI=https://ibus.googlecode.com/files/ibus-table-tv-1.2.0.20100305.tar.gz -_md5_=cf4f4b2d643f1496ba5942a96ecc9ffd diff --git a/metadata/md5-cache/dev-libs/libchewing-0.3.3 b/metadata/md5-cache/app-i18n/libchewing-0.3.3 similarity index 100% rename from metadata/md5-cache/dev-libs/libchewing-0.3.3 rename to metadata/md5-cache/app-i18n/libchewing-0.3.3 diff --git a/metadata/md5-cache/app-i18n/libchewing-0.4.0-r1 b/metadata/md5-cache/app-i18n/libchewing-0.4.0-r1 new file mode 100644 index 000000000000..0f61145d2db0 --- /dev/null +++ b/metadata/md5-cache/app-i18n/libchewing-0.4.0-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install prepare test +DEPEND=dev-db/sqlite:3 virtual/pkgconfig test? ( dev-libs/check sys-libs/ncurses[unicode] ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Library for Chinese Phonetic input method +EAPI=6 +HOMEPAGE=http://chewing.csie.net/ +IUSE=static-libs test +KEYWORDS=amd64 ~ppc ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-db/sqlite:3 +REQUIRED_USE=test? ( static-libs ) +SLOT=0 +SRC_URI=https://github.com/chewing/libchewing/archive/v0.4.0.tar.gz -> libchewing-0.4.0.tar.gz +_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=5f662115f008f0fb2ed9a41d99acb986 diff --git a/metadata/md5-cache/app-i18n/libchewing-0.5.1 b/metadata/md5-cache/app-i18n/libchewing-0.5.1 new file mode 100644 index 000000000000..903e6576ada8 --- /dev/null +++ b/metadata/md5-cache/app-i18n/libchewing-0.5.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install test +DEPEND=dev-db/sqlite:3 virtual/pkgconfig test? ( dev-libs/check sys-libs/ncurses[unicode] ) +DESCRIPTION=Library for Chinese Phonetic input method +EAPI=6 +HOMEPAGE=http://chewing.csie.net/ +IUSE=static-libs test +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-db/sqlite:3 +REQUIRED_USE=test? ( static-libs ) +SLOT=0 +SRC_URI=https://github.com/chewing/libchewing/releases/download/v0.5.1/libchewing-0.5.1.tar.bz2 +_eclasses_=ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=5079f51fe6eaa5bd47e5e74a6dfae895 diff --git a/metadata/md5-cache/app-i18n/xcin-2.5.3_pre3-r2 b/metadata/md5-cache/app-i18n/xcin-2.5.3_pre3-r2 index 321646d9e1ec..f2784faf61f0 100644 --- a/metadata/md5-cache/app-i18n/xcin-2.5.3_pre3-r2 +++ b/metadata/md5-cache/app-i18n/xcin-2.5.3_pre3-r2 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install unpack -DEPEND=>=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) dev-libs/libchewing x11-libs/libX11 nls? ( sys-devel/gettext ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=>=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) app-i18n/libchewing x11-libs/libX11 nls? ( sys-devel/gettext ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=Chinese X Input Method EAPI=0 HOMEPAGE=http://cle.linux.org.tw/xcin/ IUSE=debug nls unicode KEYWORDS=~amd64 ppc x86 LICENSE=XCIN GPL-2 -RDEPEND=>=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) dev-libs/libchewing x11-libs/libX11 +RDEPEND=>=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) app-i18n/libchewing x11-libs/libX11 SLOT=0 SRC_URI=mirror://debian/pool/main/x/xcin/xcin_2.5.2.99.pre2+cvs20030224.orig.tar.gz mirror://debian/pool/main/x/xcin/xcin_2.5.2.99.pre2+cvs20030224-1.4.diff.gz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=2065d11ffad4a872d082b3b1feb71d39 +_md5_=8086469b37c36fbcd549557bc828f920 diff --git a/metadata/md5-cache/app-i18n/xcin-2.5.3_pre3-r3 b/metadata/md5-cache/app-i18n/xcin-2.5.3_pre3-r3 index 3de770c9143f..0abd9242d283 100644 --- a/metadata/md5-cache/app-i18n/xcin-2.5.3_pre3-r3 +++ b/metadata/md5-cache/app-i18n/xcin-2.5.3_pre3-r3 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare -DEPEND=>=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) dev-libs/libchewing x11-libs/libX11 nls? ( sys-devel/gettext ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=>=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) app-i18n/libchewing x11-libs/libX11 nls? ( sys-devel/gettext ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=Chinese X Input Method EAPI=4 HOMEPAGE=http://cle.linux.org.tw/xcin/ IUSE=debug nls unicode KEYWORDS=~amd64 ~ppc ~x86 LICENSE=XCIN GPL-2 -RDEPEND=>=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) dev-libs/libchewing x11-libs/libX11 +RDEPEND=>=sys-libs/db-4.5 >=app-i18n/libtabe-0.2.6 unicode? ( media-fonts/hkscs-ming media-fonts/arphicfonts ) app-i18n/libchewing x11-libs/libX11 SLOT=0 SRC_URI=mirror://debian/pool/main/x/xcin/xcin_2.5.2.99.pre2+cvs20030224.orig.tar.gz mirror://debian/pool/main/x/xcin/xcin_2.5.2.99.pre2+cvs20030224-1.4.diff.gz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=ef05d8b2b3929939b68054d6aca5e9d5 +_md5_=e0171e6bf81ce170c2564b1635a8ab79 diff --git a/metadata/md5-cache/app-portage/mirrorselect-2.2.0.1 b/metadata/md5-cache/app-portage/mirrorselect-2.2.0.1 index dfcb5cf66da7..56eda11cf663 100644 --- a/metadata/md5-cache/app-portage/mirrorselect-2.2.0.1 +++ b/metadata/md5-cache/app-portage/mirrorselect-2.2.0.1 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] DESCRIPTION=Tool to help select distfiles mirrors for Gentoo EAPI=5 -HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Mirrorselect +HOMEPAGE=https://wiki.gentoo.org/wiki/Mirrorselect IUSE=python_targets_python2_7 python_targets_python3_4 KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux LICENSE=GPL-2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~dolsen/distfiles/mirrorselect-2.2.0.1.tar.gz _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c prefix df8265631f8bf5f5df387e9b987121f9 python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=9a6eb331aafe9180b04fb6f379773df3 +_md5_=4b8bb6457b41d95727b3e7a621bfccb8 diff --git a/metadata/md5-cache/app-portage/mirrorselect-2.2.2 b/metadata/md5-cache/app-portage/mirrorselect-2.2.2 index 11d641982154..2141815817d6 100644 --- a/metadata/md5-cache/app-portage/mirrorselect-2.2.2 +++ b/metadata/md5-cache/app-portage/mirrorselect-2.2.2 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] DESCRIPTION=Tool to help select distfiles mirrors for Gentoo EAPI=5 -HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Mirrorselect +HOMEPAGE=https://wiki.gentoo.org/wiki/Mirrorselect IUSE=python_targets_python2_7 python_targets_python3_4 KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd LICENSE=GPL-2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~dolsen/releases/mirrorselect/mirrorselect-2.2.2.tar.gz https://dev.gentoo.org/~dolsen/releases/mirrorselect/mirrorselect-test _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c prefix df8265631f8bf5f5df387e9b987121f9 python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=08cd8e3a7560f046daaccb82ba0ffe9e +_md5_=366bcad0e5e6ec83a410ab7b60679c1d diff --git a/metadata/md5-cache/app-portage/mirrorselect-2.2.2-r2 b/metadata/md5-cache/app-portage/mirrorselect-2.2.2-r2 index 9fdbfb81b1e1..f3d0b03ab1ef 100644 --- a/metadata/md5-cache/app-portage/mirrorselect-2.2.2-r2 +++ b/metadata/md5-cache/app-portage/mirrorselect-2.2.2-r2 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] DESCRIPTION=Tool to help select distfiles mirrors for Gentoo EAPI=5 -HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Mirrorselect +HOMEPAGE=https://wiki.gentoo.org/wiki/Mirrorselect IUSE=python_targets_python2_7 python_targets_python3_4 KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd LICENSE=GPL-2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~dolsen/releases/mirrorselect/mirrorselect-2.2.2.tar.gz https://dev.gentoo.org/~dolsen/releases/mirrorselect/mirrorselect-test _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c prefix df8265631f8bf5f5df387e9b987121f9 python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=ed3361cf9bda6701590fc727cbcc0d22 +_md5_=0fac07cca7bbae1e89d3ef9ff0f18df3 diff --git a/metadata/md5-cache/app-portage/mirrorselect-2.2.3 b/metadata/md5-cache/app-portage/mirrorselect-2.2.3 index 49e1255bdc9d..7503b161213e 100644 --- a/metadata/md5-cache/app-portage/mirrorselect-2.2.3 +++ b/metadata/md5-cache/app-portage/mirrorselect-2.2.3 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) python_targets_python3_5? ( dev-lang/python:3.5[xml] ) python_targets_python3_6? ( dev-lang/python:3.6[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Tool to help select distfiles mirrors for Gentoo EAPI=5 -HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Mirrorselect +HOMEPAGE=https://wiki.gentoo.org/wiki/Mirrorselect IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd LICENSE=GPL-2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targe SLOT=0 SRC_URI=https://dev.gentoo.org/~dolsen/releases/mirrorselect/mirrorselect-2.2.3.tar.gz https://dev.gentoo.org/~dolsen/releases/mirrorselect/mirrorselect-test _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c prefix df8265631f8bf5f5df387e9b987121f9 python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=0ce788e69bc32405b1e00bffc4dd5181 +_md5_=abe3de7483396618089143129606a56c diff --git a/metadata/md5-cache/app-portage/mirrorselect-9999 b/metadata/md5-cache/app-portage/mirrorselect-9999 index c276d529c872..17616785773e 100644 --- a/metadata/md5-cache/app-portage/mirrorselect-9999 +++ b/metadata/md5-cache/app-portage/mirrorselect-9999 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile configure install postinst prepare test unpack DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-vcs/git-1.8.2.1 DESCRIPTION=Tool to help select distfiles mirrors for Gentoo EAPI=5 -HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Mirrorselect +HOMEPAGE=https://wiki.gentoo.org/wiki/Mirrorselect IUSE=python_targets_python2_7 python_targets_python3_4 LICENSE=GPL-2 RDEPEND=dev-util/dialog net-analyzer/netselect =dev-python/ssl-fetch-9999[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 ) SLOT=0 _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea git-r3 cbafa3261c37c7e3af44bb16a34ea390 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c prefix df8265631f8bf5f5df387e9b987121f9 python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=ae51889d250dda8bf2d7ae3223efc482 +_md5_=820e726b4ebf9742b8b8d8a30d2e2e8b diff --git a/metadata/md5-cache/app-text/par-1.52 b/metadata/md5-cache/app-text/par-1.52-r1 similarity index 84% rename from metadata/md5-cache/app-text/par-1.52 rename to metadata/md5-cache/app-text/par-1.52-r1 index bca633cd615a..73920ded84ef 100644 --- a/metadata/md5-cache/app-text/par-1.52 +++ b/metadata/md5-cache/app-text/par-1.52-r1 @@ -1,12 +1,11 @@ DEFINED_PHASES=compile install DEPEND=!dev-util/par !app-arch/par DESCRIPTION=a paragraph reformatter, vaguely similar to fmt, but better -EAPI=0 +EAPI=6 HOMEPAGE=http://www.nicemice.net/par/ KEYWORDS=~amd64 ~mips ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=freedist -RDEPEND=!dev-util/par !app-arch/par SLOT=0 SRC_URI=http://www.nicemice.net/par/Par152.tar.gz _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=aac68b7d88525d078a025a04cd1632fd +_md5_=4b8242268fe8e39d4254dbb0d4f947b8 diff --git a/metadata/md5-cache/app-text/tabler-2-r1 b/metadata/md5-cache/app-text/tabler-2-r1 new file mode 100644 index 000000000000..67acb3a34a9e --- /dev/null +++ b/metadata/md5-cache/app-text/tabler-2-r1 @@ -0,0 +1,9 @@ +DEFINED_PHASES=install +DESCRIPTION=A utility to create text art tables from delimited input +EAPI=6 +HOMEPAGE=https://sourceforge.net/projects/tabler/ +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +SLOT=0 +SRC_URI=mirror://sourceforge/tabler/tabler-2.tar.gz +_md5_=05b281eaefb104299acdb5644fb79490 diff --git a/metadata/md5-cache/dev-db/pgagent-3.4.0-r2 b/metadata/md5-cache/dev-db/pgagent-3.4.0-r2 index 65598c8b2f56..9839be211110 100644 --- a/metadata/md5-cache/dev-db/pgagent-3.4.0-r2 +++ b/metadata/md5-cache/dev-db/pgagent-3.4.0-r2 @@ -9,4 +9,4 @@ RDEPEND=dev-db/postgresql:* x11-libs/wxGTK:3.0 SLOT=0 SRC_URI=mirror://postgresql/pgadmin3/release/pgagent/pgAgent-3.4.0-Source.tar.gz _eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 versionator c80ccf29e90adea7c5cae94b42eb76d0 wxwidgets 04e063b0eff26daaea83d859dd9d6e05 -_md5_=89649a0a414c03572a4adaf23ed966aa +_md5_=873ead219d3d96e2422484a76826c2e0 diff --git a/metadata/md5-cache/dev-libs/libchewing-0.3.3-r1 b/metadata/md5-cache/dev-libs/libchewing-0.3.3-r1 deleted file mode 100644 index 9bed9fc72b05..000000000000 --- a/metadata/md5-cache/dev-libs/libchewing-0.3.3-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare test -DEPEND=virtual/pkgconfig test? ( sys-libs/ncurses[unicode] >=dev-libs/check-0.9.4 ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Library for Chinese Phonetic input method -EAPI=5 -HOMEPAGE=http://chewing.csie.net/ -IUSE=static-libs test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=http://chewing.csie.net/download/libchewing/libchewing-0.3.3.tar.bz2 -_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=b5e03403bd3571459207e2356b6e0d56 diff --git a/metadata/md5-cache/dev-libs/libchewing-0.4.0-r1 b/metadata/md5-cache/dev-libs/libchewing-0.4.0-r1 deleted file mode 100644 index 600776818588..000000000000 --- a/metadata/md5-cache/dev-libs/libchewing-0.4.0-r1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare test -DEPEND=virtual/pkgconfig test? ( sys-libs/ncurses[unicode] >=dev-libs/check-0.9.4 ) dev-db/sqlite:3 >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Library for Chinese Phonetic input method -EAPI=5 -HOMEPAGE=http://chewing.csie.net/ -IUSE=static-libs test -KEYWORDS=amd64 ~ppc ppc64 ~x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/chewing/libchewing/archive/v0.4.0.tar.gz -> libchewing-0.4.0.tar.gz -_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=ddb1826f0669dfd7022c4c5587672ca5 diff --git a/metadata/md5-cache/dev-libs/libpcre2-10.30 b/metadata/md5-cache/dev-libs/libpcre2-10.30 new file mode 100644 index 000000000000..a77d76a8f958 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libpcre2-10.30 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) libedit? ( dev-libs/libedit ) readline? ( sys-libs/readline:0= ) virtual/pkgconfig userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=app-portage/elt-patches-20170422 +DESCRIPTION=Perl-compatible regular expression library +EAPI=6 +HOMEPAGE=http://www.pcre.org/ +IUSE=bzip2 +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs unicode zlib abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=BSD +RDEPEND=bzip2? ( app-arch/bzip2 ) zlib? ( sys-libs/zlib ) libedit? ( dev-libs/libedit ) readline? ( sys-libs/readline:0= ) +REQUIRED_USE=?? ( libedit readline ) +SLOT=0 +SRC_URI=mirror://sourceforge/pcre/pcre2-10.30.tar.bz2 ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.30.tar.bz2 +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=97f8952d5dc9e749f8cd0b4e2c0c8883 diff --git a/metadata/md5-cache/dev-python/cryptography-2.0.3 b/metadata/md5-cache/dev-python/cryptography-2.0.3 new file mode 100644 index 000000000000..2f6b1408b03d --- /dev/null +++ b/metadata/md5-cache/dev-python/cryptography-2.0.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=!libressl? ( >=dev-libs/openssl-1.0.2:0=[-bindist(-)] ) libressl? ( dev-libs/libressl ) python_targets_python2_7? ( >=dev-python/cffi-1.7:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_4? ( >=dev-python/cffi-1.7:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_5? ( >=dev-python/cffi-1.7:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_6? ( >=dev-python/cffi-1.7:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_pypy? ( dev-python/enum34[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_pypy3? ( dev-python/enum34[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/enum34[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) >=dev-python/idna-2.1[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/asn1crypto-0.21.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/six-1.4.1[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] virtual/python-ipaddress[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/setuptools-1.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( ~dev-python/cryptography-vectors-2.0.3[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/hypothesis[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/iso8601[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pretend[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pyasn1-modules[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/pytest-2.9.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pytz[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0=[threads(+)] ) python_targets_pypy3? ( >=virtual/pypy3-5:0=[threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DESCRIPTION=Library providing cryptographic recipes and primitives +EAPI=6 +HOMEPAGE=https://github.com/pyca/cryptography/ https://pypi.python.org/pypi/cryptography/ +IUSE=libressl test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 +LICENSE=|| ( Apache-2.0 BSD ) +RDEPEND=!libressl? ( >=dev-libs/openssl-1.0.2:0=[-bindist(-)] ) libressl? ( dev-libs/libressl ) python_targets_python2_7? ( >=dev-python/cffi-1.7:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_4? ( >=dev-python/cffi-1.7:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_5? ( >=dev-python/cffi-1.7:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_python3_6? ( >=dev-python/cffi-1.7:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-),python_targets_python3_6(-)?,-python_single_target_python3_6(-)] ) python_targets_pypy? ( dev-python/enum34[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_pypy3? ( dev-python/enum34[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/enum34[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_pypy3(-)?,-python_single_target_pypy3(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) >=dev-python/idna-2.1[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/asn1crypto-0.21.0[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/six-1.4.1[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] virtual/python-ipaddress[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0=[threads(+)] ) python_targets_pypy3? ( >=virtual/pypy3-5:0=[threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +SLOT=0 +SRC_URI=mirror://pypi/c/cryptography/cryptography-2.0.3.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=668c2049c270bd9523e105350f1623d4 diff --git a/metadata/md5-cache/dev-python/cryptography-vectors-2.0.3 b/metadata/md5-cache/dev-python/cryptography-vectors-2.0.3 new file mode 100644 index 000000000000..48a14fa1eb4e --- /dev/null +++ b/metadata/md5-cache/dev-python/cryptography-vectors-2.0.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DESCRIPTION=Test vectors for the cryptography package +EAPI=6 +HOMEPAGE=https://pypi.python.org/pypi/cryptography-vectors/ +IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd +LICENSE=|| ( Apache-2.0 BSD ) +RDEPEND=python_targets_pypy? ( >=virtual/pypy-5:0= ) python_targets_pypy3? ( >=virtual/pypy3-5:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +SLOT=0 +SRC_URI=mirror://pypi/c/cryptography-vectors/cryptography_vectors-2.0.3.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=62e5d8e8536cbec9fe926ca60ad64c51 diff --git a/metadata/md5-cache/dev-python/dbusmock-0.16.9 b/metadata/md5-cache/dev-python/dbusmock-0.16.9 new file mode 100644 index 000000000000..8d90b8ab82f0 --- /dev/null +++ b/metadata/md5-cache/dev-python/dbusmock-0.16.9 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pygobject:3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-python/setuptools-17.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[xml(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DESCRIPTION=Easily create mock objects on D-Bus for software testing +EAPI=6 +HOMEPAGE=https://github.com/martinpitt/python-dbusmock +IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~amd64 ~arm ~ia64 ~ppc ~x86 +LICENSE=LGPL-3+ +RDEPEND=dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pygobject:3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[xml(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[xml(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[xml(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-dbusmock/python-dbusmock-0.16.9.tar.gz -> dbusmock-0.16.9.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=af80d0b3ff83174765cfa3d476f91e75 diff --git a/metadata/md5-cache/dev-python/python-slip-0.6.0 b/metadata/md5-cache/dev-python/python-slip-0.6.0 deleted file mode 100644 index b8b1b1aa86b1..000000000000 --- a/metadata/md5-cache/dev-python/python-slip-0.6.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=Miscellaneous convenience, extension and workaround code for Python -EAPI=5 -HOMEPAGE=https://fedorahosted.org/python-slip/ -IUSE=dbus selinux python_targets_python2_7 python_targets_python3_4 -KEYWORDS=amd64 x86 -LICENSE=GPL-2+ -RDEPEND=dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/pygobject:3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] sys-auth/polkit ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 ) -SLOT=0 -SRC_URI=https://fedorahosted.org/released/python-slip/python-slip-0.6.0.tar.bz2 -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=cf8ae136ed4779a25c8b747641e8e42a diff --git a/metadata/md5-cache/dev-python/python-slip-0.6.1 b/metadata/md5-cache/dev-python/python-slip-0.6.1 index d462a98c17bb..096ae04a86b4 100644 --- a/metadata/md5-cache/dev-python/python-slip-0.6.1 +++ b/metadata/md5-cache/dev-python/python-slip-0.6.1 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) python_targets_python3_5? ( dev-lang/python:3.5[xml] ) python_targets_python3_6? ( dev-lang/python:3.6[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] DESCRIPTION=Miscellaneous convenience, extension and workaround code for Python EAPI=5 -HOMEPAGE=https://fedorahosted.org/python-slip/ +HOMEPAGE=https://github.com/nphilipp/python-slip IUSE=dbus selinux python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 KEYWORDS=amd64 ~arm64 x86 LICENSE=GPL-2+ @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targe SLOT=0 SRC_URI=https://fedorahosted.org/released/python-slip/python-slip-0.6.1.tar.bz2 _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=b106bdfe774764f719aa733a0f11d626 +_md5_=68d7f83bfb1eb6a2f442f38f2f208fcd diff --git a/metadata/md5-cache/dev-python/python-slip-0.6.5 b/metadata/md5-cache/dev-python/python-slip-0.6.5 new file mode 100644 index 000000000000..878ec26efb8e --- /dev/null +++ b/metadata/md5-cache/dev-python/python-slip-0.6.5 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) python_targets_python3_5? ( dev-lang/python:3.5[xml] ) python_targets_python3_6? ( dev-lang/python:3.6[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DESCRIPTION=Miscellaneous convenience, extension and workaround code for Python +EAPI=5 +HOMEPAGE=https://github.com/nphilipp/python-slip +IUSE=dbus selinux python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=GPL-2+ +RDEPEND=dbus? ( dev-python/dbus-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/pygobject:3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] sys-auth/polkit ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_4? ( dev-lang/python:3.4[xml] ) python_targets_python3_5? ( dev-lang/python:3.5[xml] ) python_targets_python3_6? ( dev-lang/python:3.6[xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +SLOT=0 +SRC_URI=https://github.com/nphilipp/python-slip/releases/download/python-slip-0.6.5/python-slip-0.6.5.tar.bz2 +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=650fca97a4f70462edfd34acdd717b7c 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 659f95e66b12..0f429e64c02a 100644 --- a/metadata/md5-cache/dev-ruby/annoy-0.5.6-r1 +++ b/metadata/md5-cache/dev-ruby/annoy-0.5.6-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) DESCRIPTION=Like your annoying friend that asks you questions all the time EAPI=5 HOMEPAGE=http://solutious.com/ -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test +IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby23] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/highline-1.5.0[ruby_targets_ruby24] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=0 SRC_URI=mirror://rubygems/annoy-0.5.6.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a5f5b0474953c8b50c2fa90f36dd6a3f +_md5_=a4fcf248e9bc9e878c821b25bffca2c2 diff --git a/metadata/md5-cache/dev-ruby/arel-helpers-2.4.0 b/metadata/md5-cache/dev-ruby/arel-helpers-2.4.0 index 0941edb55b3c..3acf76938c70 100644 --- a/metadata/md5-cache/dev-ruby/arel-helpers-2.4.0 +++ b/metadata/md5-cache/dev-ruby/arel-helpers-2.4.0 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby21? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby21] dev-ruby/activerecord:5.0[ruby_targets_ruby21] dev-ruby/activerecord:4.2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby22] dev-ruby/activerecord:5.0[ruby_targets_ruby22] dev-ruby/activerecord:4.2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby23] dev-ruby/activerecord:5.0[ruby_targets_ruby23] dev-ruby/activerecord:4.2[ruby_targets_ruby23] ) ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rr[ruby_targets_ruby21] dev-ruby/activerecord[ruby_targets_ruby21,sqlite] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rr[ruby_targets_ruby22] dev-ruby/activerecord[ruby_targets_ruby22,sqlite] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rr[ruby_targets_ruby23] dev-ruby/activerecord[ruby_targets_ruby23,sqlite] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby22] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby23] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DEPEND=test? ( ruby_targets_ruby21? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby21] dev-ruby/activerecord:5.0[ruby_targets_ruby21] dev-ruby/activerecord:4.2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby22] dev-ruby/activerecord:5.0[ruby_targets_ruby22] dev-ruby/activerecord:4.2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby23] dev-ruby/activerecord:5.0[ruby_targets_ruby23] dev-ruby/activerecord:4.2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby24] dev-ruby/activerecord:5.0[ruby_targets_ruby24] dev-ruby/activerecord:4.2[ruby_targets_ruby24] ) ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rr[ruby_targets_ruby21] dev-ruby/activerecord[ruby_targets_ruby21,sqlite] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rr[ruby_targets_ruby22] dev-ruby/activerecord[ruby_targets_ruby22,sqlite] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rr[ruby_targets_ruby23] dev-ruby/activerecord[ruby_targets_ruby23,sqlite] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rr[ruby_targets_ruby24] dev-ruby/activerecord[ruby_targets_ruby24,sqlite] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby22] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby23] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby24] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) DESCRIPTION=Tools to help construct database queries EAPI=5 HOMEPAGE=https://github.com/camertron/arel-helpers -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test test KEYWORDS=~amd64 ~arm LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby21] dev-ruby/activerecord:5.0[ruby_targets_ruby21] dev-ruby/activerecord:4.2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby22] dev-ruby/activerecord:5.0[ruby_targets_ruby22] dev-ruby/activerecord:4.2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby23] dev-ruby/activerecord:5.0[ruby_targets_ruby23] dev-ruby/activerecord:4.2[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby21] dev-ruby/activerecord:5.0[ruby_targets_ruby21] dev-ruby/activerecord:4.2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby22] dev-ruby/activerecord:5.0[ruby_targets_ruby22] dev-ruby/activerecord:4.2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby23] dev-ruby/activerecord:5.0[ruby_targets_ruby23] dev-ruby/activerecord:4.2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( || ( dev-ruby/activerecord:5.1[ruby_targets_ruby24] dev-ruby/activerecord:5.0[ruby_targets_ruby24] dev-ruby/activerecord:4.2[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=0 SRC_URI=mirror://rubygems/arel-helpers-2.4.0.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=062c035baaaed89d562545f2d5cf0dae +_md5_=7dd8323ac53a6ba57afefa941e1a8049 diff --git a/metadata/md5-cache/dev-ruby/astrolabe-1.3.1 b/metadata/md5-cache/dev-ruby/astrolabe-1.3.1 index 6ce54c3d753e..733deb808193 100644 --- a/metadata/md5-cache/dev-ruby/astrolabe-1.3.1 +++ b/metadata/md5-cache/dev-ruby/astrolabe-1.3.1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/yard[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/yard[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby22] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby23] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/yard[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/yard[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/yard[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby22] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby23] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby24] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) DESCRIPTION=An object-oriented AST extension for Parser EAPI=5 HOMEPAGE=https://github.com/yujinakayama/astrolabe -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby23] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/parser-2.2.0_pre3[ruby_targets_ruby24] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=0 SRC_URI=mirror://rubygems/astrolabe-1.3.1.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a127c97f2ac2a45b03799b8efeff7ed5 +_md5_=cab2d8a44a64fb603bc7e42478fe33f9 diff --git a/metadata/md5-cache/dev-ruby/binding_of_caller-0.7.2 b/metadata/md5-cache/dev-ruby/binding_of_caller-0.7.2 index 1e59fff57d93..9967defe2a42 100644 --- a/metadata/md5-cache/dev-ruby/binding_of_caller-0.7.2 +++ b/metadata/md5-cache/dev-ruby/binding_of_caller-0.7.2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/bacon[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/bacon[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/bacon[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/bacon[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/bacon[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/bacon[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/bacon[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) DESCRIPTION=Retrieve the binding of a method's caller EAPI=5 HOMEPAGE=https://github.com/banister/binding_of_caller -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby23] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/debug_inspector-0.0.1[ruby_targets_ruby24] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=0 SRC_URI=mirror://rubygems/binding_of_caller-0.7.2.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=5955187677653daf664cd66832993c97 +_md5_=2b0d5ba1e78fc6e7d144e3c81cccc08c diff --git a/metadata/md5-cache/dev-ruby/bogus-0.1.6 b/metadata/md5-cache/dev-ruby/bogus-0.1.6 index 12bfd62c90e6..4c7f08a2fff4 100644 --- a/metadata/md5-cache/dev-ruby/bogus-0.1.6 +++ b/metadata/md5-cache/dev-ruby/bogus-0.1.6 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) -DESCRIPTION=Decreases the need for integration tests by ensuring that the things you stub or mock actually exist. +DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) +DESCRIPTION=Ensuring that the things you stub or mock actually exist EAPI=6 HOMEPAGE=https://github.com/psyho/bogus -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby23] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/dependor-0.0.4[ruby_targets_ruby24] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=0 SRC_URI=mirror://rubygems/bogus-0.1.6.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=a0327061e03e33c1e1dece6ecd6db575 +_md5_=fc33d4a71055f32a712735d4c2f95a5a diff --git a/metadata/md5-cache/dev-ruby/bones-3.8.4 b/metadata/md5-cache/dev-ruby/bones-3.8.4 deleted file mode 100644 index 59caa0514517..000000000000 --- a/metadata/md5-cache/dev-ruby/bones-3.8.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby21? ( dev-ruby/builder[ruby_targets_ruby21] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby21] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby21] >=dev-ruby/rake-12[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/builder[ruby_targets_ruby22] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby22] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby22] >=dev-ruby/rake-12[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/builder[ruby_targets_ruby23] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby23] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby23] >=dev-ruby/rake-12[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby22] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby23] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) -DESCRIPTION=Tool that creates new Ruby projects from a code skeleton -EAPI=5 -HOMEPAGE=https://github.com/TwP/bones -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=~amd64 ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( dev-ruby/builder[ruby_targets_ruby21] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby21] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby21] >=dev-ruby/rake-12[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/builder[ruby_targets_ruby22] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby22] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby22] >=dev-ruby/rake-12[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/builder[ruby_targets_ruby23] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby23] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby23] >=dev-ruby/rake-12[ruby_targets_ruby23] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) -SLOT=0 -SRC_URI=mirror://rubygems/bones-3.8.4.gem -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=7b64b4d8d0ec5285d627a8a4243e1d4f diff --git a/metadata/md5-cache/dev-ruby/bones-3.8.4-r1 b/metadata/md5-cache/dev-ruby/bones-3.8.4-r1 index fb3c753412ec..e1154b912ebe 100644 --- a/metadata/md5-cache/dev-ruby/bones-3.8.4-r1 +++ b/metadata/md5-cache/dev-ruby/bones-3.8.4-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby21? ( dev-ruby/builder:*[ruby_targets_ruby21] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby21] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby21] =dev-ruby/rake-12*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/builder:*[ruby_targets_ruby22] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby22] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby22] =dev-ruby/rake-12*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/builder:*[ruby_targets_ruby23] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby23] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby23] =dev-ruby/rake-12*[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby22] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby23] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DEPEND=test? ( ruby_targets_ruby21? ( dev-ruby/builder:*[ruby_targets_ruby21] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby21] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby21] =dev-ruby/rake-12*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/builder:*[ruby_targets_ruby22] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby22] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby22] =dev-ruby/rake-12*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/builder:*[ruby_targets_ruby23] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby23] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby23] =dev-ruby/rake-12*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( dev-ruby/builder:*[ruby_targets_ruby24] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby24] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby24] =dev-ruby/rake-12*[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby21] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby22] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby23] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby24] >=dev-ruby/rspec-core-2.14.8-r2[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) DESCRIPTION=Tool that creates new Ruby projects from a code skeleton EAPI=5 HOMEPAGE=https://github.com/TwP/bones -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test +IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test test KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( dev-ruby/builder:*[ruby_targets_ruby21] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby21] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby21] =dev-ruby/rake-12*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/builder:*[ruby_targets_ruby22] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby22] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby22] =dev-ruby/rake-12*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/builder:*[ruby_targets_ruby23] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby23] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby23] =dev-ruby/rake-12*[ruby_targets_ruby23] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( dev-ruby/builder:*[ruby_targets_ruby21] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby21] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby21] =dev-ruby/rake-12*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/builder:*[ruby_targets_ruby22] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby22] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby22] =dev-ruby/rake-12*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/builder:*[ruby_targets_ruby23] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby23] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby23] =dev-ruby/rake-12*[ruby_targets_ruby23] ) ruby_targets_ruby24? ( dev-ruby/builder:*[ruby_targets_ruby24] >=dev-ruby/loquacious-1.9.1[ruby_targets_ruby24] >=dev-ruby/little-plugger-1.1.3[ruby_targets_ruby24] =dev-ruby/rake-12*[ruby_targets_ruby24] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=0 SRC_URI=mirror://rubygems/bones-3.8.4.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=7adbb2b2172f7b16bafa31f0d7aa4fe4 +_md5_=f238f547e178ded90d1ebf2ce3d9cfae diff --git a/metadata/md5-cache/dev-ruby/bourne-1.6.0 b/metadata/md5-cache/dev-ruby/bourne-1.6.0 index 222d78a3540c..52d8cbb9b77f 100644 --- a/metadata/md5-cache/dev-ruby/bourne-1.6.0 +++ b/metadata/md5-cache/dev-ruby/bourne-1.6.0 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) DESCRIPTION=Extends mocha to allow tracking and querying of stub and mock invocations EAPI=5 HOMEPAGE=https://github.com/thoughtbot/bourne -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 test test +IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 test test KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby23] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/mocha-1.1:1.0[ruby_targets_ruby24] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=0 SRC_URI=mirror://rubygems/bourne-1.6.0.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=6bb28bf541c65d6dadcc777ca278b74b +_md5_=78429c41310de13e4bfad2d6ea3241e6 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 9405164ec559..9b2835bbfa65 100644 --- a/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r2 +++ b/metadata/md5-cache/dev-ruby/bsearch-1.5.0-r2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) DESCRIPTION=A binary search library for Ruby EAPI=5 HOMEPAGE=http://0xcc.net/ruby-bsearch/ -IUSE=elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 test test +IUSE=elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 test test KEYWORDS=alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=Ruby -RDEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=0 SRC_URI=mirror://rubygems/bsearch-1.5.0.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=34f0d0661bcce4a7ba279f2ed318ef44 +_md5_=e714c207ce6d14bc24a3e06a34cf6caf 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 49524f32ba07..f9502c7ccb34 100644 --- a/metadata/md5-cache/dev-ruby/buftok-0.2.0-r1 +++ b/metadata/md5-cache/dev-ruby/buftok-0.2.0-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) DESCRIPTION=Statefully split input data by a specifiable token EAPI=5 HOMEPAGE=https://github.com/sferik/buftok -IUSE=elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 test test +IUSE=elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) SLOT=0 SRC_URI=mirror://rubygems/buftok-0.2.0.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=f05096a157eaf49ea32afe71f4d2700f +_md5_=583e72cacd530dc511bd044f9eedf65c diff --git a/metadata/md5-cache/dev-ruby/facter-3.7.1 b/metadata/md5-cache/dev-ruby/facter-3.7.1 index f88bc4e1b2c7..62bc644eb648 100644 --- a/metadata/md5-cache/dev-ruby/facter-3.7.1 +++ b/metadata/md5-cache/dev-ruby/facter-3.7.1 @@ -4,11 +4,11 @@ DESCRIPTION=A cross-platform ruby library for retrieving facts from operating sy EAPI=5 HOMEPAGE=http://www.puppetlabs.com/puppet/related-projects/facter/ IUSE=debug test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 -KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~hppa ~ppc ~ppc64 x86 LICENSE=Apache-2.0 RDEPEND=dev-libs/openssl:* sys-apps/util-linux app-emulation/virt-what net-misc/curl >=dev-libs/boost-1.54[nls] >=dev-cpp/yaml-cpp-0.5.1 ! facter-3.7.1.tar.gz _eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=396539a75d39aeb6c3735a4b27a44669 +_md5_=6d5bf294d9738d38ce963acf8ba8676d 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 d1fa22c860a6..4d79334dddba 100644 --- a/metadata/md5-cache/dev-ruby/ice_nine-0.11.2 +++ b/metadata/md5-cache/dev-ruby/ice_nine-0.11.2 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/yard[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/yard[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) +DEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/yard[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/yard[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/yard[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rspec:3[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) DESCRIPTION=Deep Freeze Ruby Objects EAPI=5 HOMEPAGE=https://rubygems.org/gems/ice_nine https://github.com/dkubb/ice_nine -IUSE=elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test +IUSE=elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test test KEYWORDS=~amd64 LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) +RDEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) RESTRICT=test SLOT=0 SRC_URI=mirror://rubygems/ice_nine-0.11.2.gem _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=85f41393f0cca39c383770093c2587ba +_md5_=d5d4198267efd94702bcd05c223cacb0 diff --git a/metadata/md5-cache/dev-ruby/rake-0.9.6-r1 b/metadata/md5-cache/dev-ruby/rake-0.9.6-r1 index fcb2a75b883e..508b06193c47 100644 --- a/metadata/md5-cache/dev-ruby/rake-0.9.6-r1 +++ b/metadata/md5-cache/dev-ruby/rake-0.9.6-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=app-arch/gzip ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) test? ( virtual/ruby-minitest[ruby_targets_ruby21] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) +DEPEND=app-arch/gzip ruby_targets_ruby21? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby21] ) test? ( virtual/ruby-minitest[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby22] ) test? ( virtual/ruby-minitest[ruby_targets_ruby22] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) DESCRIPTION=Make-like scripting in Ruby EAPI=5 HOMEPAGE=https://github.com/jimweirich/rake -IUSE=doc elibc_FreeBSD ruby_targets_ruby21 test +IUSE=doc elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 test KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ) +RDEPEND=ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://rubygems/rake-0.9.6.gem _eclasses_=bash-completion-r1 8e447753aaf658afa609fbf961d80ab7 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=4e93a9b2b8ce9a8e09e9dec9daf6b885 +_md5_=5522fb3ed3b39b443c17357846a8e101 diff --git a/metadata/md5-cache/dev-ruby/rouge-2.0.6 b/metadata/md5-cache/dev-ruby/rouge-2.0.6 deleted file mode 100644 index 88c0aadfa7ed..000000000000 --- a/metadata/md5-cache/dev-ruby/rouge-2.0.6 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby21? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby23] ) ) test? ( ruby_targets_ruby21? ( dev-ruby/redcarpet[ruby_targets_ruby21] !!dev-ruby/rouge:0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/redcarpet[ruby_targets_ruby22] !!dev-ruby/rouge:0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/redcarpet[ruby_targets_ruby23] !!dev-ruby/rouge:0[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/yard[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/yard[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) -DESCRIPTION=Yet-another-markdown-parser using a strict syntax definition in pure Ruby -EAPI=5 -HOMEPAGE=https://github.com/jneen/rouge -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=~amd64 ~arm ~ppc64 ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( dev-ruby/redcarpet[ruby_targets_ruby21] !!dev-ruby/rouge:0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/redcarpet[ruby_targets_ruby22] !!dev-ruby/rouge:0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/redcarpet[ruby_targets_ruby23] !!dev-ruby/rouge:0[ruby_targets_ruby23] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) -RESTRICT=test -SLOT=2 -SRC_URI=mirror://rubygems/rouge-2.0.6.gem -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=da9d2cb0cff2b122d80f80ee3a10b43f diff --git a/metadata/md5-cache/dev-ruby/rouge-2.0.7 b/metadata/md5-cache/dev-ruby/rouge-2.0.7 deleted file mode 100644 index 7ea8980b7692..000000000000 --- a/metadata/md5-cache/dev-ruby/rouge-2.0.7 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby21? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby23] ) ) test? ( ruby_targets_ruby21? ( dev-ruby/redcarpet[ruby_targets_ruby21] !!dev-ruby/rouge:0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/redcarpet[ruby_targets_ruby22] !!dev-ruby/rouge:0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/redcarpet[ruby_targets_ruby23] !!dev-ruby/rouge:0[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/yard[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/yard[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ) -DESCRIPTION=Yet-another-markdown-parser using a strict syntax definition in pure Ruby -EAPI=5 -HOMEPAGE=https://github.com/jneen/rouge -IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=~amd64 ~arm ~ppc64 ~x86 -LICENSE=MIT -RDEPEND=ruby_targets_ruby21? ( dev-ruby/redcarpet[ruby_targets_ruby21] !!dev-ruby/rouge:0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/redcarpet[ruby_targets_ruby22] !!dev-ruby/rouge:0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/redcarpet[ruby_targets_ruby23] !!dev-ruby/rouge:0[ruby_targets_ruby23] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) -REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) -RESTRICT=test -SLOT=2 -SRC_URI=mirror://rubygems/rouge-2.0.7.gem -_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=1036011631c3bd03914eb07f5e5d9b43 diff --git a/metadata/md5-cache/dev-ruby/rouge-2.2.0 b/metadata/md5-cache/dev-ruby/rouge-2.2.0 new file mode 100644 index 000000000000..9032c57a7802 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/rouge-2.2.0 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby21? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/redcarpet[ruby_targets_ruby24] ) ) test? ( ruby_targets_ruby21? ( dev-ruby/redcarpet[ruby_targets_ruby21] !!dev-ruby/rouge:0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/redcarpet[ruby_targets_ruby22] !!dev-ruby/rouge:0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/redcarpet[ruby_targets_ruby23] !!dev-ruby/rouge:0[ruby_targets_ruby23] ) ruby_targets_ruby24? ( dev-ruby/redcarpet[ruby_targets_ruby24] !!dev-ruby/rouge:0[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( doc? ( dev-ruby/yard[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( doc? ( dev-ruby/yard[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( doc? ( dev-ruby/yard[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( doc? ( dev-ruby/yard[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( test? ( dev-ruby/rake[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( test? ( dev-ruby/rake[ruby_targets_ruby22] ) ) ruby_targets_ruby23? ( test? ( dev-ruby/rake[ruby_targets_ruby23] ) ) ruby_targets_ruby24? ( test? ( dev-ruby/rake[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) +DESCRIPTION=Yet-another-markdown-parser using a strict syntax definition in pure Ruby +EAPI=6 +HOMEPAGE=https://github.com/jneen/rouge +IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 doc test test +KEYWORDS=~amd64 ~arm ~ppc64 ~x86 +LICENSE=MIT +RDEPEND=ruby_targets_ruby21? ( dev-ruby/redcarpet[ruby_targets_ruby21] !!dev-ruby/rouge:0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/redcarpet[ruby_targets_ruby22] !!dev-ruby/rouge:0[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/redcarpet[ruby_targets_ruby23] !!dev-ruby/rouge:0[ruby_targets_ruby23] ) ruby_targets_ruby24? ( dev-ruby/redcarpet[ruby_targets_ruby24] !!dev-ruby/rouge:0[ruby_targets_ruby24] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) +RESTRICT=test +SLOT=2 +SRC_URI=mirror://rubygems/rouge-2.2.0.gem +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=82745f66f2a44dd052c32ec195ddc485 diff --git a/metadata/md5-cache/dev-ruby/selenium-webdriver-3.5.1 b/metadata/md5-cache/dev-ruby/selenium-webdriver-3.5.1 new file mode 100644 index 000000000000..8c0d0399ec09 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/selenium-webdriver-3.5.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby21? ( >=dev-ruby/childprocess-0.5.0[ruby_targets_ruby21] dev-ruby/rubyzip:1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/childprocess-0.5.0[ruby_targets_ruby22] dev-ruby/rubyzip:1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/childprocess-0.5.0[ruby_targets_ruby23] dev-ruby/rubyzip:1[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/childprocess-0.5.0[ruby_targets_ruby24] dev-ruby/rubyzip:1[ruby_targets_ruby24] ) ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) test? ( ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) ) +DESCRIPTION=This gem provides Ruby bindings for WebDriver +EAPI=6 +HOMEPAGE=https://github.com/seleniumhq/selenium +IUSE=test elibc_FreeBSD ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 test +KEYWORDS=~amd64 ~arm64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=ruby_targets_ruby21? ( >=dev-ruby/childprocess-0.5.0[ruby_targets_ruby21] dev-ruby/rubyzip:1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/childprocess-0.5.0[ruby_targets_ruby22] dev-ruby/rubyzip:1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/childprocess-0.5.0[ruby_targets_ruby23] dev-ruby/rubyzip:1[ruby_targets_ruby23] ) ruby_targets_ruby24? ( >=dev-ruby/childprocess-0.5.0[ruby_targets_ruby24] dev-ruby/rubyzip:1[ruby_targets_ruby24] ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby23? ( dev-lang/ruby:2.3 ) ruby_targets_ruby24? ( dev-lang/ruby:2.4 ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ruby_targets_ruby23? ( virtual/rubygems[ruby_targets_ruby23] ) ruby_targets_ruby24? ( virtual/rubygems[ruby_targets_ruby24] ) +REQUIRED_USE=|| ( ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ruby_targets_ruby24 ) +SLOT=3 +SRC_URI=mirror://rubygems/selenium-webdriver-3.5.1.gem +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea java-utils-2 1971a6927fcd7ec839f7e12b28a24bdd ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e ruby-fakegem bafb56b9a7b7e84fd091508783628e78 ruby-ng e52d9a73c7757cdc3b195bcd5cf9d389 ruby-utils 453e0fe0dd06baac93b584c91528cc62 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 +_md5_=2acc02fc3b988258314b038148daf08f diff --git a/metadata/md5-cache/games-misc/games-envd-0 b/metadata/md5-cache/games-misc/games-envd-0 index 30a11a317b82..3fadd87772e4 100644 --- a/metadata/md5-cache/games-misc/games-envd-0 +++ b/metadata/md5-cache/games-misc/games-envd-0 @@ -1,9 +1,9 @@ DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack DESCRIPTION=Environment file for gentoo games EAPI=5 -HOMEPAGE=https://www.gentoo.org/proj/en/desktop/games/index.xml +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Games KEYWORDS=alpha amd64 arm arm64 hppa m68k ~mips ppc64 s390 sh x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 SLOT=0 _eclasses_=base df2aa567b3f0595aae0d0923889f7631 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea games 2bb3ede665927a68ffdb7c41eec7efde ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=c57760c068383b66bea7dea6c49f950d +_md5_=f23ae19c8098c041f31f69ab1fb6a86f diff --git a/metadata/md5-cache/gnome-base/gvfs-1.32.1 b/metadata/md5-cache/gnome-base/gvfs-1.32.1 index 8797b6812310..359a066e0c21 100644 --- a/metadata/md5-cache/gnome-base/gvfs-1.32.1 +++ b/metadata/md5-cache/gnome-base/gvfs-1.32.1 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://gnome/sources/gvfs/1.32/gvfs-1.32.1.tar.xz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea gnome.org 5e4cc5af3f1b17bdee155bf02e8c2df4 gnome2 64c50579ea42fbcc77a7e220a8ae8e94 gnome2-utils 8a5e0bf2b8031478ecfeaec753ef4560 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e systemd e12dd5e3cf1f359292cea2a70abeba5f toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xdg 6cd76cc914c1a759dee032778487b57f xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=7ef40bb5d9d7732831c637227b4a90bf +_md5_=bc6cc143b9971e658988bca25913f3e0 diff --git a/metadata/md5-cache/mail-client/claws-mail-3.15.0-r1 b/metadata/md5-cache/mail-client/claws-mail-3.15.0-r2 similarity index 99% rename from metadata/md5-cache/mail-client/claws-mail-3.15.0-r1 rename to metadata/md5-cache/mail-client/claws-mail-3.15.0-r2 index 038b026b10b9..2e52eba2c601 100644 --- a/metadata/md5-cache/mail-client/claws-mail-3.15.0-r1 +++ b/metadata/md5-cache/mail-client/claws-mail-3.15.0-r2 @@ -11,4 +11,4 @@ REQUIRED_USE=libcanberra? ( notification ) libindicate? ( notification ) libnoti SLOT=0 SRC_URI=http://www.claws-mail.org/download.php?file=releases/claws-mail-3.15.0.tar.xz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea gnome2-utils 8a5e0bf2b8031478ecfeaec753ef4560 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=44aeeff236893ad9f33276e3878c84a2 +_md5_=f2a5598ae438640b29b55806eee1aa96 diff --git a/metadata/md5-cache/media-gfx/autotrace-0.31.1-r7 b/metadata/md5-cache/media-gfx/autotrace-0.31.1-r7 deleted file mode 100644 index df419c5fb64f..000000000000 --- a/metadata/md5-cache/media-gfx/autotrace-0.31.1-r7 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=media-libs/libexif:= media-libs/libpng:0= >=media-libs/ming-0.4.2:= >=media-gfx/pstoedit-3.50:= imagemagick? ( >=media-gfx/imagemagick-6.6.2.5 ) virtual/pkgconfig >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=A program for converting bitmaps to vector graphics -EAPI=5 -HOMEPAGE=http://packages.qa.debian.org/a/autotrace.html http://autotrace.sourceforge.net/ -IUSE=+imagemagick static-libs -KEYWORDS=alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd -LICENSE=GPL-2 LGPL-2.1 -RDEPEND=media-libs/libexif:= media-libs/libpng:0= >=media-libs/ming-0.4.2:= >=media-gfx/pstoedit-3.50:= imagemagick? ( >=media-gfx/imagemagick-6.6.2.5 ) -SLOT=0 -SRC_URI=mirror://debian/pool/main/a/autotrace/autotrace_0.31.1.orig.tar.gz mirror://debian/pool/main/a/autotrace/autotrace_0.31.1-15.diff.gz -_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=8d0fc05599c048d1ccc0418100d621d4 diff --git a/metadata/md5-cache/media-gfx/autotrace-0.31.1-r8 b/metadata/md5-cache/media-gfx/autotrace-0.31.1-r8 deleted file mode 100644 index ee5cc3c22b06..000000000000 --- a/metadata/md5-cache/media-gfx/autotrace-0.31.1-r8 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=media-libs/libexif:= media-libs/libpng:0= >=media-libs/ming-0.4.2:= >=media-gfx/pstoedit-3.50:= imagemagick? ( >=media-gfx/imagemagick-6.6.2.5 ) virtual/pkgconfig >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=A program for converting bitmaps to vector graphics -EAPI=5 -HOMEPAGE=http://packages.qa.debian.org/a/autotrace.html http://autotrace.sourceforge.net/ -IUSE=+imagemagick static-libs -KEYWORDS=~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd -LICENSE=GPL-2 LGPL-2.1 -RDEPEND=media-libs/libexif:= media-libs/libpng:0= >=media-libs/ming-0.4.2:= >=media-gfx/pstoedit-3.50:= imagemagick? ( >=media-gfx/imagemagick-6.6.2.5 ) -SLOT=0 -SRC_URI=mirror://debian/pool/main/a/autotrace/autotrace_0.31.1.orig.tar.gz mirror://debian/pool/main/a/autotrace/autotrace_0.31.1-15.diff.gz -_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=d4aed5e2b62dbbe16ff1bb5d19ab0515 diff --git a/metadata/md5-cache/media-sound/flacon-3.0.0 b/metadata/md5-cache/media-sound/flacon-3.1.1 similarity index 89% rename from metadata/md5-cache/media-sound/flacon-3.0.0 rename to metadata/md5-cache/media-sound/flacon-3.1.1 index c5b397a00535..f436d258dc94 100644 --- a/metadata/md5-cache/media-sound/flacon-3.0.0 +++ b/metadata/md5-cache/media-sound/flacon-3.1.1 @@ -1,4 +1,4 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test +DEFINED_PHASES=compile configure install postinst postrm prepare pretend setup test DEPEND=app-i18n/uchardet !qt5? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) virtual/pkgconfig qt5? ( dev-qt/linguist-tools:5 ) test? ( media-libs/flac media-sound/mac media-sound/ttaenc media-sound/wavpack media-sound/shntool !qt5? ( dev-qt/qttest:4 ) qt5? ( dev-qt/qttest:5 ) ) sys-devel/make >=dev-util/cmake-3.7.2 >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=Extracts audio tracks from an audio CD image to separate tracks EAPI=6 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1+ RDEPEND=app-i18n/uchardet !qt5? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtnetwork:5 dev-qt/qtwidgets:5 ) SLOT=0 -SRC_URI=https://github.com/flacon/flacon/archive/v3.0.0.tar.gz -> flacon-3.0.0.tar.gz +SRC_URI=https://github.com/flacon/flacon/archive/v3.1.1.tar.gz -> flacon-3.1.1.tar.gz _eclasses_=check-reqs bd050ce908e4637604ee604ed4b78e8f cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b gnome2-utils 8a5e0bf2b8031478ecfeaec753ef4560 l10n 2c2e15383ba891d642f51896a7f0ecfe ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=d11d24a6a3752851cd13628ade8838ed +_md5_=b8a979199815ee54ef3e745d685edf26 diff --git a/metadata/md5-cache/net-analyzer/nagios-4.3.2 b/metadata/md5-cache/net-analyzer/nagios-4.3.3 similarity index 80% rename from metadata/md5-cache/net-analyzer/nagios-4.3.2 rename to metadata/md5-cache/net-analyzer/nagios-4.3.3 index 2f672c76c5d7..a83bd65d4299 100644 --- a/metadata/md5-cache/net-analyzer/nagios-4.3.2 +++ b/metadata/md5-cache/net-analyzer/nagios-4.3.3 @@ -4,6 +4,6 @@ EAPI=6 HOMEPAGE=http://www.nagios.org/ KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=~net-analyzer/nagios-core-4.3.2 || ( net-analyzer/nagios-plugins net-analyzer/monitoring-plugins ) +RDEPEND=~net-analyzer/nagios-core-4.3.3 || ( net-analyzer/nagios-plugins net-analyzer/monitoring-plugins ) SLOT=0 _md5_=e77a281e3a5029b5f73e9effb4dfcb40 diff --git a/metadata/md5-cache/net-analyzer/nagios-core-4.3.2 b/metadata/md5-cache/net-analyzer/nagios-core-4.3.3 similarity index 93% rename from metadata/md5-cache/net-analyzer/nagios-core-4.3.2 rename to metadata/md5-cache/net-analyzer/nagios-core-4.3.3 index 5c7d77758e88..d295aa9f9915 100644 --- a/metadata/md5-cache/net-analyzer/nagios-core-4.3.2 +++ b/metadata/md5-cache/net-analyzer/nagios-core-4.3.3 @@ -9,6 +9,6 @@ LICENSE=GPL-2 RDEPEND=sys-devel/libtool virtual/mailx perl? ( dev-lang/perl:= ) web? ( app-arch/unzip media-libs/gd[jpeg,png] lighttpd? ( www-servers/lighttpd[php] ) apache2? ( || ( >=www-servers/apache-2.4[apache2_modules_alias,apache2_modules_cgi] >=www-servers/apache-2.4[apache2_modules_alias,apache2_modules_cgid] >=www-servers/apache-2.4[apache2_modules_alias,apache2_modules_fcgid] ) || ( dev-lang/php:*[apache2] dev-lang/php:*[cgi] dev-lang/php:*[fpm] ) ) ) vim-syntax? ( app-vim/nagios-syntax ) REQUIRED_USE=apache2? ( !lighttpd ) SLOT=0 -SRC_URI=mirror://sourceforge/nagios/nagios-4.3.2.tar.gz web? ( https://dev.gentoo.org/~mjo/distfiles/nagios-core-gentoo-icons-20141125.tar ) +SRC_URI=mirror://sourceforge/nagios/nagios-4.3.3.tar.gz web? ( https://dev.gentoo.org/~mjo/distfiles/nagios-core-gentoo-icons-20141125.tar ) _eclasses_=multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af user e4b567c44272a719fabf53f0f885d3f7 -_md5_=e3c7ac29478437ab96ae7bf63d4aed54 +_md5_=70fbd70e2d3ecb470e87f1a9853c6f14 diff --git a/metadata/md5-cache/sci-libs/scikits_learn-0.19.0 b/metadata/md5-cache/sci-libs/scikits_learn-0.19.0 new file mode 100644 index 000000000000..c20d55b6ddf9 --- /dev/null +++ b/metadata/md5-cache/sci-libs/scikits_learn-0.19.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/cython[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/numpy[lapack,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] sci-libs/scipy[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] virtual/blas:= virtual/cblas:= python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +DESCRIPTION=Python modules for machine learning and data mining +EAPI=6 +HOMEPAGE=http://scikit-learn.org +IUSE=examples test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=BSD +RDEPEND=dev-python/matplotlib[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] dev-python/numpy[lapack,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] sci-libs/scikits[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] sci-libs/scipy[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] virtual/blas:= virtual/cblas:= python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) python_targets_python3_5? ( dev-lang/python:3.5 ) python_targets_python3_6? ( dev-lang/python:3.6 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) +SLOT=0 +SRC_URI=mirror://pypi/s/scikit-learn/scikit-learn-0.19.0.tar.gz +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=6c36a41409ce640bee0b7b9be3348948 diff --git a/metadata/md5-cache/sci-libs/symengine-0.3.0 b/metadata/md5-cache/sci-libs/symengine-0.3.0-r1 similarity index 97% rename from metadata/md5-cache/sci-libs/symengine-0.3.0 rename to metadata/md5-cache/sci-libs/symengine-0.3.0-r1 index 54cf6ad9a62e..456db8ea6974 100644 --- a/metadata/md5-cache/sci-libs/symengine-0.3.0 +++ b/metadata/md5-cache/sci-libs/symengine-0.3.0-r1 @@ -10,4 +10,4 @@ RDEPEND=dev-libs/gmp:= sys-libs/binutils-libs:= arb? ( sci-mathematics/arb:= ) b SLOT=0/0.3 SRC_URI=https://github.com/sympy/symengine/archive/v0.3.0.tar.gz -> symengine-0.3.0.tar.gz _eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=5ec16d9027db73e8bcb72212da9b3e84 +_md5_=a946a796f2963a036408f23a277f2f29 diff --git a/metadata/md5-cache/sci-visualization/visit-2.12.3 b/metadata/md5-cache/sci-visualization/visit-2.12.3 index 1cef80388143..5c94efc67fd6 100644 --- a/metadata/md5-cache/sci-visualization/visit-2.12.3 +++ b/metadata/md5-cache/sci-visualization/visit-2.12.3 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] tcmalloc? ( dev-util/google-perftools ) cgns? ( sci-libs/cgnslib ) hdf5? ( sci-libs/hdf5 ) netcdf? ( sci-libs/netcdf ) silo? ( sci-libs/silo ) =sci-libs/vtk-6.1.0*[imaging,mpi=,python,rendering,qt5,xdmf2?,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] sys-libs/zlib x11-libs/qwt:6[qt5] xdmf2? ( sci-libs/xdmf2 ) sys-devel/make >=dev-util/cmake-3.7.2 +DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] tcmalloc? ( dev-util/google-perftools ) cgns? ( sci-libs/cgnslib ) hdf5? ( sci-libs/hdf5 ) netcdf? ( sci-libs/netcdf ) silo? ( sci-libs/silo ) =sci-libs/vtk-6.1.0*[imaging,mpi=,python,rendering,qt5,xdmf2?,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-qt/qtx11extras sys-libs/zlib x11-libs/qwt:6[qt5] xdmf2? ( sci-libs/xdmf2 ) sys-devel/make >=dev-util/cmake-3.7.2 DESCRIPTION=A software that delivers parallel interactive visualizations EAPI=5 HOMEPAGE=https://wci.llnl.gov/simulation/computer-codes/visit IUSE=cgns debug hdf5 mpi netcdf silo tcmalloc threads xdmf2 python_targets_python2_7 KEYWORDS=~amd64 ~x86 LICENSE=BSD -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] tcmalloc? ( dev-util/google-perftools ) cgns? ( sci-libs/cgnslib ) hdf5? ( sci-libs/hdf5 ) netcdf? ( sci-libs/netcdf ) silo? ( sci-libs/silo ) =sci-libs/vtk-6.1.0*[imaging,mpi=,python,rendering,qt5,xdmf2?,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] sys-libs/zlib x11-libs/qwt:6[qt5] +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] tcmalloc? ( dev-util/google-perftools ) cgns? ( sci-libs/cgnslib ) hdf5? ( sci-libs/hdf5 ) netcdf? ( sci-libs/netcdf ) silo? ( sci-libs/silo ) =sci-libs/vtk-6.1.0*[imaging,mpi=,python,rendering,qt5,xdmf2?,python_targets_python2_7(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-),python_single_target_python2_7(+)] dev-qt/qtx11extras sys-libs/zlib x11-libs/qwt:6[qt5] REQUIRED_USE=python_targets_python2_7 SLOT=0 SRC_URI=http://portal.nersc.gov/svn/visit/trunk/releases/2.12.3/visit2.12.3.tar.gz _eclasses_=cmake-utils 026933aff3889190eeb565b642cfe252 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c ninja-utils ebb2eaddc6331c4fa000b8eb8f6fe074 python-single-r1 317a2557b4d7319a7418225f65accf77 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 -_md5_=9f2ad40444b5ff5c88850289a9e4202d +_md5_=a4f8c20eaced55758575732995df9d36 diff --git a/metadata/md5-cache/sys-apps/openrc-0.29 b/metadata/md5-cache/sys-apps/openrc-0.29 new file mode 100644 index 000000000000..c90e4a9766b4 --- /dev/null +++ b/metadata/md5-cache/sys-apps/openrc-0.29 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst preinst prepare +DEPEND=kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc sys-process/fuser-bsd ) ) ncurses? ( sys-libs/ncurses:0= ) pam? ( sys-auth/pambase virtual/pam ) audit? ( sys-process/audit ) kernel_linux? ( sys-process/psmisc !=sys-freebsd/freebsd-ubin-9.0_rc sys-process/fuser-bsd ) ) ncurses? ( sys-libs/ncurses:0= ) pam? ( sys-auth/pambase virtual/pam ) audit? ( sys-process/audit ) kernel_linux? ( sys-process/psmisc !=sys-apps/sysvinit-2.86-r6[selinux?] virtual/tmpfiles ) kernel_FreeBSD? ( sys-freebsd/freebsd-sbin ) ) selinux? ( sec-policy/selinux-base-policy sec-policy/selinux-openrc ) +SLOT=0 +SRC_URI=https://github.com/openrc/openrc/archive/0.29.tar.gz -> openrc-0.29.tar.gz +_eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e pam 3e788d86170dfcd5b06824d898315e18 toolchain-funcs 185a06792159ca143528e7010368e8af +_md5_=16e8f7db516164d376261702c7e04cd5 diff --git a/metadata/md5-cache/sys-apps/portage-2.3.5 b/metadata/md5-cache/sys-apps/portage-2.3.5 index 1b155883d085..e02be1756eef 100644 --- a/metadata/md5-cache/sys-apps/portage-2.3.5 +++ b/metadata/md5-cache/sys-apps/portage-2.3.5 @@ -12,4 +12,4 @@ REQUIRED_USE=epydoc? ( python_targets_python2_7 ) || ( python_targets_pypy pytho SLOT=0 SRC_URI=mirror://gentoo/portage-2.3.5.tar.bz2 https://dev.gentoo.org/~dolsen/releases/portage/portage-2.3.5.tar.bz2 _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=774df8d05d0b0fd047fb14d5dc0b7785 +_md5_=0317a9902eb3e633cfff9855dfd336a2 diff --git a/metadata/md5-cache/sys-apps/portage-2.3.6 b/metadata/md5-cache/sys-apps/portage-2.3.6 index 7bb81a2f85a7..cc7655378067 100644 --- a/metadata/md5-cache/sys-apps/portage-2.3.6 +++ b/metadata/md5-cache/sys-apps/portage-2.3.6 @@ -12,4 +12,4 @@ REQUIRED_USE=epydoc? ( python_targets_python2_7 ) || ( python_targets_pypy pytho SLOT=0 SRC_URI=mirror://gentoo/portage-2.3.6.tar.bz2 https://dev.gentoo.org/~dolsen/releases/portage/portage-2.3.6.tar.bz2 _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=1c2962729cfdc90dec055eb30e425b1f +_md5_=ca3114d935a276e6cec4cfa07fe75727 diff --git a/metadata/md5-cache/sys-apps/portage-2.3.7 b/metadata/md5-cache/sys-apps/portage-2.3.7 index 22faa5ea97da..130620a1ef64 100644 --- a/metadata/md5-cache/sys-apps/portage-2.3.7 +++ b/metadata/md5-cache/sys-apps/portage-2.3.7 @@ -12,4 +12,4 @@ REQUIRED_USE=epydoc? ( python_targets_python2_7 ) || ( python_targets_pypy pytho SLOT=0 SRC_URI=mirror://gentoo/portage-2.3.7.tar.bz2 https://dev.gentoo.org/~zmedico/portage/archives/portage-2.3.7.tar.bz2 _eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=176041b1177a69a67d0435f69b1d4a7d +_md5_=44845f1ac7325573d14f124b433d24a8 diff --git a/metadata/md5-cache/sys-apps/portage-9999 b/metadata/md5-cache/sys-apps/portage-9999 index d96306ea2b9f..6ea28679017e 100644 --- a/metadata/md5-cache/sys-apps/portage-9999 +++ b/metadata/md5-cache/sys-apps/portage-9999 @@ -1,7 +1,7 @@ DEFINED_PHASES=compile configure install postinst preinst prepare setup test unpack DEPEND=!build? ( python_targets_pypy? ( >=virtual/pypy-5:0=[ssl(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ssl(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[ssl(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[ssl(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[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 ) epydoc? ( >=dev-python/epydoc-2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_pypy? ( >=virtual/pypy-5:0=[bzip2(+),threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[bzip2(+),threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[bzip2(+),threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[bzip2(+),threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[bzip2(+),threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] >=dev-vcs/git-1.8.2.1 DESCRIPTION=Portage is the package management and distribution system for Gentoo -EAPI=5 +EAPI=6 HOMEPAGE=https://wiki.gentoo.org/wiki/Project:Portage IUSE=build doc epydoc +ipc linguas_ru +native-extensions selinux xattr python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 LICENSE=GPL-2 @@ -9,5 +9,5 @@ PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6. RDEPEND=>=app-arch/tar-1.27 dev-lang/python-exec:2 !build? ( >=sys-apps/sed-4.0.5 app-shells/bash:0[readline] >=app-admin/eselect-1.2 ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_musl? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 selinux? ( >=sys-libs/libselinux-2.0.94[python,python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] ) xattr? ( kernel_linux? ( >=sys-apps/install-xattr-0.3 python_targets_pypy? ( dev-python/pyxattr[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/pyxattr[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) ) !=virtual/pypy-5:0=[bzip2(+),threads(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[bzip2(+),threads(+)] ) python_targets_python3_4? ( dev-lang/python:3.4[bzip2(+),threads(+)] ) python_targets_python3_5? ( dev-lang/python:3.5[bzip2(+),threads(+)] ) python_targets_python3_6? ( dev-lang/python:3.6[bzip2(+),threads(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,python_targets_python3_6(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),-python_single_target_python3_6(-)] REQUIRED_USE=epydoc? ( python_targets_python2_7 ) || ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_targets_python3_6 ) SLOT=0 -_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea git-r3 cbafa3261c37c7e3af44bb16a34ea390 ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=a46b3a02299ac71ae5bfa2e0c4842473 +_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 git-r3 cbafa3261c37c7e3af44bb16a34ea390 multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=cde4baa6106d50f9c5db558ab6559e34 diff --git a/metadata/md5-cache/sys-auth/pambase-20101024-r2 b/metadata/md5-cache/sys-auth/pambase-20101024-r2 index a6cfa1134d9b..8e0a0d6a0ac0 100644 --- a/metadata/md5-cache/sys-auth/pambase-20101024-r2 +++ b/metadata/md5-cache/sys-auth/pambase-20101024-r2 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile install postinst test DEPEND=app-portage/portage-utils DESCRIPTION=PAM base configuration files EAPI=4 -HOMEPAGE=https://www.gentoo.org/proj/en/base/pam/ +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:PAM IUSE=debug cracklib passwdqc consolekit gnome-keyring selinux mktemp pam_ssh +sha512 pam_krb5 minimal KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 @@ -11,4 +11,4 @@ RESTRICT=binchecks SLOT=0 SRC_URI=https://dev.gentoo.org/~flameeyes/pambase/pambase-20101024.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=08ad49990a6ab52004a7a7ad931f6990 +_md5_=445e16a249119be890cae8550ff65a87 diff --git a/metadata/md5-cache/sys-auth/pambase-20120417-r3 b/metadata/md5-cache/sys-auth/pambase-20120417-r3 index e70f97f9acfa..7794f20cccbf 100644 --- a/metadata/md5-cache/sys-auth/pambase-20120417-r3 +++ b/metadata/md5-cache/sys-auth/pambase-20120417-r3 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile install postinst prepare test DEPEND=app-portage/portage-utils DESCRIPTION=PAM base configuration files EAPI=5 -HOMEPAGE=https://www.gentoo.org/proj/en/base/pam/ +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:PAM IUSE=consolekit cracklib debug gnome-keyring minimal mktemp pam_krb5 pam_ssh passwdqc selinux +sha512 systemd KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 -sparc-fbsd -x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 @@ -11,4 +11,4 @@ RESTRICT=binchecks SLOT=0 SRC_URI=https://dev.gentoo.org/~flameeyes/pambase/pambase-20120417.tar.bz2 https://dev.gentoo.org/~phajdan.jr/pambase/pambase-20120417.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=c7460e88a43506c026dc0601497f0af2 +_md5_=1a416427cd2e079899cdd3975eb1c817 diff --git a/metadata/md5-cache/sys-auth/pambase-20140313 b/metadata/md5-cache/sys-auth/pambase-20140313 index 39c2ab4e0142..de5d04f60785 100644 --- a/metadata/md5-cache/sys-auth/pambase-20140313 +++ b/metadata/md5-cache/sys-auth/pambase-20140313 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile install postinst test DEPEND=app-portage/portage-utils DESCRIPTION=PAM base configuration files EAPI=5 -HOMEPAGE=https://www.gentoo.org/proj/en/base/pam/ +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:PAM IUSE=consolekit cracklib debug gnome-keyring minimal mktemp pam_krb5 pam_ssh passwdqc selinux +sha512 systemd KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -sparc-fbsd -x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 @@ -11,4 +11,4 @@ RESTRICT=binchecks SLOT=0 SRC_URI=https://dev.gentoo.org/~ssuominen/pambase-20140313.tar.bz2 _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=0e2fa42688f9a742d216434453db2ec9 +_md5_=94a7b86772d0e15b9af446e86b35e1b4 diff --git a/metadata/md5-cache/sys-auth/pambase-20150213 b/metadata/md5-cache/sys-auth/pambase-20150213 index 9b74ba15023c..a5cca6fac9fc 100644 --- a/metadata/md5-cache/sys-auth/pambase-20150213 +++ b/metadata/md5-cache/sys-auth/pambase-20150213 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile install postinst prepare test DEPEND=app-portage/portage-utils app-arch/xz-utils DESCRIPTION=PAM base configuration files EAPI=5 -HOMEPAGE=https://www.gentoo.org/proj/en/base/pam/ +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:PAM IUSE=consolekit cracklib debug gnome-keyring minimal mktemp +nullok pam_krb5 pam_ssh passwdqc securetty selinux +sha512 systemd KEYWORDS=alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 -sparc-fbsd -x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 @@ -11,4 +11,4 @@ RESTRICT=binchecks SLOT=0 SRC_URI=https://dev.gentoo.org/~vapier/dist/pambase-20150213.tar.xz _eclasses_=epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=c3ae5e25ded52a0a4f840998061c74f3 +_md5_=040797acc7d46c773ab001c955be8d15 diff --git a/metadata/md5-cache/sys-auth/pambase-20150213-r1 b/metadata/md5-cache/sys-auth/pambase-20150213-r1 index d6ca248abb7e..dc40fba8d556 100644 --- a/metadata/md5-cache/sys-auth/pambase-20150213-r1 +++ b/metadata/md5-cache/sys-auth/pambase-20150213-r1 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile install setup test DEPEND=app-arch/xz-utils app-portage/portage-utils DESCRIPTION=PAM base configuration files EAPI=6 -HOMEPAGE=https://www.gentoo.org/proj/en/base/pam/ +HOMEPAGE=https://wiki.gentoo.org/wiki/Project:PAM IUSE=consolekit cracklib debug elogind gnome-keyring minimal mktemp +nullok pam_krb5 pam_ssh passwdqc securetty selinux +sha512 systemd KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -sparc-fbsd -x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 @@ -10,4 +10,4 @@ RDEPEND=|| ( >=sys-libs/pam-1.1.3 ( sys-auth/openpam || ( sys-freebsd/freebsd-pa RESTRICT=binchecks SLOT=0 SRC_URI=https://dev.gentoo.org/~vapier/dist/pambase-20150213.tar.xz -_md5_=b7c4fa7ed354fbb5fcfbdaae08c16cc0 +_md5_=465c2c973ca56b4c414fb222cb2bb664 diff --git a/metadata/md5-cache/www-client/firefox-55.0 b/metadata/md5-cache/www-client/firefox-55.0 deleted file mode 100644 index 17e97eac03a2..000000000000 --- a/metadata/md5-cache/www-client/firefox-55.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack -DEPEND=jack? ( virtual/jack ) >=dev-libs/nss-3.32 >=dev-libs/nspr-4.16 selinux? ( sec-policy/selinux-mozilla ) pgo? ( >=sys-devel/gcc-4.5 ) >=virtual/rust-1.15.1 amd64? ( >=dev-lang/yasm-1.1 virtual/opengl ) x86? ( >=dev-lang/yasm-1.1 virtual/opengl ) >=sys-apps/sed-4 virtual/pkgconfig || ( >=dev-lang/python-2.7.5-r2:2.7[ncurses,sqlite,ssl,threads] ) app-arch/zip app-arch/unzip >=sys-devel/binutils-2.16.1 sys-apps/findutils pulseaudio? ( media-sound/pulseaudio ) >=app-text/hunspell-1.5.4:= dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.28:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 virtual/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X,xcb] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-58.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-sqlite? ( >=dev-db/sqlite-3.19.3:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] ) system-harfbuzz? ( >=media-libs/harfbuzz-1.3.3:0= >=media-gfx/graphite2-1.3.9-r1 ) >=x11-libs/gtk+-3.4.0:3 wifi? ( kernel_linux? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-misc/networkmanager ) ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) app-arch/unzip -DESCRIPTION=Firefox Web Browser -EAPI=6 -HOMEPAGE=http://www.mozilla.com/firefox -IUSE=bindist +gmp-autoupdate hardened hwaccel jack nsplugin pgo selinux test custom-cflags custom-optimization dbus debug neon pulseaudio selinux startup-notification system-cairo system-harfbuzz system-icu system-jpeg system-libevent system-sqlite system-libvpx wifi pgo l10n_ach l10n_af l10n_an l10n_ar l10n_as l10n_ast l10n_az l10n_bg l10n_bn-BD l10n_bn-IN l10n_br l10n_bs l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-GB l10n_en-ZA l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mai l10n_mk l10n_ml l10n_mr l10n_ms l10n_nb l10n_nl l10n_nn l10n_or l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tr l10n_uk l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW -KEYWORDS=~amd64 ~x86 -LICENSE=MPL-2.0 GPL-2 LGPL-2.1 -RDEPEND=jack? ( virtual/jack ) >=dev-libs/nss-3.32 >=dev-libs/nspr-4.16 selinux? ( sec-policy/selinux-mozilla ) >=app-text/hunspell-1.5.4:= dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.28:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 virtual/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X,xcb] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-58.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-sqlite? ( >=dev-db/sqlite-3.19.3:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] ) system-harfbuzz? ( >=media-libs/harfbuzz-1.3.3:0= >=media-gfx/graphite2-1.3.9-r1 ) >=x11-libs/gtk+-3.4.0:3 wifi? ( kernel_linux? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-misc/networkmanager ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) selinux? ( sec-policy/selinux-mozilla ) -RESTRICT=!bindist? ( bindist ) -SLOT=0 -SRC_URI=l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ach.xpi -> firefox-55.0-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/af.xpi -> firefox-55.0-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/an.xpi -> firefox-55.0-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ar.xpi -> firefox-55.0-ar.xpi ) l10n_as? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/as.xpi -> firefox-55.0-as.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ast.xpi -> firefox-55.0-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/az.xpi -> firefox-55.0-az.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/bg.xpi -> firefox-55.0-bg.xpi ) l10n_bn-BD? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/bn-BD.xpi -> firefox-55.0-bn-BD.xpi ) l10n_bn-IN? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/bn-IN.xpi -> firefox-55.0-bn-IN.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/br.xpi -> firefox-55.0-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/bs.xpi -> firefox-55.0-bs.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ca.xpi -> firefox-55.0-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/cak.xpi -> firefox-55.0-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/cs.xpi -> firefox-55.0-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/cy.xpi -> firefox-55.0-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/da.xpi -> firefox-55.0-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/de.xpi -> firefox-55.0-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/dsb.xpi -> firefox-55.0-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/el.xpi -> firefox-55.0-el.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/en-GB.xpi -> firefox-55.0-en-GB.xpi ) l10n_en-ZA? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/en-ZA.xpi -> firefox-55.0-en-ZA.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/eo.xpi -> firefox-55.0-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/es-AR.xpi -> firefox-55.0-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/es-CL.xpi -> firefox-55.0-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/es-ES.xpi -> firefox-55.0-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/es-MX.xpi -> firefox-55.0-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/et.xpi -> firefox-55.0-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/eu.xpi -> firefox-55.0-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/fa.xpi -> firefox-55.0-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ff.xpi -> firefox-55.0-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/fi.xpi -> firefox-55.0-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/fr.xpi -> firefox-55.0-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/fy-NL.xpi -> firefox-55.0-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ga-IE.xpi -> firefox-55.0-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/gd.xpi -> firefox-55.0-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/gl.xpi -> firefox-55.0-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/gn.xpi -> firefox-55.0-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/gu-IN.xpi -> firefox-55.0-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/he.xpi -> firefox-55.0-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/hi-IN.xpi -> firefox-55.0-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/hr.xpi -> firefox-55.0-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/hsb.xpi -> firefox-55.0-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/hu.xpi -> firefox-55.0-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/hy-AM.xpi -> firefox-55.0-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/id.xpi -> firefox-55.0-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/is.xpi -> firefox-55.0-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/it.xpi -> firefox-55.0-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ja.xpi -> firefox-55.0-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ka.xpi -> firefox-55.0-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/kab.xpi -> firefox-55.0-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/kk.xpi -> firefox-55.0-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/km.xpi -> firefox-55.0-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/kn.xpi -> firefox-55.0-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ko.xpi -> firefox-55.0-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/lij.xpi -> firefox-55.0-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/lt.xpi -> firefox-55.0-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/lv.xpi -> firefox-55.0-lv.xpi ) l10n_mai? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/mai.xpi -> firefox-55.0-mai.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/mk.xpi -> firefox-55.0-mk.xpi ) l10n_ml? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ml.xpi -> firefox-55.0-ml.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/mr.xpi -> firefox-55.0-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ms.xpi -> firefox-55.0-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/nb-NO.xpi -> firefox-55.0-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/nl.xpi -> firefox-55.0-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/nn-NO.xpi -> firefox-55.0-nn-NO.xpi ) l10n_or? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/or.xpi -> firefox-55.0-or.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/pa-IN.xpi -> firefox-55.0-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/pl.xpi -> firefox-55.0-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/pt-BR.xpi -> firefox-55.0-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/pt-PT.xpi -> firefox-55.0-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/rm.xpi -> firefox-55.0-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ro.xpi -> firefox-55.0-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ru.xpi -> firefox-55.0-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/si.xpi -> firefox-55.0-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/sk.xpi -> firefox-55.0-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/sl.xpi -> firefox-55.0-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/son.xpi -> firefox-55.0-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/sq.xpi -> firefox-55.0-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/sr.xpi -> firefox-55.0-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/sv-SE.xpi -> firefox-55.0-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/ta.xpi -> firefox-55.0-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/te.xpi -> firefox-55.0-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/th.xpi -> firefox-55.0-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/tr.xpi -> firefox-55.0-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/uk.xpi -> firefox-55.0-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/uz.xpi -> firefox-55.0-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/vi.xpi -> firefox-55.0-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/xh.xpi -> firefox-55.0-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/zh-CN.xpi -> firefox-55.0-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/55.0/linux-i686/xpi/zh-TW.xpi -> firefox-55.0-zh-TW.xpi ) https://archive.mozilla.org/pub/firefox/releases/55.0/source/firefox-55.0.source.tar.xz https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-55.0-patches-07.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-55.0-patches-07.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-55.0-patches-07.tar.xz -_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 check-reqs bd050ce908e4637604ee604ed4b78e8f epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b gnome2-utils 8a5e0bf2b8031478ecfeaec753ef4560 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e mozconfig-v6.55 476a9c7e4eee401b864f33c90ef670cb mozcoreconf-v5 aa19131a5fb2f1d108a2c0a1453e2458 mozextension e5d920147bfccf4930062e462e2a417d mozlinguas-v2 e3c0b93bb284269205def793bf37bef5 multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 -_md5_=8f343f81f1cbffa566eb3bbf79064cca diff --git a/metadata/md5-cache/www-client/firefox-55.0.1 b/metadata/md5-cache/www-client/firefox-55.0.1 new file mode 100644 index 000000000000..488e2fa7faae --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-55.0.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup unpack +DEPEND=jack? ( virtual/jack ) >=dev-libs/nss-3.32 >=dev-libs/nspr-4.16 selinux? ( sec-policy/selinux-mozilla ) pgo? ( >=sys-devel/gcc-4.5 ) >=virtual/rust-1.15.1 amd64? ( >=dev-lang/yasm-1.1 virtual/opengl ) x86? ( >=dev-lang/yasm-1.1 virtual/opengl ) >=sys-apps/sed-4 virtual/pkgconfig || ( >=dev-lang/python-2.7.5-r2:2.7[ncurses,sqlite,ssl,threads] ) app-arch/zip app-arch/unzip >=sys-devel/binutils-2.16.1 sys-apps/findutils pulseaudio? ( media-sound/pulseaudio ) >=app-text/hunspell-1.5.4:= dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.28:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 virtual/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X,xcb] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-58.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-sqlite? ( >=dev-db/sqlite-3.19.3:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] ) system-harfbuzz? ( >=media-libs/harfbuzz-1.3.3:0= >=media-gfx/graphite2-1.3.9-r1 ) >=x11-libs/gtk+-3.4.0:3 wifi? ( kernel_linux? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-misc/networkmanager ) ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) ~sys-devel/autoconf-2.13 >=sys-devel/libtool-2.4 pgo? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) app-arch/unzip +DESCRIPTION=Firefox Web Browser +EAPI=6 +HOMEPAGE=http://www.mozilla.com/firefox +IUSE=bindist +gmp-autoupdate hardened hwaccel jack nsplugin pgo selinux test custom-cflags custom-optimization dbus debug neon pulseaudio selinux startup-notification system-cairo system-harfbuzz system-icu system-jpeg system-libevent system-sqlite system-libvpx wifi pgo l10n_ach l10n_af l10n_an l10n_ar l10n_as l10n_ast l10n_az l10n_bg l10n_bn-BD l10n_bn-IN l10n_br l10n_bs l10n_ca l10n_cak l10n_cs l10n_cy l10n_da l10n_de l10n_dsb l10n_el l10n_en-GB l10n_en-ZA l10n_eo l10n_es-AR l10n_es-CL l10n_es-ES l10n_es-MX l10n_et l10n_eu l10n_fa l10n_ff l10n_fi l10n_fr l10n_fy l10n_ga l10n_gd l10n_gl l10n_gn l10n_gu l10n_he l10n_hi l10n_hr l10n_hsb l10n_hu l10n_hy l10n_id l10n_is l10n_it l10n_ja l10n_ka l10n_kab l10n_kk l10n_km l10n_kn l10n_ko l10n_lij l10n_lt l10n_lv l10n_mai l10n_mk l10n_ml l10n_mr l10n_ms l10n_nb l10n_nl l10n_nn l10n_or l10n_pa l10n_pl l10n_pt-BR l10n_pt-PT l10n_rm l10n_ro l10n_ru l10n_si l10n_sk l10n_sl l10n_son l10n_sq l10n_sr l10n_sv l10n_ta l10n_te l10n_th l10n_tr l10n_uk l10n_uz l10n_vi l10n_xh l10n_zh-CN l10n_zh-TW +KEYWORDS=~amd64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=jack? ( virtual/jack ) >=dev-libs/nss-3.32 >=dev-libs/nspr-4.16 selinux? ( sec-policy/selinux-mozilla ) >=app-text/hunspell-1.5.4:= dev-libs/atk dev-libs/expat >=x11-libs/cairo-1.10[X] >=x11-libs/gtk+-2.18:2 x11-libs/gdk-pixbuf >=x11-libs/pango-1.22.0 >=media-libs/libpng-1.6.28:0=[apng] >=media-libs/mesa-10.2:* media-libs/fontconfig >=media-libs/freetype-2.4.10 kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) virtual/freedesktop-icon-theme dbus? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) >=dev-libs/glib-2.26:2 >=sys-libs/zlib-1.2.3 >=virtual/libffi-3.0.10 virtual/ffmpeg x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXrender x11-libs/libXt system-cairo? ( >=x11-libs/cairo-1.12[X,xcb] >=x11-libs/pixman-0.19.2 ) system-icu? ( >=dev-libs/icu-58.1:= ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-libevent? ( >=dev-libs/libevent-2.0:0= ) system-sqlite? ( >=dev-db/sqlite-3.19.3:3[secure-delete,debug=] ) system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] ) system-harfbuzz? ( >=media-libs/harfbuzz-1.3.3:0= >=media-gfx/graphite2-1.3.9-r1 ) >=x11-libs/gtk+-3.4.0:3 wifi? ( kernel_linux? ( >=sys-apps/dbus-0.60 >=dev-libs/dbus-glib-0.72 net-misc/networkmanager ) ) pulseaudio? ( || ( media-sound/pulseaudio >=media-sound/apulse-0.1.9 ) ) selinux? ( sec-policy/selinux-mozilla ) +RESTRICT=!bindist? ( bindist ) +SLOT=0 +SRC_URI=l10n_ach? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ach.xpi -> firefox-55.0.1-ach.xpi ) l10n_af? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/af.xpi -> firefox-55.0.1-af.xpi ) l10n_an? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/an.xpi -> firefox-55.0.1-an.xpi ) l10n_ar? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ar.xpi -> firefox-55.0.1-ar.xpi ) l10n_as? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/as.xpi -> firefox-55.0.1-as.xpi ) l10n_ast? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ast.xpi -> firefox-55.0.1-ast.xpi ) l10n_az? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/az.xpi -> firefox-55.0.1-az.xpi ) l10n_bg? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/bg.xpi -> firefox-55.0.1-bg.xpi ) l10n_bn-BD? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/bn-BD.xpi -> firefox-55.0.1-bn-BD.xpi ) l10n_bn-IN? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/bn-IN.xpi -> firefox-55.0.1-bn-IN.xpi ) l10n_br? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/br.xpi -> firefox-55.0.1-br.xpi ) l10n_bs? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/bs.xpi -> firefox-55.0.1-bs.xpi ) l10n_ca? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ca.xpi -> firefox-55.0.1-ca.xpi ) l10n_cak? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/cak.xpi -> firefox-55.0.1-cak.xpi ) l10n_cs? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/cs.xpi -> firefox-55.0.1-cs.xpi ) l10n_cy? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/cy.xpi -> firefox-55.0.1-cy.xpi ) l10n_da? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/da.xpi -> firefox-55.0.1-da.xpi ) l10n_de? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/de.xpi -> firefox-55.0.1-de.xpi ) l10n_dsb? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/dsb.xpi -> firefox-55.0.1-dsb.xpi ) l10n_el? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/el.xpi -> firefox-55.0.1-el.xpi ) l10n_en-GB? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/en-GB.xpi -> firefox-55.0.1-en-GB.xpi ) l10n_en-ZA? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/en-ZA.xpi -> firefox-55.0.1-en-ZA.xpi ) l10n_eo? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/eo.xpi -> firefox-55.0.1-eo.xpi ) l10n_es-AR? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/es-AR.xpi -> firefox-55.0.1-es-AR.xpi ) l10n_es-CL? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/es-CL.xpi -> firefox-55.0.1-es-CL.xpi ) l10n_es-ES? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/es-ES.xpi -> firefox-55.0.1-es-ES.xpi ) l10n_es-MX? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/es-MX.xpi -> firefox-55.0.1-es-MX.xpi ) l10n_et? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/et.xpi -> firefox-55.0.1-et.xpi ) l10n_eu? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/eu.xpi -> firefox-55.0.1-eu.xpi ) l10n_fa? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/fa.xpi -> firefox-55.0.1-fa.xpi ) l10n_ff? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ff.xpi -> firefox-55.0.1-ff.xpi ) l10n_fi? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/fi.xpi -> firefox-55.0.1-fi.xpi ) l10n_fr? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/fr.xpi -> firefox-55.0.1-fr.xpi ) l10n_fy? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/fy-NL.xpi -> firefox-55.0.1-fy-NL.xpi ) l10n_ga? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ga-IE.xpi -> firefox-55.0.1-ga-IE.xpi ) l10n_gd? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/gd.xpi -> firefox-55.0.1-gd.xpi ) l10n_gl? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/gl.xpi -> firefox-55.0.1-gl.xpi ) l10n_gn? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/gn.xpi -> firefox-55.0.1-gn.xpi ) l10n_gu? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/gu-IN.xpi -> firefox-55.0.1-gu-IN.xpi ) l10n_he? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/he.xpi -> firefox-55.0.1-he.xpi ) l10n_hi? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/hi-IN.xpi -> firefox-55.0.1-hi-IN.xpi ) l10n_hr? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/hr.xpi -> firefox-55.0.1-hr.xpi ) l10n_hsb? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/hsb.xpi -> firefox-55.0.1-hsb.xpi ) l10n_hu? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/hu.xpi -> firefox-55.0.1-hu.xpi ) l10n_hy? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/hy-AM.xpi -> firefox-55.0.1-hy-AM.xpi ) l10n_id? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/id.xpi -> firefox-55.0.1-id.xpi ) l10n_is? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/is.xpi -> firefox-55.0.1-is.xpi ) l10n_it? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/it.xpi -> firefox-55.0.1-it.xpi ) l10n_ja? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ja.xpi -> firefox-55.0.1-ja.xpi ) l10n_ka? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ka.xpi -> firefox-55.0.1-ka.xpi ) l10n_kab? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/kab.xpi -> firefox-55.0.1-kab.xpi ) l10n_kk? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/kk.xpi -> firefox-55.0.1-kk.xpi ) l10n_km? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/km.xpi -> firefox-55.0.1-km.xpi ) l10n_kn? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/kn.xpi -> firefox-55.0.1-kn.xpi ) l10n_ko? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ko.xpi -> firefox-55.0.1-ko.xpi ) l10n_lij? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/lij.xpi -> firefox-55.0.1-lij.xpi ) l10n_lt? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/lt.xpi -> firefox-55.0.1-lt.xpi ) l10n_lv? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/lv.xpi -> firefox-55.0.1-lv.xpi ) l10n_mai? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/mai.xpi -> firefox-55.0.1-mai.xpi ) l10n_mk? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/mk.xpi -> firefox-55.0.1-mk.xpi ) l10n_ml? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ml.xpi -> firefox-55.0.1-ml.xpi ) l10n_mr? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/mr.xpi -> firefox-55.0.1-mr.xpi ) l10n_ms? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ms.xpi -> firefox-55.0.1-ms.xpi ) l10n_nb? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/nb-NO.xpi -> firefox-55.0.1-nb-NO.xpi ) l10n_nl? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/nl.xpi -> firefox-55.0.1-nl.xpi ) l10n_nn? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/nn-NO.xpi -> firefox-55.0.1-nn-NO.xpi ) l10n_or? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/or.xpi -> firefox-55.0.1-or.xpi ) l10n_pa? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/pa-IN.xpi -> firefox-55.0.1-pa-IN.xpi ) l10n_pl? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/pl.xpi -> firefox-55.0.1-pl.xpi ) l10n_pt-BR? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/pt-BR.xpi -> firefox-55.0.1-pt-BR.xpi ) l10n_pt-PT? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/pt-PT.xpi -> firefox-55.0.1-pt-PT.xpi ) l10n_rm? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/rm.xpi -> firefox-55.0.1-rm.xpi ) l10n_ro? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ro.xpi -> firefox-55.0.1-ro.xpi ) l10n_ru? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ru.xpi -> firefox-55.0.1-ru.xpi ) l10n_si? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/si.xpi -> firefox-55.0.1-si.xpi ) l10n_sk? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/sk.xpi -> firefox-55.0.1-sk.xpi ) l10n_sl? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/sl.xpi -> firefox-55.0.1-sl.xpi ) l10n_son? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/son.xpi -> firefox-55.0.1-son.xpi ) l10n_sq? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/sq.xpi -> firefox-55.0.1-sq.xpi ) l10n_sr? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/sr.xpi -> firefox-55.0.1-sr.xpi ) l10n_sv? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/sv-SE.xpi -> firefox-55.0.1-sv-SE.xpi ) l10n_ta? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/ta.xpi -> firefox-55.0.1-ta.xpi ) l10n_te? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/te.xpi -> firefox-55.0.1-te.xpi ) l10n_th? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/th.xpi -> firefox-55.0.1-th.xpi ) l10n_tr? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/tr.xpi -> firefox-55.0.1-tr.xpi ) l10n_uk? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/uk.xpi -> firefox-55.0.1-uk.xpi ) l10n_uz? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/uz.xpi -> firefox-55.0.1-uz.xpi ) l10n_vi? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/vi.xpi -> firefox-55.0.1-vi.xpi ) l10n_xh? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/xh.xpi -> firefox-55.0.1-xh.xpi ) l10n_zh-CN? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/zh-CN.xpi -> firefox-55.0.1-zh-CN.xpi ) l10n_zh-TW? ( https://archive.mozilla.org/pub/firefox/releases/55.0.1/linux-i686/xpi/zh-TW.xpi -> firefox-55.0.1-zh-TW.xpi ) https://archive.mozilla.org/pub/firefox/releases/55.0.1/source/firefox-55.0.1.source.tar.xz https://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-55.0-patches-08.tar.xz https://dev.gentoo.org/~axs/mozilla/patchsets/firefox-55.0-patches-08.tar.xz https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/firefox-55.0-patches-08.tar.xz +_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 check-reqs bd050ce908e4637604ee604ed4b78e8f epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b gnome2-utils 8a5e0bf2b8031478ecfeaec753ef4560 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e mozconfig-v6.55 476a9c7e4eee401b864f33c90ef670cb mozcoreconf-v5 aa19131a5fb2f1d108a2c0a1453e2458 mozextension e5d920147bfccf4930062e462e2a417d mozlinguas-v2 e3c0b93bb284269205def793bf37bef5 multilib 97f470f374f2e94ccab04a2fb21d811e pax-utils 4f95120230a315c8caaabeb2307b7eee python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 virtualx 171580f737f5aaf18fcb456548588066 xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120 +_md5_=ae97932dbdf0ac679b6565bb1897997c diff --git a/metadata/md5-cache/x11-apps/mesa-progs-8.2.0 b/metadata/md5-cache/x11-apps/mesa-progs-8.2.0 index f713a8e5afa8..62e65e0bf67a 100644 --- a/metadata/md5-cache/x11-apps/mesa-progs-8.2.0 +++ b/metadata/md5-cache/x11-apps/mesa-progs-8.2.0 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile configure install prepare unpack DEPEND=media-libs/mesa[egl?,gles2?] virtual/opengl x11-libs/libX11 media-libs/glew virtual/glu x11-proto/xproto >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=Mesa's OpenGL utility and demo programs (glxgears and glxinfo) EAPI=5 -HOMEPAGE=http://mesa3d.sourceforge.net/ +HOMEPAGE=https://www.mesa3d.org/ https://mesa.freedesktop.org/ IUSE=egl gles2 KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=LGPL-2 RDEPEND=media-libs/mesa[egl?,gles2?] virtual/opengl x11-libs/libX11 SLOT=0 -SRC_URI=ftp://ftp.freedesktop.org/pub/mesa/demos/8.2.0/mesa-demos-8.2.0.tar.bz2 +SRC_URI=https://mesa.freedesktop.org/archive/demos/8.2.0/mesa-demos-8.2.0.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 base df2aa567b3f0595aae0d0923889f7631 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=e77323333b29a36271b4ddc69c982f1a +_md5_=739bc2adb25130e52e660cdfe066eb87 diff --git a/metadata/md5-cache/x11-apps/mesa-progs-8.3.0 b/metadata/md5-cache/x11-apps/mesa-progs-8.3.0 index b36b45d9fc7c..ca0661bede51 100644 --- a/metadata/md5-cache/x11-apps/mesa-progs-8.3.0 +++ b/metadata/md5-cache/x11-apps/mesa-progs-8.3.0 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile configure install prepare unpack DEPEND=media-libs/mesa[egl?,gles2?] virtual/opengl x11-libs/libX11 media-libs/glew virtual/glu x11-proto/xproto >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=Mesa's OpenGL utility and demo programs (glxgears and glxinfo) EAPI=5 -HOMEPAGE=http://mesa3d.sourceforge.net/ +HOMEPAGE=https://www.mesa3d.org/ https://mesa.freedesktop.org/ IUSE=egl gles2 KEYWORDS=alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=LGPL-2 RDEPEND=media-libs/mesa[egl?,gles2?] virtual/opengl x11-libs/libX11 SLOT=0 -SRC_URI=ftp://ftp.freedesktop.org/pub/mesa/demos/8.3.0/mesa-demos-8.3.0.tar.bz2 +SRC_URI=https://mesa.freedesktop.org/archive/demos/8.3.0/mesa-demos-8.3.0.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 base df2aa567b3f0595aae0d0923889f7631 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=ff7fedd5a1e8cc8915b85e13caabf6ce +_md5_=9c3f3eac8d3d9c345d159db08f68fc61 diff --git a/metadata/md5-cache/x11-apps/mesa-progs-9999 b/metadata/md5-cache/x11-apps/mesa-progs-9999 index 3774adfe289b..eee07a055fb5 100644 --- a/metadata/md5-cache/x11-apps/mesa-progs-9999 +++ b/metadata/md5-cache/x11-apps/mesa-progs-9999 @@ -2,10 +2,10 @@ DEFINED_PHASES=compile configure install prepare unpack DEPEND=media-libs/mesa[egl?,gles2?] virtual/opengl x11-libs/libX11 media-libs/glew virtual/glu x11-proto/xproto >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1 DESCRIPTION=Mesa's OpenGL utility and demo programs (glxgears and glxinfo) EAPI=5 -HOMEPAGE=http://mesa3d.sourceforge.net/ +HOMEPAGE=https://www.mesa3d.org/ https://mesa.freedesktop.org/ IUSE=egl gles2 LICENSE=LGPL-2 RDEPEND=media-libs/mesa[egl?,gles2?] virtual/opengl x11-libs/libX11 SLOT=0 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 base df2aa567b3f0595aae0d0923889f7631 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea git-r3 cbafa3261c37c7e3af44bb16a34ea390 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=a6cd229b7df70776d3d821b244c45988 +_md5_=57eed98ba87d26dc3b435b34cae651c0 diff --git a/metadata/md5-cache/x11-base/xorg-server-1.12.4-r7 b/metadata/md5-cache/x11-base/xorg-server-1.12.4-r7 index ad38225b37a5..fa36ace6ffb1 100644 --- a/metadata/md5-cache/x11-base/xorg-server-1.12.4-r7 +++ b/metadata/md5-cache/x11-base/xorg-server-1.12.4-r7 @@ -12,4 +12,4 @@ REQUIRED_USE=!minimal? ( || ( dmx kdrive xnest xorg xvfb ) ) SLOT=0/1.12.4 SRC_URI=https://www.x.org/releases/individual/xserver/xorg-server-1.12.4.tar.bz2 mirror://gentoo/xorg-server-1.12-cve-2014-8091..8103.patches.tar.xz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=70d3805f219fd8e8d72d5f0e4b98ebc2 +_md5_=c8b5ffde3c63f2987d7d8c98844c03a5 diff --git a/metadata/md5-cache/x11-base/xorg-server-1.15.2-r4 b/metadata/md5-cache/x11-base/xorg-server-1.15.2-r4 index 4dda118fe13f..254efb7be9bb 100644 --- a/metadata/md5-cache/x11-base/xorg-server-1.15.2-r4 +++ b/metadata/md5-cache/x11-base/xorg-server-1.15.2-r4 @@ -12,4 +12,4 @@ REQUIRED_USE=!minimal? ( || ( dmx kdrive xnest xorg xvfb ) ) SLOT=0/1.15.2 SRC_URI=https://www.x.org/releases/individual/xserver/xorg-server-1.15.2.tar.bz2 mirror://gentoo/xorg-server-1.16-cve-2014-8091..8103.patches.tar.xz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=c4208de61488507cadefe09c55abcd8e +_md5_=772492d2821c9741ea411f661a0f6096 diff --git a/metadata/md5-cache/x11-base/xorg-server-1.18.4 b/metadata/md5-cache/x11-base/xorg-server-1.18.4 index acf4a7197c87..5daf9f9bf821 100644 --- a/metadata/md5-cache/x11-base/xorg-server-1.18.4 +++ b/metadata/md5-cache/x11-base/xorg-server-1.18.4 @@ -12,4 +12,4 @@ REQUIRED_USE=!minimal? ( || ( dmx kdrive xephyr xnest xorg xvfb ) ) xephyr? ( kd SLOT=0/1.18.4 SRC_URI=https://www.x.org/releases/individual/xserver/xorg-server-1.18.4.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=f6989af5e09f33e3c50c29e7f0e212a2 +_md5_=f24ccf187944a7b79a575cca5bf33dfd diff --git a/metadata/md5-cache/x11-base/xorg-server-1.19.2 b/metadata/md5-cache/x11-base/xorg-server-1.19.2 index eec6479722ff..e8dc23fa7af6 100644 --- a/metadata/md5-cache/x11-base/xorg-server-1.19.2 +++ b/metadata/md5-cache/x11-base/xorg-server-1.19.2 @@ -12,4 +12,4 @@ REQUIRED_USE=!minimal? ( || ( dmx kdrive wayland xephyr xnest xorg xvfb ) ) xeph SLOT=0/1.19.2 SRC_URI=https://www.x.org/releases/individual/xserver/xorg-server-1.19.2.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=c386464a67e000b00bdfcec585149d78 +_md5_=fe3198c4cbed31eb4c64955bec96422a diff --git a/metadata/md5-cache/x11-base/xorg-server-1.19.3 b/metadata/md5-cache/x11-base/xorg-server-1.19.3 index b64dc685bdf9..ff41c29e411a 100644 --- a/metadata/md5-cache/x11-base/xorg-server-1.19.3 +++ b/metadata/md5-cache/x11-base/xorg-server-1.19.3 @@ -12,4 +12,4 @@ REQUIRED_USE=!minimal? ( || ( dmx kdrive wayland xephyr xnest xorg xvfb ) ) xeph SLOT=0/1.19.3 SRC_URI=https://www.x.org/releases/individual/xserver/xorg-server-1.19.3.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=160ecfb7be4d3c85d9b4f98ecd12fad4 +_md5_=eb4553f1348a66eba218cb95b0902c22 diff --git a/metadata/md5-cache/x11-base/xorg-server-9999 b/metadata/md5-cache/x11-base/xorg-server-9999 index 7a3f1089b710..6d79fe73c7ec 100644 --- a/metadata/md5-cache/x11-base/xorg-server-9999 +++ b/metadata/md5-cache/x11-base/xorg-server-9999 @@ -10,4 +10,4 @@ RDEPEND=>=app-eselect/eselect-opengl-1.3.0 !libressl? ( dev-libs/openssl:0= ) li REQUIRED_USE=!minimal? ( || ( dmx kdrive wayland xephyr xnest xorg xvfb ) ) xephyr? ( kdrive ) SLOT=0/9999 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b git-r3 cbafa3261c37c7e3af44bb16a34ea390 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af versionator c80ccf29e90adea7c5cae94b42eb76d0 xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=ba9f77145ad06ed4cc7a67dd63879277 +_md5_=19eb8781f28c542d493f469d9ed02b13 diff --git a/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.13 b/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.13 index 4853a59e5141..8a6c508433bb 100644 --- a/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.13 +++ b/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.13 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack DEPEND=>=x11-libs/libdrm-2.4.60[video_cards_nouveau] >=x11-libs/libpciaccess-0.10 >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15: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 x11-proto/xf86driproto x11-proto/glproto x11-proto/dri2proto x11-proto/fontsproto x11-proto/randrproto x11-proto/renderproto x11-proto/videoproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto x11-base/xorg-server[-minimal] x11-libs/libdrm x11-base/xorg-server[xorg] x11-libs/libpciaccess DESCRIPTION=Accelerated Open Source driver for nVidia cards EAPI=5 -HOMEPAGE=https://nouveau.freedesktop.org/ +HOMEPAGE=https://nouveau.freedesktop.org/wiki/ KEYWORDS=amd64 ppc ppc64 x86 LICENSE=MIT RDEPEND=>=x11-libs/libdrm-2.4.60[video_cards_nouveau] >=x11-libs/libpciaccess-0.10 x11-base/xorg-server:= x11-base/xorg-server[-minimal] x11-libs/libdrm x11-base/xorg-server[xorg] x11-libs/libpciaccess SLOT=0 SRC_URI=https://www.x.org/releases/individual/driver/xf86-video-nouveau-1.0.13.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=ea4461bc9fab677720fc3778c62dd038 +_md5_=940cd89f41899d7c00b6b13161eba58f diff --git a/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.14 b/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.14 index 25645f289965..13516f5998fe 100644 --- a/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.14 +++ b/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.14 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack DEPEND=>=x11-libs/libdrm-2.4.60[video_cards_nouveau] >=x11-libs/libpciaccess-0.10 >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15: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 x11-proto/xf86driproto x11-proto/glproto x11-proto/dri2proto x11-proto/fontsproto x11-proto/randrproto x11-proto/renderproto x11-proto/videoproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto x11-base/xorg-server[-minimal] x11-libs/libdrm x11-base/xorg-server[xorg] x11-libs/libpciaccess DESCRIPTION=Accelerated Open Source driver for nVidia cards EAPI=5 -HOMEPAGE=https://nouveau.freedesktop.org/ +HOMEPAGE=https://nouveau.freedesktop.org/wiki/ KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=MIT RDEPEND=>=x11-libs/libdrm-2.4.60[video_cards_nouveau] >=x11-libs/libpciaccess-0.10 x11-base/xorg-server:= x11-base/xorg-server[-minimal] x11-libs/libdrm x11-base/xorg-server[xorg] x11-libs/libpciaccess SLOT=0 SRC_URI=https://www.x.org/releases/individual/driver/xf86-video-nouveau-1.0.14.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=26211868aa6ea22bb578f7e09ea19571 +_md5_=862c78c6cfd6f7b7230fcb1d7fc6b266 diff --git a/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.15 b/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.15 index 350b186d5905..b8ac78338497 100644 --- a/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.15 +++ b/metadata/md5-cache/x11-drivers/xf86-video-nouveau-1.0.15 @@ -2,11 +2,11 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack DEPEND=>=x11-libs/libdrm-2.4.60[video_cards_nouveau] >=x11-libs/libpciaccess-0.10 >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15: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 x11-proto/xf86driproto x11-proto/glproto x11-proto/dri2proto x11-proto/fontsproto x11-proto/randrproto x11-proto/renderproto x11-proto/videoproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto x11-base/xorg-server[-minimal] x11-libs/libdrm x11-base/xorg-server[xorg] x11-libs/libpciaccess DESCRIPTION=Accelerated Open Source driver for nVidia cards EAPI=5 -HOMEPAGE=https://nouveau.freedesktop.org/ +HOMEPAGE=https://nouveau.freedesktop.org/wiki/ KEYWORDS=amd64 ~arm64 ppc ppc64 x86 LICENSE=MIT RDEPEND=>=x11-libs/libdrm-2.4.60[video_cards_nouveau] >=x11-libs/libpciaccess-0.10 x11-base/xorg-server:= x11-base/xorg-server[-minimal] x11-libs/libdrm x11-base/xorg-server[xorg] x11-libs/libpciaccess SLOT=0 SRC_URI=https://www.x.org/releases/individual/driver/xf86-video-nouveau-1.0.15.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=ca8d06aac412b8dd5348178a4d8ae70f +_md5_=79f0a8b881d00050a705b3977a5a8a56 diff --git a/metadata/md5-cache/x11-libs/cairo-1.14.10 b/metadata/md5-cache/x11-libs/cairo-1.14.10 index 1934bb86ad71..83319d8479d3 100644 --- a/metadata/md5-cache/x11-libs/cairo-1.14.10 +++ b/metadata/md5-cache/x11-libs/cairo-1.14.10 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-libs/lzo-2.06-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=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_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libpng-1.6.10:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/binutils-libs:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/pixman-0.32.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] directfb? ( dev-libs/DirectFB ) gles2? ( >=media-libs/mesa-9.1.6[gles2,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glib? ( >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=media-libs/mesa-9.1.6[egl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libXrender-0.9.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-gtklibs-20131008-r1 !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)] ) virtual/pkgconfig >=sys-devel/libtool-2 X? ( >=x11-proto/renderproto-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=A vector graphics library with cross-device output support EAPI=6 -HOMEPAGE=http://cairographics.org/ +HOMEPAGE=https://www.cairographics.org IUSE=X aqua debug directfb gles2 +glib opengl static-libs +svg valgrind xcb abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( LGPL-2.1 MPL-1.1 ) @@ -10,6 +10,6 @@ RDEPEND=>=dev-libs/lzo-2.06-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi REQUIRED_USE=gles2? ( !opengl ) RESTRICT=test SLOT=0 -SRC_URI=http://cairographics.org/releases/cairo-1.14.10.tar.xz +SRC_URI=https://www.cairographics.org/releases/cairo-1.14.10.tar.xz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=8921f29b326d0a3619acf3bdccc2d211 +_md5_=2145e9412833360ec15a805c93c481bc diff --git a/metadata/md5-cache/x11-libs/cairo-1.14.8 b/metadata/md5-cache/x11-libs/cairo-1.14.8 index e8261c012a36..b7facd3f1c93 100644 --- a/metadata/md5-cache/x11-libs/cairo-1.14.8 +++ b/metadata/md5-cache/x11-libs/cairo-1.14.8 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=>=dev-libs/lzo-2.06-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=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_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libpng-1.6.10:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/binutils-libs:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/pixman-0.32.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] directfb? ( dev-libs/DirectFB ) gles2? ( >=media-libs/mesa-9.1.6[gles2,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glib? ( >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( || ( >=media-libs/mesa-9.1.6[egl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] media-libs/opengl-apple ) ) X? ( >=x11-libs/libXrender-0.9.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-gtklibs-20131008-r1 !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)] ) virtual/pkgconfig >=sys-devel/libtool-2 X? ( >=x11-proto/renderproto-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=A vector graphics library with cross-device output support EAPI=6 -HOMEPAGE=http://cairographics.org/ +HOMEPAGE=https://www.cairographics.org IUSE=X aqua debug directfb gles2 +glib opengl static-libs +svg valgrind xcb abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 KEYWORDS=alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( LGPL-2.1 MPL-1.1 ) @@ -10,6 +10,6 @@ RDEPEND=>=dev-libs/lzo-2.06-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi REQUIRED_USE=gles2? ( !opengl ) RESTRICT=test SLOT=0 -SRC_URI=http://cairographics.org/releases/cairo-1.14.8.tar.xz +SRC_URI=https://www.cairographics.org/releases/cairo-1.14.8.tar.xz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=38617f9b7214aaa841010fe8fd100585 +_md5_=367bbb192d3d8d8bb9f8b3fa21fb4672 diff --git a/metadata/md5-cache/x11-libs/cairo-9999 b/metadata/md5-cache/x11-libs/cairo-9999 index 3dd9be453983..939f4ea4246b 100644 --- a/metadata/md5-cache/x11-libs/cairo-9999 +++ b/metadata/md5-cache/x11-libs/cairo-9999 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install prepare test unpack DEPEND=>=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=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_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libpng-1.6.10:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/binutils-libs:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/pixman-0.32.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] directfb? ( dev-libs/DirectFB ) gles2? ( >=media-libs/mesa-9.1.6[gles2,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glib? ( >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=media-libs/mesa-9.1.6[egl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) utils? ( >=dev-libs/lzo-2.06-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libXrender-0.9.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-gtklibs-20131008-r1 !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)] ) virtual/pkgconfig >=sys-devel/libtool-2 X? ( >=x11-proto/renderproto-0.11.1-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-vcs/git-1.8.2.1 DESCRIPTION=A vector graphics library with cross-device output support EAPI=6 -HOMEPAGE=http://cairographics.org/ +HOMEPAGE=https://www.cairographics.org IUSE=X aqua debug directfb gles2 +glib opengl static-libs +svg utils valgrind xcb abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 LICENSE=|| ( LGPL-2.1 MPL-1.1 ) RDEPEND=>=media-libs/fontconfig-2.10.92[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=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_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=media-libs/libpng-1.6.10:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] sys-libs/binutils-libs:0=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/pixman-0.32.4[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] directfb? ( dev-libs/DirectFB ) gles2? ( >=media-libs/mesa-9.1.6[gles2,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) glib? ( >=dev-libs/glib-2.34.3:2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) opengl? ( >=media-libs/mesa-9.1.6[egl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) utils? ( >=dev-libs/lzo-2.06-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) X? ( >=x11-libs/libXrender-0.9.8[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libXext-1.3.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libX11-1.6.2[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) xcb? ( >=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) abi_x86_32? ( !<=app-emulation/emul-linux-x86-gtklibs-20131008-r1 !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)] ) @@ -10,4 +10,4 @@ REQUIRED_USE=gles2? ( !opengl ) RESTRICT=test SLOT=0 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b git-r3 cbafa3261c37c7e3af44bb16a34ea390 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=14b87012d8ce62a0d07919a768e80628 +_md5_=c87d03e55eec956e4f3b508e94ecb7ff diff --git a/metadata/md5-cache/x11-libs/libXfont2-9999 b/metadata/md5-cache/x11-libs/libXfont2-9999 index 7289a27144ec..64a5023bc26b 100644 --- a/metadata/md5-cache/x11-libs/libXfont2-9999 +++ b/metadata/md5-cache/x11-libs/libXfont2-9999 @@ -8,4 +8,4 @@ LICENSE=MIT RDEPEND=x11-libs/xtrans x11-libs/libfontenc sys-libs/zlib truetype? ( >=media-libs/freetype-2 ) bzip2? ( app-arch/bzip2 ) x11-proto/xproto >=x11-proto/fontsproto-2.1.3 SLOT=0 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b git-r3 cbafa3261c37c7e3af44bb16a34ea390 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=f55803793e35ed7fdd3c4b5ebcf289e8 +_md5_=c6f2f5e2b016bd8cdcef51fd5bc951d7 diff --git a/metadata/md5-cache/x11-libs/libXres-1.0.7 b/metadata/md5-cache/x11-libs/libXres-1.0.7 index 1423e770dba7..29ea284b697e 100644 --- a/metadata/md5-cache/x11-libs/libXres-1.0.7 +++ b/metadata/md5-cache/x11-libs/libXres-1.0.7 @@ -10,4 +10,4 @@ RDEPEND=x11-libs/libX11 x11-libs/libXext x11-proto/xextproto x11-proto/resourcep SLOT=0 SRC_URI=https://www.x.org/releases/individual/lib/libXres-1.0.7.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=191b1ef3d30010447b5dd782ce844137 +_md5_=19ee56366be3d71f5644fb8589e014d2 diff --git a/metadata/md5-cache/x11-libs/libdrm-2.4.75 b/metadata/md5-cache/x11-libs/libdrm-2.4.75 index 78b5439c03e1..9bf100d1b650 100644 --- a/metadata/md5-cache/x11-libs/libdrm-2.4.75 +++ b/metadata/md5-cache/x11-libs/libdrm-2.4.75 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://dri.freedesktop.org/libdrm/libdrm-2.4.75.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=f3e2d2fee34553ca90f278eb2c6cc7a2 +_md5_=605728fe64f020a50f9cb80962a56831 diff --git a/metadata/md5-cache/x11-libs/libdrm-2.4.79 b/metadata/md5-cache/x11-libs/libdrm-2.4.79 index a7fa9ee519d0..8505d83cd5e9 100644 --- a/metadata/md5-cache/x11-libs/libdrm-2.4.79 +++ b/metadata/md5-cache/x11-libs/libdrm-2.4.79 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://dri.freedesktop.org/libdrm/libdrm-2.4.79.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=7379ce3643a6c5c078c9caffb62d83ca +_md5_=6ba7948c25a720c2c3ce9ee38f20b0f9 diff --git a/metadata/md5-cache/x11-libs/libdrm-2.4.80 b/metadata/md5-cache/x11-libs/libdrm-2.4.80 index 631ff9a65c78..12ef35e43dd8 100644 --- a/metadata/md5-cache/x11-libs/libdrm-2.4.80 +++ b/metadata/md5-cache/x11-libs/libdrm-2.4.80 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://dri.freedesktop.org/libdrm/libdrm-2.4.80.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=134ced1afd4fd122f6bacef57f52427d +_md5_=cdb06b841c72e5ac4991b9d0ea0716d4 diff --git a/metadata/md5-cache/x11-libs/libdrm-2.4.81 b/metadata/md5-cache/x11-libs/libdrm-2.4.81 index 64854a645e15..cccab279d279 100644 --- a/metadata/md5-cache/x11-libs/libdrm-2.4.81 +++ b/metadata/md5-cache/x11-libs/libdrm-2.4.81 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://dri.freedesktop.org/libdrm/libdrm-2.4.81.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=7a6cc8bb2527aae177475898c8259c36 +_md5_=e2ca4f07ee1e2974ba15709f35f72a4c diff --git a/metadata/md5-cache/x11-libs/libdrm-2.4.82 b/metadata/md5-cache/x11-libs/libdrm-2.4.82 index 0eef604d00ca..74d8f16660a8 100644 --- a/metadata/md5-cache/x11-libs/libdrm-2.4.82 +++ b/metadata/md5-cache/x11-libs/libdrm-2.4.82 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://dri.freedesktop.org/libdrm/libdrm-2.4.82.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=7a6cc8bb2527aae177475898c8259c36 +_md5_=e2ca4f07ee1e2974ba15709f35f72a4c diff --git a/metadata/md5-cache/x11-libs/libdrm-9999 b/metadata/md5-cache/x11-libs/libdrm-9999 index bab5112679d9..5b81c25d4c79 100644 --- a/metadata/md5-cache/x11-libs/libdrm-9999 +++ b/metadata/md5-cache/x11-libs/libdrm-9999 @@ -9,4 +9,4 @@ RDEPEND=>=dev-libs/libpthread-stubs-0.3-r1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x RESTRICT=test SLOT=0 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b git-r3 cbafa3261c37c7e3af44bb16a34ea390 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=4c4e1ba2cdeccd09b2f5a9edd35c2465 +_md5_=2fc8061062a87f8025a06efca3b3dd9f diff --git a/metadata/md5-cache/x11-libs/libva-intel-driver-1.7.3 b/metadata/md5-cache/x11-libs/libva-intel-driver-1.7.3 index a31a8c9bb330..9f1b3cbef1b7 100644 --- a/metadata/md5-cache/x11-libs/libva-intel-driver-1.7.3 +++ b/metadata/md5-cache/x11-libs/libva-intel-driver-1.7.3 @@ -8,6 +8,6 @@ KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=>=x11-libs/libva-1.7.2[X?,wayland?,drm?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libdrm-2.4.46[video_cards_intel,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=media-libs/mesa-9.1.6[egl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/wayland-1.0.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 -SRC_URI=https://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/libva-intel-driver-1.7.3.tar.bz2 +SRC_URI=https://github.com/01org/intel-vaapi-driver/archive/1.7.3.tar.gz -> libva-intel-driver-1.7.3.tar.gz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=a897c44c25701fadc9c72b7a4b92b692 +_md5_=fb6816ca3bb11eff898c4d1a4fe577cb diff --git a/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.0 b/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.0 index 7db3c3d7caf4..59b5fdc807ea 100644 --- a/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.0 +++ b/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.0 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libva-1.8.0[X?,wayland?,drm?,abi_x86_32(-)?,abi_x86_64(-)?,ab SLOT=0 SRC_URI=https://github.com/01org/intel-vaapi-driver/archive/1.8.0.tar.gz -> libva-intel-driver-1.8.0.tar.gz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=13f92571d6b8e6f98d10dd77a91dfb57 +_md5_=15732bca9928ca83f014534afaf4e723 diff --git a/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.1 b/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.1 index 9ca9e00b7420..382b4359e309 100644 --- a/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.1 +++ b/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.1 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libva-1.8.0[X?,wayland?,drm?,abi_x86_32(-)?,abi_x86_64(-)?,ab SLOT=0 SRC_URI=https://github.com/01org/intel-vaapi-driver/archive/1.8.1.tar.gz -> libva-intel-driver-1.8.1.tar.gz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=13f92571d6b8e6f98d10dd77a91dfb57 +_md5_=15732bca9928ca83f014534afaf4e723 diff --git a/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.2 b/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.2 index 533c7de413bb..57de485343de 100644 --- a/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.2 +++ b/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.2 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libva-1.8.0[X?,wayland?,drm?,abi_x86_32(-)?,abi_x86_64(-)?,ab SLOT=0 SRC_URI=https://github.com/01org/intel-vaapi-driver/archive/1.8.2.tar.gz -> libva-intel-driver-1.8.2.tar.gz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=13f92571d6b8e6f98d10dd77a91dfb57 +_md5_=15732bca9928ca83f014534afaf4e723 diff --git a/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.3 b/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.3 index 01878c828c37..beec637d45f2 100644 --- a/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.3 +++ b/metadata/md5-cache/x11-libs/libva-intel-driver-1.8.3 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libva-1.8.0[X?,wayland?,drm?,abi_x86_32(-)?,abi_x86_64(-)?,ab SLOT=0 SRC_URI=https://github.com/01org/intel-vaapi-driver/archive/1.8.3.tar.gz -> libva-intel-driver-1.8.3.tar.gz _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=13f92571d6b8e6f98d10dd77a91dfb57 +_md5_=15732bca9928ca83f014534afaf4e723 diff --git a/metadata/md5-cache/x11-libs/libva-intel-driver-9999 b/metadata/md5-cache/x11-libs/libva-intel-driver-9999 index 4ed785e0cef0..41f0bef2ba01 100644 --- a/metadata/md5-cache/x11-libs/libva-intel-driver-9999 +++ b/metadata/md5-cache/x11-libs/libva-intel-driver-9999 @@ -8,4 +8,4 @@ LICENSE=MIT RDEPEND=>=x11-libs/libva-1.8.0[X?,wayland?,drm?,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=x11-libs/libdrm-2.4.46[video_cards_intel,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] wayland? ( >=media-libs/mesa-9.1.6[egl,abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] >=dev-libs/wayland-1.0.6[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) SLOT=0 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea git-r3 cbafa3261c37c7e3af44bb16a34ea390 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af -_md5_=13f92571d6b8e6f98d10dd77a91dfb57 +_md5_=15732bca9928ca83f014534afaf4e723 diff --git a/metadata/md5-cache/x11-libs/libxcb-1.12-r2 b/metadata/md5-cache/x11-libs/libxcb-1.12-r2 index d7a04dc5c3dc..e8996fc7adb1 100644 --- a/metadata/md5-cache/x11-libs/libxcb-1.12-r2 +++ b/metadata/md5-cache/x11-libs/libxcb-1.12-r2 @@ -10,4 +10,4 @@ RDEPEND=>=dev-libs/libpthread-stubs-0.3-r1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86 SLOT=0/1.12 SRC_URI=https://xcb.freedesktop.org/dist/libxcb-1.12.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 python-any-r1 27d7f9da7187d283b7f3eae8390b7b09 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=07b274d46f68266d4196f9a66fd9bb21 +_md5_=3bb34202bcae43aac5ee8bc7cf398e52 diff --git a/metadata/md5-cache/x11-libs/pixman-0.34.0 b/metadata/md5-cache/x11-libs/pixman-0.34.0 index e56cc7156b33..b6cd330187b9 100644 --- a/metadata/md5-cache/x11-libs/pixman-0.34.0 +++ b/metadata/md5-cache/x11-libs/pixman-0.34.0 @@ -10,4 +10,4 @@ RDEPEND=abi_x86_32? ( !app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] ) SLOT=0 SRC_URI=https://www.x.org/releases/individual/lib/pixman-0.34.0.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=23254b1a45159e7f4a9ec1f012223ba0 +_md5_=d7265947ddb1917442b493995c29dcfa diff --git a/metadata/md5-cache/x11-libs/pixman-9999 b/metadata/md5-cache/x11-libs/pixman-9999 index a81648e3f8bf..09b5cdf19b2a 100644 --- a/metadata/md5-cache/x11-libs/pixman-9999 +++ b/metadata/md5-cache/x11-libs/pixman-9999 @@ -8,4 +8,4 @@ LICENSE=MIT RDEPEND=abi_x86_32? ( !app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] ) SLOT=0 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b git-r3 cbafa3261c37c7e3af44bb16a34ea390 libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=3cf330fb9d826b89f9f166a7eb2efe1d +_md5_=c368b43da1d9855ae7603ff2166f269d diff --git a/metadata/md5-cache/x11-libs/xcb-util-0.4.0 b/metadata/md5-cache/x11-libs/xcb-util-0.4.0 index 480376f523f8..1d29ea8388b2 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-0.4.0 +++ b/metadata/md5-cache/x11-libs/xcb-util-0.4.0 @@ -11,4 +11,4 @@ RDEPEND=>=x11-libs/libxcb-1.9.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?, SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist//xcb-util-0.4.0.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=e51590e3505424c1545a19fa80de70ef +_md5_=14d7ba1096703912aa45a6194fb76b95 diff --git a/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.1-r1 b/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.1-r1 index 89d3546c9aaf..d0d9603bad22 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.1-r1 +++ b/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.1-r1 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,ab SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist//xcb-util-cursor-0.1.1.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=af6c5e14ad0571bb71f3d651cccde825 +_md5_=a79d58534f7975567bfd35b3fa8aac84 diff --git a/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.2 b/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.2 index 8d53bbde935f..aa49efaa9991 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.2 +++ b/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.2 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,ab SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist//xcb-util-cursor-0.1.2.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=af6c5e14ad0571bb71f3d651cccde825 +_md5_=a79d58534f7975567bfd35b3fa8aac84 diff --git a/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.3-r1 b/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.3-r1 index 430a598b1c91..16f5a9ed32fa 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.3-r1 +++ b/metadata/md5-cache/x11-libs/xcb-util-cursor-0.1.3-r1 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,ab SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist//xcb-util-cursor-0.1.3.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=157785496548d5e089a3d100da54f516 +_md5_=c99189d9b61e3d9d3d67e62827494178 diff --git a/metadata/md5-cache/x11-libs/xcb-util-image-0.4.0 b/metadata/md5-cache/x11-libs/xcb-util-image-0.4.0 index 28d0f7099591..8333266d32a5 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-image-0.4.0 +++ b/metadata/md5-cache/x11-libs/xcb-util-image-0.4.0 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libxcb-1.9.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?, SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist//xcb-util-image-0.4.0.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=51d2d8da973cd1672614260b80dfaa02 +_md5_=f81e52fc71655e506560cf91bdca070d diff --git a/metadata/md5-cache/x11-libs/xcb-util-keysyms-0.4.0 b/metadata/md5-cache/x11-libs/xcb-util-keysyms-0.4.0 index f6411ae83e69..5296eb3f5995 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-keysyms-0.4.0 +++ b/metadata/md5-cache/x11-libs/xcb-util-keysyms-0.4.0 @@ -10,4 +10,4 @@ RDEPEND=x11-libs/libxcb:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist//xcb-util-keysyms-0.4.0.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=c7458692619a5b3eeb93e7fd88dad1ed +_md5_=b89e1696fe08857d4ded17ea6ca65162 diff --git a/metadata/md5-cache/x11-libs/xcb-util-renderutil-0.3.9-r1 b/metadata/md5-cache/x11-libs/xcb-util-renderutil-0.3.9-r1 index 46d9c1d05764..4abf2d2dd69b 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-renderutil-0.3.9-r1 +++ b/metadata/md5-cache/x11-libs/xcb-util-renderutil-0.3.9-r1 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libxcb-1.9.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?, SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist//xcb-util-renderutil-0.3.9.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=7e16dbd95f87954133a3dc71526fb892 +_md5_=b797efbb367bd64d7173df63ecb645fd diff --git a/metadata/md5-cache/x11-libs/xcb-util-wm-0.4.1-r1 b/metadata/md5-cache/x11-libs/xcb-util-wm-0.4.1-r1 index c183f15bb57a..b52ab207f888 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-wm-0.4.1-r1 +++ b/metadata/md5-cache/x11-libs/xcb-util-wm-0.4.1-r1 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libxcb-1.9.1:=[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?, SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist//xcb-util-wm-0.4.1.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=7d22a7fc333db34eadad4a25874580c7 +_md5_=8d318c9d665a7eff65381ebfff5bcd8e diff --git a/metadata/md5-cache/x11-libs/xcb-util-xrm-1.0 b/metadata/md5-cache/x11-libs/xcb-util-xrm-1.0 index c162bab1884d..616e4feffa40 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-xrm-1.0 +++ b/metadata/md5-cache/x11-libs/xcb-util-xrm-1.0 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack DEPEND=>=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/xcb-util[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] test? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15: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 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 ) ) DESCRIPTION=X C-language Bindings sample implementations EAPI=5 -HOMEPAGE=http://xcb.freedesktop.org/ +HOMEPAGE=https://xcb.freedesktop.org/ IUSE=test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 static-libs doc KEYWORDS=amd64 ~arm x86 LICENSE=MIT @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,ab SLOT=0 SRC_URI=https://github.com/Airblader/xcb-util-xrm/releases/download/v1.0/xcb-util-xrm-1.0.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=096e79632b621e0ab5c237aa41ca3ae9 +_md5_=58edd6a77bbf1a1d7f16fdd35eee2257 diff --git a/metadata/md5-cache/x11-libs/xcb-util-xrm-1.2 b/metadata/md5-cache/x11-libs/xcb-util-xrm-1.2 index 66a9c4c85846..b84930f32ee4 100644 --- a/metadata/md5-cache/x11-libs/xcb-util-xrm-1.2 +++ b/metadata/md5-cache/x11-libs/xcb-util-xrm-1.2 @@ -2,7 +2,7 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test unpack DEPEND=>=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] x11-libs/xcb-util[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] test? ( x11-libs/libX11[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?,abi_ppc_32(-)?,abi_ppc_64(-)?,abi_s390_32(-)?,abi_s390_64(-)?] ) >=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15: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 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 ) ) DESCRIPTION=X C-language Bindings sample implementations EAPI=5 -HOMEPAGE=http://xcb.freedesktop.org/ +HOMEPAGE=https://xcb.freedesktop.org/ IUSE=test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 abi_ppc_32 abi_ppc_64 abi_s390_32 abi_s390_64 static-libs doc KEYWORDS=amd64 ~arm x86 LICENSE=MIT @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/libxcb-1.9.1[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,ab SLOT=0 SRC_URI=https://github.com/Airblader/xcb-util-xrm/releases/download/v1.2/xcb-util-xrm-1.2.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=096e79632b621e0ab5c237aa41ca3ae9 +_md5_=58edd6a77bbf1a1d7f16fdd35eee2257 diff --git a/metadata/md5-cache/x11-libs/xpyb-1.3.1-r3 b/metadata/md5-cache/x11-libs/xpyb-1.3.1-r3 index bf101d778549..373c1426f3df 100644 --- a/metadata/md5-cache/x11-libs/xpyb-1.3.1-r3 +++ b/metadata/md5-cache/x11-libs/xpyb-1.3.1-r3 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist/xpyb-1.3.1.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=7dbb09a7debc7398bc0a9460780989bc +_md5_=3efdb94dd670b3b9af43a8f198cdf768 diff --git a/metadata/md5-cache/x11-misc/util-macros-1.19.1 b/metadata/md5-cache/x11-misc/util-macros-1.19.1 index b57d117e98d7..ac1fe1bc0d1a 100644 --- a/metadata/md5-cache/x11-misc/util-macros-1.19.1 +++ b/metadata/md5-cache/x11-misc/util-macros-1.19.1 @@ -8,4 +8,4 @@ LICENSE=MIT SLOT=0 SRC_URI=https://www.x.org/releases/individual/util/util-macros-1.19.1.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=0550facc82d1e72598264cd2544db335 +_md5_=43e992ef8a77b0049dad55fb84106362 diff --git a/metadata/md5-cache/x11-misc/xkeyboard-config-2.20 b/metadata/md5-cache/x11-misc/xkeyboard-config-2.20 index e8b22a72820b..1269a502660b 100644 --- a/metadata/md5-cache/x11-misc/xkeyboard-config-2.20 +++ b/metadata/md5-cache/x11-misc/xkeyboard-config-2.20 @@ -9,4 +9,4 @@ RDEPEND=!=app-portage/elt-patches-20170422 !=sys-devel/automake-1.15: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 -DESCRIPTION=X.Org EvIE protocol headers -EAPI=3 -HOMEPAGE=https://www.x.org/wiki/ -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris -LICENSE=MIT -SLOT=0 -SRC_URI=https://www.x.org/releases/individual/proto/evieext-1.1.1.tar.bz2 -_eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multilib 97f470f374f2e94ccab04a2fb21d811e toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=74e63c77db244a2b1cb1e2fdbf07effc diff --git a/metadata/md5-cache/x11-proto/xcb-proto-1.12-r2 b/metadata/md5-cache/x11-proto/xcb-proto-1.12-r2 index 756aadeb0210..d9ddb7002304 100644 --- a/metadata/md5-cache/x11-proto/xcb-proto-1.12-r2 +++ b/metadata/md5-cache/x11-proto/xcb-proto-1.12-r2 @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targe SLOT=0 SRC_URI=https://xcb.freedesktop.org/dist/xcb-proto-1.12.tar.bz2 _eclasses_=autotools 7027963e8e8cc12c91117bdb9225dc26 autotools-multilib f4848d9634439c7203cb7dd3b9650fff autotools-utils 5a4611dfba155b1659528663fad4cd5e epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea flag-o-matic 61cad4fb5d800b29d484b27cb033f59b libtool 0081a71a261724730ec4c248494f044d ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multilib-build eed53a6313267c9fbcd35fc384bd0087 multilib-minimal 9139c3a57e077cb8e0d0f73ceb080b89 python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 185a06792159ca143528e7010368e8af xorg-2 85b1e64779a3286b1224aef7dcfbca28 -_md5_=40ddcfca46c7dfb32c3b740b79380fc4 +_md5_=85c0eb35e2aeeebae25938c637cf7d0c diff --git a/metadata/md5-cache/x11-themes/gentoo10-backgrounds-20110309 b/metadata/md5-cache/x11-themes/gentoo10-backgrounds-20110309 index 42a41a81dbdf..a74e46e3ef53 100644 --- a/metadata/md5-cache/x11-themes/gentoo10-backgrounds-20110309 +++ b/metadata/md5-cache/x11-themes/gentoo10-backgrounds-20110309 @@ -2,9 +2,9 @@ DEFINED_PHASES=compile install prepare test DEPEND=app-arch/xz-utils DESCRIPTION=Gentoo - 10 Years Compiling Background Artwork EAPI=5 -HOMEPAGE=https://www.gentoo.org/proj/en/pr/releases/10.0/graphics.xml +HOMEPAGE=https://www.gentoo.org/inside-gentoo/artwork/ KEYWORDS=amd64 ~mips x86 LICENSE=CC-BY-SA-3.0 SLOT=0 SRC_URI=https://dev.gentoo.org/~flameeyes/gentoo10-backgrounds-20110309.tar.xz -_md5_=5f031cbcb93956589b142b0566e6454e +_md5_=1e2f01d7e17d1ea2c21ccbe3868eabc8 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 8aea9876f1db..16f3466d80d5 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Wed, 16 Aug 2017 06:09:04 +0000 +Wed, 16 Aug 2017 19:09:06 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 897a7549700a..41e517a4d90f 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Wed Aug 16 06:09:04 UTC 2017 +Wed Aug 16 18:39:06 UTC 2017 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 52eb345aae7a..9b002f3c4238 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Wed, 16 Aug 2017 06:30:01 +0000 +Wed, 16 Aug 2017 19:00:01 +0000 diff --git a/metadata/timestamp.commit b/metadata/timestamp.commit index 25c1834e90d1..488aa43d9fd4 100644 --- a/metadata/timestamp.commit +++ b/metadata/timestamp.commit @@ -1 +1 @@ -5b41b4fb3fc10a2b4046fb2c8c97d9b824505f20 1502860521 2017-08-16T05:15:21+00:00 +0305b5ebd2c552ef4e639c7da23d4f3f0a199acd 1502907114 2017-08-16T18:11:54+00:00 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 5db47361cad8..6693cddbb03f 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1502863501 Wed 16 Aug 2017 06:05:01 AM UTC +1502908501 Wed 16 Aug 2017 06:35:01 PM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 8aea9876f1db..16f3466d80d5 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Wed, 16 Aug 2017 06:09:04 +0000 +Wed, 16 Aug 2017 19:09:06 +0000 diff --git a/net-analyzer/nagios-core/Manifest b/net-analyzer/nagios-core/Manifest index 5e689a5128ca..f1029f0cbd78 100644 --- a/net-analyzer/nagios-core/Manifest +++ b/net-analyzer/nagios-core/Manifest @@ -1,4 +1,4 @@ DIST nagios-3.5.1.tar.gz 1763584 SHA256 ca9dd68234fa090b3c35ecc8767b2c9eb743977eaf32612fa9b8341cc00a0f99 SHA512 48e2ecb91002b08203937b12a438c87c62cd3c5c401a0ed9e861cd6d79074c7017ed373e9379f013d87dea1fd7cb8e3d85112d55c87ac91aed96b256868c112d WHIRLPOOL 2c02584702c64dbb0e353e34b758fab079eee0dc7a401e7b5947a21733758d3596401e5519e2dd7f05c89ee4835c21965d2718157fd9d6d3d20af9c853d688ca DIST nagios-4.3.1.tar.gz 11095797 SHA256 dfc2f5f146eb508b2a28d28af7c338ef9eb604327efdc50142642026f7e79f82 SHA512 d5f1919e2b32b0b2f4c5766367f0992fcf9b1f6766f4d3386e15e318cc1f57cdae6bc07f09464fd8212bef1713948fcb25d233eab588438036f996b6c479c97e WHIRLPOOL 72032e93802fd28db71bb5a10bba703a9508c587de69ff24ce302ad4fbbd93996b4800ceb7dd4f5648e2717377409cd7a66591f177e775da1c69444d528be1a2 -DIST nagios-4.3.2.tar.gz 11096863 SHA256 687814b40b03b40361377aeace057dddb23459ffb8c00434bc1a95b21ccdf796 SHA512 679e76f7a232b9b0dbbc2697f51b58d09ae3d3833e0e6922bb39d90768c81f2eb09b9ab36b7fdaeca893cebd93fc1edc1232f245498d4420980ba4659df60a31 WHIRLPOOL 27c1d479c6b8293e1a614721e891d7358f154d15f18c70ce9591ce1e16f459812fd37df65caf96d99aeaa19bb08cafe5b753f4754ec790795041030d3ff1e4d6 +DIST nagios-4.3.3.tar.gz 11101531 SHA256 1fc4c72f76c720884dd3b538dc423b44f3bdde24e014f4212e58046a1fc114b6 SHA512 588292a95342cb2d95d7b58f70442b82b99a23dd9fdc1390e9ae0743626a047e5127d77b1d7e6a1d8edd6f34a425e581bcd42459b673a0ddea14125bde4b7d9e WHIRLPOOL 1452256a79190eae90076a9b50fdac3876557a6382d15d38a0c7930ec6d286c58e44220fee3243c9bcb1ae0ef337ddadd19e3552f02049959e69eaffd9fcd4a8 DIST nagios-core-gentoo-icons-20141125.tar 40960 SHA256 68b715f636eb291343cab3259862bbed8b6b898520b58df522438524de3d8761 SHA512 bf109879cddd6136b76baba55d0b60b2596e37431dcf5ce0905d34a9fa292ebf7e4bde82d9a084362c486e8fac344c76d88f9298b1b85541ed70ffd608493766 WHIRLPOOL 7ec3a944b2a659b456d3168818ca5b1af3a427436e6af2f3e5d6cba6fc7b1c7bad6f552301f064df31988865b3b32fd117d9e6f61c630d6d817a51cbbbcb331d diff --git a/net-analyzer/nagios-core/nagios-core-4.3.2.ebuild b/net-analyzer/nagios-core/nagios-core-4.3.3.ebuild similarity index 98% rename from net-analyzer/nagios-core/nagios-core-4.3.2.ebuild rename to net-analyzer/nagios-core/nagios-core-4.3.3.ebuild index efcd6c2484cf..650b8786d5de 100644 --- a/net-analyzer/nagios-core/nagios-core-4.3.2.ebuild +++ b/net-analyzer/nagios-core/nagios-core-4.3.3.ebuild @@ -114,7 +114,7 @@ src_compile() { } src_install() { - dodoc Changelog INSTALLING LEGAL README.asciidoc UPGRADING + dodoc Changelog CONTRIBUTING.md README.asciidoc THANKS UPGRADING emake DESTDIR="${D}" install-base emake DESTDIR="${D}" install-basic @@ -141,8 +141,7 @@ src_install() { insopts --mode=0644 # Back to the default... fi - newinitd "${FILESDIR}"/nagios4-r1 nagios - newconfd "${FILESDIR}"/conf.d nagios + newinitd openrc-init nagios if use web ; then if use apache2 ; then diff --git a/net-analyzer/nagios/nagios-4.3.2.ebuild b/net-analyzer/nagios/nagios-4.3.3.ebuild similarity index 100% rename from net-analyzer/nagios/nagios-4.3.2.ebuild rename to net-analyzer/nagios/nagios-4.3.3.ebuild diff --git a/profiles/arch/x86/package.use.mask b/profiles/arch/x86/package.use.mask index 04d772e731a4..e9026d44337d 100644 --- a/profiles/arch/x86/package.use.mask +++ b/profiles/arch/x86/package.use.mask @@ -3,10 +3,6 @@ # This file requires >=portage-2.1.1 -# Gilles Dartiguelongue (16 Aug 2017) -# missing keyword on dev-python/dbusmock, bug #620024 ->=gnome-base/gnome-settings-daemon-3.24 test - # Michał Górny (07 Aug 2017) # Requires USE=cuda that is masked in this profile. media-gfx/blender opensubdiv diff --git a/profiles/info_vars b/profiles/info_vars index d4566dbde0ab..c9ad674c47af 100644 --- a/profiles/info_vars +++ b/profiles/info_vars @@ -31,6 +31,5 @@ PORTDIR PORTDIR_OVERLAY SYNC USE -USE_PYTHON PORTAGE_RSYNC_OPTS PORTAGE_RSYNC_EXTRA_OPTS diff --git a/profiles/package.mask b/profiles/package.mask index 707890ff8061..ab6e20ff3533 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -33,6 +33,7 @@ # Not ready for production yet. =dev-java/javatoolkit-0.4.0 =dev-java/javatoolkit-0.5.0 +=dev-java/javatoolkit-9999 # Pawel Hajdan, Jr. (09 Aug 2017) # Dev channel releases are only for people who are developers or want more @@ -220,15 +221,6 @@ dev-lang/spidermonkey:52 # Keep shotwell development series masked. >=media-gfx/shotwell-0.27 -# Matt Turner (16 Jul 2017) -# Header package for removed x11-libs/libXevie. No dependencies. Removal in a -# month (#615314) -x11-proto/evieext - -# Thomas Deutschmann (16 Jul 2017) -# Discontinued project with multiple vulnerabilities, removal in a month (#620802) -media-gfx/autotrace - # Pacho Ramos (14 Jul 2017) # Doesn't work with >=openvpn-2.3, bug 470696 # Fix is work in progress, see above bug. dilfridge@g.o diff --git a/profiles/updates/3Q-2017 b/profiles/updates/3Q-2017 index 2f1fe9587e16..f82bd13a9aeb 100644 --- a/profiles/updates/3Q-2017 +++ b/profiles/updates/3Q-2017 @@ -44,3 +44,7 @@ move app-i18n/anthy-ss app-i18n/anthy move dev-libs/kirigami kde-frameworks/kirigami slotmove kde-frameworks/kirigami 2 5 move app-i18n/libtomoe-gtk app-i18n/tomoe-gtk +move app-i18n/ibus-table-code app-i18n/ibus-table-others +move app-i18n/ibus-table-cyrillic app-i18n/ibus-table-others +move app-i18n/ibus-table-tv app-i18n/ibus-table-others +move dev-libs/libchewing app-i18n/libchewing diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 4dae85991af1..3edea4bb3ebd 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -769,6 +769,7 @@ app-i18n/freewnn:uum - Build uum app-i18n/ibus:emoji - Enable support for Emoji app-i18n/ibus:gconf - Enable support for gnome-base/gconf app-i18n/ibus:gtk2 - Enable support for x11-libs/gtk+:2 +app-i18n/ibus-chewing:gconf - Enable support for gnome-base/gconf app-i18n/ibus-handwrite:zinnia - Enable support for app-i18n/zinnia app-i18n/ibus-libpinyin:boost - Compile against dev-libs/boost libraries app-i18n/ibus-libpinyin:opencc - Enable support for app-i18n/opencc diff --git a/sci-libs/scikits_learn/Manifest b/sci-libs/scikits_learn/Manifest index 9b7f7d03ef77..ee5111b5906f 100644 --- a/sci-libs/scikits_learn/Manifest +++ b/sci-libs/scikits_learn/Manifest @@ -2,3 +2,4 @@ DIST scikit-learn-0.17.1.tar.gz 7898571 SHA256 9f4cf58e57d81783289fc503caaed1f21 DIST scikit-learn-0.17.tar.gz 7834903 SHA256 23a5b6804524cb2cd54d8310010169511c7633dcf69af7439747eec02677f314 SHA512 53a76e2f90e27967bf216cd9d7e8051ed847a3381e3b7b7b8236511b4105eef41bd4d3c9f7f71a51db4b0bf99cbd571d7c1b26803757cff04424b70cb834b555 WHIRLPOOL 3a1ef13dafe6eb38389f68bc75dee10bfe141bac6d2782cd11be27ffcb8fe7efdf113b6911a238c6cd141bfe3b69960f47cf0725d0ea033129dff8fb5c57bef4 DIST scikit-learn-0.18.1.tar.gz 8933930 SHA256 1eddfc27bb37597a5d514de1299981758e660e0af56981c0bfdf462c9568a60c SHA512 7149e683424351a28c19501302ece147cb03d4d12b08822eb2b1898a4978b96803323778fbba628008dd7a7c85daea4e9b550a71ee76851f9a09b2baac18a799 WHIRLPOOL c709586d3b8bdd938a81e97cfc5c77e31b7b0ef068c2d3f6ec922999a524d9ba0234ca42270724b2f6f3da98409b6d85b229aa241adbc02136b95bbb91c757b6 DIST scikit-learn-0.18.2.tar.gz 9224516 SHA256 f78c3e11bf38838eaf637cdd9e8d6b575a4a4048d1670a03a72b0d00d3f39ffa SHA512 7c5c7bdd577ad215790654ce1eff6e802aebe53283ab6c5f12684cf99aeecc8976f9a9803f619f549d4d03be0d7634f249046e4b4f15afa12aecb2697e2e0b05 WHIRLPOOL eb4ca45c73892ca378bd580f00fd4d7ad3ea886d9522586e88bf291162cb30bd3bb23ead2c5d2283010fac650d183c0979710f30d1ba4a57f12a8e87052df847 +DIST scikit-learn-0.19.0.tar.gz 9341628 SHA256 24f5cb67559e0df27827b1804b197431c08880d2ec9285724fac90906830021f SHA512 1b88bc043b08de9b5bb1f3814b8101c73ced010cf94bd725fb69e1ef95b4a9597a34de4a19f84fbbf63e54d47e95b3ff498d611234fcdfcaa5e4e3cf696289d2 WHIRLPOOL 8131244337c0f491fe687f823164d6ee067b3531576243367c3c99069d5a395b8b38acbc1d446046bd05588637f7ddf329f5a3af9a707efad43f3cbb0d7da492 diff --git a/sci-libs/scikits_learn/scikits_learn-0.19.0.ebuild b/sci-libs/scikits_learn/scikits_learn-0.19.0.ebuild new file mode 100644 index 000000000000..0b9b744c56a6 --- /dev/null +++ b/sci-libs/scikits_learn/scikits_learn-0.19.0.ebuild @@ -0,0 +1,106 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 flag-o-matic + +MYPN="${PN/scikits_/scikit-}" +MYP="${MYPN}-${PV}" + +DESCRIPTION="Python modules for machine learning and data mining" +HOMEPAGE="http://scikit-learn.org" +SRC_URI="mirror://pypi/${MYPN:0:1}/${MYPN}/${MYP}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="examples test" + +# tried to unbundle virtual/python-funcsigs, funcsigs, odict +# but it is a large mess to maintain + +RDEPEND=" + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/numpy[lapack,${PYTHON_USEDEP}] + sci-libs/scikits[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + virtual/blas:= + virtual/cblas:= +" + +DEPEND=" + dev-python/cython[${PYTHON_USEDEP}] + dev-python/numpy[lapack,${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + virtual/blas:= + virtual/cblas:= +" + +S="${WORKDIR}/${MYP}" + +PATCHES=( "${FILESDIR}"/${PN}-0.18.1-system-cblas.patch ) + +python_prepare_all() { + # bug #397605 + [[ ${CHOST} == *-darwin* ]] \ + && append-ldflags -bundle "-undefined dynamic_lookup" \ + || append-ldflags -shared + + # scikits-learn now uses the horrible numpy.distutils automagic + export SCIPY_FCONFIG="config_fc --noopt --noarch" + + # remove bundled cblas + rm -r sklearn/src || die + + # commented out, since it is a mess to maintain + # use system joblib + #rm -r sklearn/externals/joblib || die + #sed -i -e '/joblib/d' sklearn/externals/setup.py || die + #for f in sklearn/{*/,}*.py; do + # sed -r -e '/^from/s/(sklearn|\.|)\.externals\.joblib/joblib/' \ + # -e 's/from (sklearn|\.|)\.externals import/import/' -i $f || die + #done + + # use system funcsigs and odict + #rm sklearn/externals/funcsigs.py || die + #rm sklearn/externals/odict.py || die + #for f in sklearn/{utils/fixes.py,gaussian_process/{tests/test_,}kernels.py}; do + # sed -r -e 's/from (sklearn|\.|)\.externals\.funcsigs/from funcsigs/' -i $f || die + #done + distutils-r1_python_prepare_all +} + +python_compile() { + distutils-r1_python_compile ${SCIPY_FCONFIG} +} + +python_test() { + # doc builds and runs tests + use doc && return + distutils_install_for_testing ${SCIPY_FCONFIG} + esetup.py install \ + --root="${T}/test-${EPYTHON}" \ + --no-compile ${SCIPY_FCONFIG} + pushd "${T}/test-${EPYTHON}/$(python_get_sitedir)" || die > /dev/null + JOBLIB_MULTIPROCESSING=2 SKLEARN_SKIP_NETWORK_TESTS=1 nosetests -v sklearn --exe || die + popd > /dev/null +} + +python_install() { + distutils-r1_python_install ${SCIPY_FCONFIG} +} + +python_install_all() { + find "${S}" -name \*LICENSE.txt -delete + distutils-r1_python_install_all + if use examples; then + dodoc -r examples + docompress -x /usr/share/doc/${PF}/examples + fi + +} diff --git a/sci-libs/symengine/symengine-0.3.0.ebuild b/sci-libs/symengine/symengine-0.3.0-r1.ebuild similarity index 89% rename from sci-libs/symengine/symengine-0.3.0.ebuild rename to sci-libs/symengine/symengine-0.3.0-r1.ebuild index 45298fd2cbb7..c493c94e39e8 100644 --- a/sci-libs/symengine/symengine-0.3.0.ebuild +++ b/sci-libs/symengine/symengine-0.3.0-r1.ebuild @@ -33,7 +33,11 @@ pkg_pretend() { src_prepare() { cmake-utils_src_prepare sed -e "s|DESTINATION doc| DESTINATION share/doc/${PF}/html|" \ - -i CMakeLists.txt || die + -e "s|/lib|/$(get_libdir)|g" \ + -e "s|lib/|$(get_libdir)/|g" \ + -e "/DESTINATION/s|lib|$(get_libdir)|g" \ + -i CMakeLists.txt symengine/CMakeLists.txt \ + symengine/utilities/teuchos/CMakeLists.txt || die } src_configure() { diff --git a/sci-visualization/visit/visit-2.12.3.ebuild b/sci-visualization/visit/visit-2.12.3.ebuild index 387525ded2cb..ec2e42d3b3fd 100644 --- a/sci-visualization/visit/visit-2.12.3.ebuild +++ b/sci-visualization/visit/visit-2.12.3.ebuild @@ -24,6 +24,7 @@ RDEPEND=" netcdf? ( sci-libs/netcdf ) silo? ( sci-libs/silo ) =sci-libs/vtk-6.1.0*[imaging,mpi=,python,rendering,qt5,xdmf2?,${PYTHON_USEDEP}] + dev-qt/qtx11extras sys-libs/zlib x11-libs/qwt:6[qt5]" DEPEND="${RDEPEND} diff --git a/sys-apps/openrc/Manifest b/sys-apps/openrc/Manifest index 70bb0040acf8..0f6150ee1bf7 100644 --- a/sys-apps/openrc/Manifest +++ b/sys-apps/openrc/Manifest @@ -7,3 +7,4 @@ DIST openrc-0.26.2.tar.gz 218990 SHA256 428512ef82002c913d44394adae8a2bb9a1c935d DIST openrc-0.26.3.tar.gz 218708 SHA256 f54b353addd3efe1b3c31098c792b9c0052b893d7e1a353619cf11e189b5f8e7 SHA512 5dead32c2141c959bca637bc1621eb7fe6fe60a4e8aa92b447052b5efb92c25ef33a382b8432cb482e820c921a879f3bf3268459d59baca9fd310a228886415d WHIRLPOOL 4d79bb49f5223594bebef9961e304b535e6f5e32693e0c0394574e353cc81a917619cb37e66bd7f87f8f92523cdfab21461fb640def85fb1cd85129ea2ba07aa DIST openrc-0.27.2.tar.gz 223572 SHA256 4e9c12c77c101b6ea255f1a9291c4c4d228c7ddc8b8ef4aa8d5d6f6900958ea5 SHA512 a3f3ed8f6dbd188065fc4ed0af1e4ca0d203dbad092bc67405bea182be359bf37c9c94cb97d898c0d34befef92e9d8a2f6a8b4bafe7e95fcaa291b5d0aabed22 WHIRLPOOL 4837d2244d5894dfdab0fcc36f791500eada82c0378e944443b4b76c7191abe67d9b3cacf5c6e787ebbfdaff2f8792878b7cb8894e3dbc3ff2444fab6596aeb4 DIST openrc-0.28.tar.gz 224228 SHA256 9548b03ffc164f75887d810469f0535a16c5c8c2e615e250d5753a16e66cf317 SHA512 a10c293bf4287bcc4ffb9c996cbc1294f979483ea9fb2efb0dd1becee193f49ff114530c078850e8c11cf2c0a812be2e74801352fdbfe313b90cd9af5b8ccf93 WHIRLPOOL d55ae26bef0ebf4c17f484c476c08cefe40d0bdaf55a571bb4cfefaf67248661661eb28936e509c4bbccb2f4a0e36e8d01f7b6ae3dc2b1831f571b26d0ac6223 +DIST openrc-0.29.tar.gz 223275 SHA256 b919c4520e93ba02db24e7766d32688928d5bb0cc8fe2f250277c46274d99927 SHA512 1accc52c3e729432fee433395eb7551fa7913004999c595f6485a0505b7916338df6d9e7d95304e865adf67df54378525a758b34bb67beefe240a90700e4f7d8 WHIRLPOOL 341ae930257f23513fd3582a7e329c48f546d306c467bab3430a8838c343d5697db5941e3590a8f1c33f34a0eefac07f0fb9c0e4a752d1659293374057cc4aea diff --git a/sys-apps/openrc/openrc-0.29.ebuild b/sys-apps/openrc/openrc-0.29.ebuild new file mode 100644 index 000000000000..278de480e1f2 --- /dev/null +++ b/sys-apps/openrc/openrc-0.29.ebuild @@ -0,0 +1,329 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit flag-o-matic pam toolchain-funcs + +DESCRIPTION="OpenRC manages the services, startup and shutdown of a host" +HOMEPAGE="https://github.com/openrc/openrc/" + +if [[ ${PV} == "9999" ]]; then + EGIT_REPO_URI="https://github.com/OpenRC/${PN}.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 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +fi + +LICENSE="BSD-2" +SLOT="0" +IUSE="audit debug ncurses pam newnet prefix +netifrc selinux static-libs + unicode kernel_linux kernel_FreeBSD" + +COMMON_DEPEND="kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-ubin-9.0_rc sys-process/fuser-bsd ) ) + ncurses? ( sys-libs/ncurses:0= ) + pam? ( + sys-auth/pambase + virtual/pam + ) + audit? ( sys-process/audit ) + kernel_linux? ( + sys-process/psmisc + !