diff --git a/app-admin/elektra/Manifest b/app-admin/elektra/Manifest index 99ae60fa465a..02d6e9116674 100644 --- a/app-admin/elektra/Manifest +++ b/app-admin/elektra/Manifest @@ -1,3 +1,4 @@ DIST elektra-0.7.1.tar.gz 1347524 SHA256 ff90ae274935eac9c9c5c85ca7e66049be46a31d9ef08bc59a59858a15284c8c SHA512 25ca25e95d1a20a79ba97b094dc9630fb791f6653c2bacec751cc51492202831b7d28ae0786081e6be91581245bda3f5b7e2f3b523f7faa6bfb1d97b3d209684 WHIRLPOOL e90e7c126f2467c8ae29e3cffd5d8a6bfa444dfd38edcc8809d49562825aff8ec6c826139da4a2aa09e38935ee63b48674431c7cc27e2a14d372b2b8270b170d DIST elektra-0.8.12.tar.gz 2102450 SHA256 562432bea9455a61ff6e6b3263078ea9b26bef2ed177a04b5f9b181d605bc021 SHA512 be01dbeae5cc680973a7c7917f341506106139c7facc3d3f597f31f7aa91065dcee862121b8704d589f4c6dd916a99cadc9b67e2e9604bec2841b1ebafea89ea WHIRLPOOL 6661d9a337aa71fcc9764f127ec4055b3eb1456d60608c80ac8763aee2d680ab8691a16668da8ef694efb09e2415f58bf4e34a4f1f0e9a7498fecf88f56ce9da DIST elektra-0.8.15.tar.gz 2338297 SHA256 6a406986cecb8d4a44485ced118ee803bc039b0824b72298e123b4dd47eb0b22 SHA512 86a408dd546b33e3b437f92f415de7aee6a235189f9eab0762b3f44ab4c453ee369a53de10a9f5b0df1b446460b12c57c6b8b77c282648ec2a49f2328d9af13d WHIRLPOOL c4f77903f9340c665f4c484c0b700b048358691873031ae5e62e63f0acf9a5fc5efb3c307331712497c59172ad202780280abfa8b717f523fabda73564a0005e +DIST elektra-0.8.16.tar.gz 2405443 SHA256 3cf0624eb027e533192ca9d612618df3d38ec3674c9cd20474f04ff269fad77e SHA512 b225e61379907365a423ea75ec7138e5257bb78c526bb05a1ec21f66a52eb4bad9e6f1eb23209d700670b21b86166497b47c3bc46bc9d45f6d366cd544afc326 WHIRLPOOL 3230dbe2f613b5eee71c01ce7afeac3cca02ffbf45cba7a9300f8f3347d5d4c3baf0f8339ecaaaeb3ca747523229292738f1e94660187c1a9c23b4aaa02f0b6f diff --git a/app-admin/elektra/elektra-0.8.15.ebuild b/app-admin/elektra/elektra-0.8.15.ebuild index ea2c8981883c..bdcbd7fed436 100644 --- a/app-admin/elektra/elektra-0.8.15.ebuild +++ b/app-admin/elektra/elektra-0.8.15.ebuild @@ -41,7 +41,10 @@ RESTRICT="test" MULTILIB_WRAPPED_HEADERS=( /usr/include/elektra/kdbconfig.h ) -PATCHES=( "${FILESDIR}/${P}"-conditional-glob-tests.patch ) +PATCHES=( + "${FILESDIR}/${P}"-conditional-glob-tests.patch + "${FILESDIR}/${P}"-gcc-5.4.0.patch +) src_prepare() { cmake-utils_src_prepare @@ -97,13 +100,12 @@ multilib_src_configure() { fi mycmakeargs=( + "-DBUILD_PDF=OFF" "-DBUILD_SHARED=ON" "-DPLUGINS=${my_plugins}" "-DTOOLS=${my_tools}" - "-DLATEX_COMPILER=OFF" "-DTARGET_CMAKE_FOLDER=share/cmake/Modules" - $(multilib_is_native_abi && cmake-utils_use doc BUILD_DOCUMENTATION \ - || echo -DBUILD_DOCUMENTATION=OFF) + -DBUILD_DOCUMENTATION=$(multilib_is_native_abi && usex doc || echo no) $(cmake-utils_use static-libs BUILD_STATIC) $(cmake-utils_use test BUILD_TESTING) $(cmake-utils_use test ENABLE_TESTING) @@ -114,7 +116,7 @@ multilib_src_configure() { multilib_src_install_all() { einfo remove test_data - rm -rvf "${D}/usr/share/${PN}" || die "Failed to remove test_data" + rm -rvf "${ED%/}/usr/share/${PN}" || die "Failed to remove test_data" einfo remove tool_exec - rm -rvf "${D}/usr/$(get_libdir)/${PN}/tool_exec" || die "Failed to remove tool_exec" + rm -rvf "${ED%/}/usr/$(get_libdir)/${PN}/tool_exec" || die "Failed to remove tool_exec" } diff --git a/app-admin/elektra/elektra-0.8.16.ebuild b/app-admin/elektra/elektra-0.8.16.ebuild new file mode 100644 index 000000000000..2a6753541083 --- /dev/null +++ b/app-admin/elektra/elektra-0.8.16.ebuild @@ -0,0 +1,122 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit cmake-multilib eutils java-pkg-opt-2 + +DESCRIPTION="Framework to store config parameters in hierarchical key-value pairs" +HOMEPAGE="https://freedesktop.org/wiki/Software/Elektra" +SRC_URI="ftp://ftp.markus-raab.org/${PN}/releases/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +PLUGIN_IUSE="augeas iconv ini java simpleini syslog systemd tcl +uname xml yajl"; +IUSE="dbus doc qt5 static-libs test ${PLUGIN_IUSE}" + +RDEPEND="dev-libs/libltdl:0[${MULTILIB_USEDEP}] + >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] + augeas? ( app-admin/augeas ) + dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] ) + iconv? ( >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] ) + java? ( >=virtual/jdk-1.8.0 ) + qt5? ( + dev-qt/qtdeclarative:5 + dev-qt/qtgui:5 + dev-qt/qttest:5 + dev-qt/qtwidgets:5 + ) + uname? ( sys-apps/coreutils ) + systemd? ( sys-apps/systemd[${MULTILIB_USEDEP}] ) + yajl? ( >=dev-libs/yajl-1.0.11-r1[${MULTILIB_USEDEP}] )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + test? ( >=dev-cpp/gtest-1.7.0 )" + +DOCS=( README.md doc/AUTHORS doc/CODING.md doc/NEWS.md doc/todo/TODO ) +# tries to write to user's home directory (and doesn't respect HOME) +RESTRICT="test" + +MULTILIB_WRAPPED_HEADERS=( /usr/include/elektra/kdbconfig.h ) + +PATCHES=( + "${FILESDIR}/${PN}"-0.8.15-conditional-glob-tests.patch + "${FILESDIR}/${PN}"-0.8.15-gcc-5.4.0.patch +) + +src_prepare() { + cmake-utils_src_prepare + + einfo remove bundled libs + # TODO: Remove bundled inih from src/plugins/ini (add to portage): + # https://code.google.com/p/inih/ + rm -rf src/external || die + + # move doc files to correct location + sed -e "s/elektra-api/${PF}/" \ + -i cmake/ElektraCache.cmake || die + + # avoid useless build time, nothing ends up installed + cmake_comment_add_subdirectory benchmarks + cmake_comment_add_subdirectory examples +} + +multilib_src_configure() { + local my_plugins="ALL" + + if multilib_is_native_abi ; then + use augeas || my_plugins+=";-augeas" + use java || my_plugins+=";-jni" + else + my_plugins+=";-augeas;-jni" + fi + + use dbus || my_plugins+=";-dbus" + use iconv || my_plugins+=";-iconv" + use ini || my_plugins+=";-ini" # bundles inih + use simpleini || my_plugins+=";-simpleini" + use syslog || my_plugins+=";-syslog" + use systemd || my_plugins+=";-journald" + use tcl || my_plugins+=";-tcl" + use uname || my_plugins+=";-uname" + use xml || my_plugins+=";-xmltool" + use yajl || my_plugins+=";-yajl" + + # Disabling for good (?): + # counter - Only useful for debugging the plugin framework + # doc - Explaining basic makeup of a function //bug #514402 + # noresolver - Does not resolve, but can act as one + # template - Template for new plugin written in C + # wresolver - Resolver for non-POSIX, e.g. w32/w64 systems + my_plugins+=";-counter;-doc;-noresolver;-template;-wresolver" + + local my_tools + + if multilib_is_native_abi ; then + my_tools="kdb" + use qt5 && my_tools+=";qt-gui" + fi + + local mycmakeargs=( + -DBUILD_PDF=OFF + -DBUILD_SHARED=ON + -DBUILD_STATIC=$(usex static-libs) + -DBUILD_TESTING=$(usex test) + -DENABLE_TESTING=$(usex test) + -DPLUGINS=${my_plugins} + -DTOOLS=${my_tools} + -DBUILD_DOCUMENTATION=$(multilib_is_native_abi && usex doc || echo no) + -DTARGET_CMAKE_FOLDER=share/cmake/Modules + ) + + cmake-utils_src_configure +} + +multilib_src_install_all() { + einfo remove test_data + rm -rvf "${ED%/}/usr/share/${PN}" || die "Failed to remove test_data" + einfo remove tool_exec + rm -rvf "${ED%/}/usr/$(get_libdir)/${PN}/tool_exec" || die "Failed to remove tool_exec" +} diff --git a/app-admin/elektra/elektra-9999.ebuild b/app-admin/elektra/elektra-9999.ebuild index d19d1c42d5ba..6ce1c4043f37 100644 --- a/app-admin/elektra/elektra-9999.ebuild +++ b/app-admin/elektra/elektra-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit cmake-multilib eutils java-pkg-opt-2 git-r3 @@ -23,10 +23,10 @@ RDEPEND="dev-libs/libltdl:0[${MULTILIB_USEDEP}] iconv? ( >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}] ) java? ( >=virtual/jdk-1.8.0 ) qt5? ( - >=dev-qt/qtdeclarative-5.3:5 - >=dev-qt/qtgui-5.3:5 - >=dev-qt/qttest-5.3:5 - >=dev-qt/qtwidgets-5.3:5 + dev-qt/qtdeclarative:5 + dev-qt/qtgui:5 + dev-qt/qttest:5 + dev-qt/qtwidgets:5 ) uname? ( sys-apps/coreutils ) systemd? ( sys-apps/systemd[${MULTILIB_USEDEP}] ) @@ -56,8 +56,8 @@ src_prepare() { -i cmake/ElektraCache.cmake || die # avoid useless build time, nothing ends up installed - comment_add_subdirectory benchmarks - comment_add_subdirectory examples + cmake_comment_add_subdirectory benchmarks + cmake_comment_add_subdirectory examples } multilib_src_configure() { @@ -96,17 +96,16 @@ multilib_src_configure() { use qt5 && my_tools+=";qt-gui" fi - mycmakeargs=( - "-DBUILD_SHARED=ON" - "-DPLUGINS=${my_plugins}" - "-DTOOLS=${my_tools}" - "-DLATEX_COMPILER=OFF" - "-DTARGET_CMAKE_FOLDER=share/cmake/Modules" - $(multilib_is_native_abi && cmake-utils_use doc BUILD_DOCUMENTATION \ - || echo -DBUILD_DOCUMENTATION=OFF) - $(cmake-utils_use static-libs BUILD_STATIC) - $(cmake-utils_use test BUILD_TESTING) - $(cmake-utils_use test ENABLE_TESTING) + local mycmakeargs=( + -DBUILD_PDF=OFF + -DBUILD_SHARED=ON + -DBUILD_STATIC=$(usex static-libs) + -DBUILD_TESTING=$(usex test) + -DENABLE_TESTING=$(usex test) + -DPLUGINS=${my_plugins} + -DTOOLS=${my_tools} + -DBUILD_DOCUMENTATION=$(multilib_is_native_abi && usex doc || echo no) + -DTARGET_CMAKE_FOLDER=share/cmake/Modules ) cmake-utils_src_configure @@ -114,7 +113,7 @@ multilib_src_configure() { multilib_src_install_all() { einfo remove test_data - rm -rvf "${D}/usr/share/${PN}" || die "Failed to remove test_data" + rm -rvf "${ED%/}/usr/share/${PN}" || die "Failed to remove test_data" einfo remove tool_exec - rm -rvf "${D}/usr/$(get_libdir)/${PN}/tool_exec" || die "Failed to remove tool_exec" + rm -rvf "${ED%/}/usr/$(get_libdir)/${PN}/tool_exec" || die "Failed to remove tool_exec" } diff --git a/app-admin/elektra/files/elektra-0.8.15-gcc-5.4.0.patch b/app-admin/elektra/files/elektra-0.8.15-gcc-5.4.0.patch new file mode 100644 index 000000000000..9bab2a61c9f5 --- /dev/null +++ b/app-admin/elektra/files/elektra-0.8.15-gcc-5.4.0.patch @@ -0,0 +1,20 @@ +commit 05c925972224afd3fa28f34b9a762364a38f6850 +Author: Markus Raab +Date: Tue May 3 14:25:54 2016 +0200 + + add vector kdbtimer + + fix http://build.libelektra.org:8080/job/elektra-gcc-configure-debian/lastFailedBuild/console + +diff --git a/src/bindings/cpp/include/kdbtimer.hpp b/src/bindings/cpp/include/kdbtimer.hpp +index ae4c242..b7f731e 100644 +--- a/src/bindings/cpp/include/kdbtimer.hpp ++++ b/src/bindings/cpp/include/kdbtimer.hpp +@@ -13,6 +13,7 @@ + #include + #include + #include ++#include + + #ifdef __GNUC__ + #define TIMER_NOINLINE __attribute__ ((noinline)) diff --git a/app-admin/elektra/metadata.xml b/app-admin/elektra/metadata.xml index 59b713eb20dd..05fc88807765 100644 --- a/app-admin/elektra/metadata.xml +++ b/app-admin/elektra/metadata.xml @@ -1,16 +1,16 @@ - -xmw@gentoo.org -Michael Weber - - - Enable plugin for reading and writing configuration files with help from Augeas - Enable new, advanced ini support - Enable coverage support - Enable simpleini support - Enable uname information for the key database - Enable yajl support - + + xmw@gentoo.org + Michael Weber + + + Enable plugin for reading and writing configuration files with help from Augeas + Enable coverage support + Enable new, advanced ini support + Enable simpleini support + Enable uname information for the key database + Enable yajl support + diff --git a/app-admin/glance/glance-13.0.0.ebuild b/app-admin/glance/glance-13.0.0.ebuild index 718fde9869ec..2b6384d28163 100644 --- a/app-admin/glance/glance-13.0.0.ebuild +++ b/app-admin/glance/glance-13.0.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="doc mysql postgres +sqlite +swift" REQUIRED_USE="|| ( mysql postgres sqlite )" diff --git a/app-arch/dpkg/Manifest b/app-arch/dpkg/Manifest index ca7bd9f2c0b1..ad05d7e6960d 100644 --- a/app-arch/dpkg/Manifest +++ b/app-arch/dpkg/Manifest @@ -1,4 +1,4 @@ DIST dpkg_1.17.26.tar.xz 4410860 SHA256 aa4e758752cdfd7ecb118d7a7d31139a0c090c92aa494aa2e46603006deb1ec8 SHA512 4d2f2a7691dd34d47b62ec1f602d9bab612b151f05362607ec8e31037c4ba0baf5d609c46352240e9806e5781db8df9781e8a0ee9fd24faf54f8b43244a7e538 WHIRLPOOL 56decf0774f2d4405fb0934415c50749230c06fe9112e0ebb4458a8917538c83644eadb885d24350bbf713a6250dd5687956b70d47e22c06cf39ff87cb2d5a23 DIST dpkg_1.17.27.tar.xz 4413092 SHA256 90749c31b9f1fceb46dd9fab5b50de34272efef333cc16d9e144f514fd944bb6 SHA512 6f0229bf6c6b76be22d0baf4af21b1175b5397c4a84eb47f0d02bb93173207cc087015a53a2ed9feb7195d313d447d71a0d7361eb1238377c38f8be4465f8bbd WHIRLPOOL cc8525d391bbb42e399e4a1ecb526db1071122272f7eb1b23bdbbad361dfa0f7af8f1fac867f5fb2028d74171ecd3b175b813b2370b2982b17c1d05b39921455 DIST dpkg_1.18.10.tar.xz 4645448 SHA256 025524da41ba18b183ff11e388eb8686f7cc58ee835ed7d48bd159c46a8b6dc5 SHA512 83188277a703b57fa3b5570765db849f9b20f592237fa9a9f3a7e0b24c292c8cfc5528a049f6ecd85f2598c89521727599b406cd3924b2b8c56f9295b560e279 WHIRLPOOL 8bfb17cbc6598482b27502088a6c878b127edeb4dfe54631f776f0db1a6ea32c776929ca15d2251bfb1be1921f775a49f142bcc9c5689c2c374c383df04744d8 -DIST dpkg_1.18.9.tar.xz 4632900 SHA256 86ac4af917e9e75eb9b6c947a0a11439d1de32f72237413f7ddab17f77082093 SHA512 d1253734f7949c6e486920b6b67a4412142747be419d8be83792e2fba1fc9e803e6d0988ae028da9d7d1885176659d5e61b9e69f814a9080ea30c36482a17dd5 WHIRLPOOL 6dbc4aaf3d88741c87a7e99637caae83e4ee314f6dc762782c9f83bba4167e34dd0ee5ffdac0f4ef5944981e6d3e091180935961bf1cb66fc7b825f46cbb8051 +DIST dpkg_1.18.12.tar.xz 4486092 SHA256 090be9eb714cb0c942b0e3f2b86763f402d736149521080cc1214c70c9c18c49 SHA512 995d9da0d58c2a8317d1e78cf93dd014e32a4d5dc89d8a0f4a0a8b7e8f116fd108ae7d0bf7ab3526f33a594762e95b937a70f5168479522bc50e7fddd51e1f74 WHIRLPOOL f5f057038c7896d54d4a3a42f5d48fb7130a52591023ce4aae3492ab95ad5374197ed00859b713ca1f0d44cea0e1e24a052b13396b9c7654bb783c2427acb763 diff --git a/app-arch/dpkg/dpkg-1.18.9.ebuild b/app-arch/dpkg/dpkg-1.18.12.ebuild similarity index 89% rename from app-arch/dpkg/dpkg-1.18.9.ebuild rename to app-arch/dpkg/dpkg-1.18.12.ebuild index b90321fa92e9..94b5afef1557 100644 --- a/app-arch/dpkg/dpkg-1.18.9.ebuild +++ b/app-arch/dpkg/dpkg-1.18.12.ebuild @@ -39,16 +39,19 @@ DEPEND=" ) " -DOCS=( ChangeLog THANKS TODO ) +DOCS=( + ChangeLog + THANKS + TODO +) +PATCHES=( + "${FILESDIR}"/${PN}-1.18.9-strerror.patch + "${FILESDIR}"/${PN}-1.18.12-flags.patch + "${FILESDIR}"/${PN}-1.18.12-rsyncable.patch + "${FILESDIR}"/${PN}-1.18.12-dpkg_buildpackage-test.patch +) src_prepare() { - # do not expect Debian's gzip --rsyncable extension - eapply "${FILESDIR}"/${PN}-1.17.0-gzip-rsyncable.patch - - eapply "${FILESDIR}"/${PN}-1.17.1-flags.patch - - eapply "${FILESDIR}"/${PN}-1.18.9-strerror.patch - # Force the use of the running bash for get-version (this file is never # installed, so no need to worry about hardcoding a temporary bash) sed -i -e '1c\#!'"${BASH}" get-version || die @@ -67,7 +70,7 @@ src_prepare() { use nls && strip-linguas -i po - eapply_user + default eautoreconf } @@ -99,4 +102,6 @@ src_install() { keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk} keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates} + + prune_libtool_files } diff --git a/app-arch/dpkg/files/dpkg-1.18.12-dpkg_buildpackage-test.patch b/app-arch/dpkg/files/dpkg-1.18.12-dpkg_buildpackage-test.patch new file mode 100644 index 000000000000..e9716758d41b --- /dev/null +++ b/app-arch/dpkg/files/dpkg-1.18.12-dpkg_buildpackage-test.patch @@ -0,0 +1,10 @@ +--- a/scripts/Makefile.am ++++ b/scripts/Makefile.am +@@ -238,7 +238,6 @@ + t/Dpkg_Source_Package.t \ + t/Dpkg_Dist_Files.t \ + t/dpkg_source.t \ +- t/dpkg_buildpackage.t \ + t/merge_changelogs.t \ + t/mk.t \ + $(nil) diff --git a/app-arch/dpkg/files/dpkg-1.18.12-flags.patch b/app-arch/dpkg/files/dpkg-1.18.12-flags.patch new file mode 100644 index 000000000000..bee7dd729941 --- /dev/null +++ b/app-arch/dpkg/files/dpkg-1.18.12-flags.patch @@ -0,0 +1,11 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -182,8 +182,6 @@ + # Checks for the build machinery. + AC_DEFINE([LIBDPKG_VOLATILE_API], [1], [Acknowledge the volatility of the API.]) + DPKG_COMPILER_WARNINGS +-DPKG_COMPILER_OPTIMIZATIONS +-DPKG_LINKER_OPTIMIZATIONS + DPKG_ARCHITECTURE + AC_DEFINE([PACKAGE_RELEASE], [PACKAGE_VERSION " (" ARCHITECTURE ")"], + [Define the project release information, version and architecture]) diff --git a/app-arch/dpkg/files/dpkg-1.18.12-rsyncable.patch b/app-arch/dpkg/files/dpkg-1.18.12-rsyncable.patch new file mode 100644 index 000000000000..69802da67092 --- /dev/null +++ b/app-arch/dpkg/files/dpkg-1.18.12-rsyncable.patch @@ -0,0 +1,28 @@ +--- a/scripts/Dpkg/Compression.pm ++++ b/scripts/Dpkg/Compression.pm +@@ -81,20 +81,12 @@ + }; + + # +-# XXX: The gzip package in Debian at some point acquired a Debian-specific +-# --rsyncable option via a vendor patch. Which is not present in most of the +-# major distributions, dpkg downstream systems, nor gzip upstream, who have +-# stated they will most probably not accept it because people should be using +-# pigz instead. ++# If gzip supports --rsyncable (version >=1.7 or the Debian patched variant), ++# we use it. Sadly a non-compliant gzip will not complain about the argument ++# when it does not understand it, so we can only print out the usage and infer ++# --rsyncable support from that. + # +-# This option should have never been accepted in dpkg, ever. But removing it +-# now would probably cause demands for tarring and feathering. In addition +-# we cannot use the Dpkg::Vendor logic because that would cause circular +-# module dependencies. The whole affair is pretty disgusting really. +-# +-# Check the perl Config to discern Debian and hopefully derivatives too. +-# +-if ($Config{cf_by} eq 'Debian Project') { ++if (system("gzip --help 2>&1 | grep -q -- --rsyncable") == 0) { + push @{$COMP->{gzip}->{comp_prog}}, '--rsyncable'; + } + diff --git a/app-arch/unar/unar-1.10.1.ebuild b/app-arch/unar/unar-1.10.1.ebuild index 612ea59ae23b..e79d2b143d40 100644 --- a/app-arch/unar/unar-1.10.1.ebuild +++ b/app-arch/unar/unar-1.10.1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://unarchiver.c3.cx/downloads/${PN}${PV}_src.zip" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~amd64" +KEYWORDS="amd64" IUSE="" RDEPEND="gnustep-base/gnustep-base diff --git a/app-crypt/simple-tpm-pk11/Manifest b/app-crypt/simple-tpm-pk11/Manifest index 7e8c525e5047..d31092b535f6 100644 --- a/app-crypt/simple-tpm-pk11/Manifest +++ b/app-crypt/simple-tpm-pk11/Manifest @@ -1,2 +1 @@ -DIST simple-tpm-pk11-0.03.tar.gz 25238 SHA256 0059064cb29900f0db8ce6163ef6aee17b2dcd095613c813dd53ad7f597bf141 SHA512 ed8a1d605bb21ae6abec426f32159882fef74ee7cbc7cdfa5b649a9947f10bad2b95354b2445f3f40dbd9d55803f9fc40fca02605d466e995083c7e9ca29bd8e WHIRLPOOL 1887c7d18a333319a99b28157f7d9b3bce83868154cd3496b8aec911d3d61b13678d0a0ceb143c65cb8addf625e68ccb4008d65af55f87b2bff27d0ac6dddd40 -DIST simple-tpm-pk11-0.04.tar.gz 26377 SHA256 54f67e08cd0847c1716dd86ceb2748982d226f047de059073c2ffa4cad27c56a SHA512 9023fd580237030e4928fa517739801a06ec673571f13ef365e22e7ebe857fa0be5e6d2004663e0b8287ff7a741f163d0f5e1bc28d7c0300b32fc6af0176d275 WHIRLPOOL 0227adcb41ab3f54f9e23fd3f4d6a4cc1ebe92354d2544a92317b2d7f7f690cb7a163402954957ed5cbb10cff75f3b38441033b7395724a3b46c15f5465d51d6 +DIST simple-tpm-pk11-0.06.tar.gz 28993 SHA256 8ecdb2a64e046e04bb18d464fd15332c99be82084eb2bd3d340a5ff0e738dcea SHA512 72df0637cefdb0d81f741480cdfe24ac0d6a05a93d729f5e2180adf49b5d7ddb0b60d8c6f7d5e79a67bf4cea202067390c8d4532c906273408f7de4fcc5e66e8 WHIRLPOOL a98c2bf72f3b7f454b47e3ef0a72c069a9c35af8a02fa1b3963f017b3ea483f3fd62f3c4360d094620d723e7e1c5da2fc68430c7229d10fc3513af238c5c3f10 diff --git a/app-crypt/simple-tpm-pk11/simple-tpm-pk11-0.04.ebuild b/app-crypt/simple-tpm-pk11/simple-tpm-pk11-0.04.ebuild deleted file mode 100644 index 301b10b7cb41..000000000000 --- a/app-crypt/simple-tpm-pk11/simple-tpm-pk11-0.04.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit autotools eutils - -DESCRIPTION="Simple PKCS11 provider for TPM chips" -HOMEPAGE="https://github.com/ThomasHabets/simple-tpm-pk11" - -LICENSE="Apache-2.0" -SLOT="0" -if [[ ${PV} == "9999" ]]; then - EGIT_REPO_URI="https://github.com/ThomasHabets/${PN}.git" - inherit git-r3 - KEYWORDS="" -else - SRC_URI="https://github.com/ThomasHabets/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64" -fi - -IUSE="libressl" -RESTRICT="test" # needs to communicate with the TPM and gtest is all broken - -DEPEND="app-crypt/tpm-tools[pkcs11] - dev-libs/opencryptoki[tpm] - app-crypt/trousers - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= )" -RDEPEND="${DEPEND} - net-misc/openssh[-X509]" - -src_prepare() { - epatch_user - eautoreconf -} diff --git a/app-crypt/simple-tpm-pk11/simple-tpm-pk11-0.03.ebuild b/app-crypt/simple-tpm-pk11/simple-tpm-pk11-0.06.ebuild similarity index 94% rename from app-crypt/simple-tpm-pk11/simple-tpm-pk11-0.03.ebuild rename to app-crypt/simple-tpm-pk11/simple-tpm-pk11-0.06.ebuild index 301b10b7cb41..46cada90183f 100644 --- a/app-crypt/simple-tpm-pk11/simple-tpm-pk11-0.03.ebuild +++ b/app-crypt/simple-tpm-pk11/simple-tpm-pk11-0.06.ebuild @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit autotools eutils +inherit autotools DESCRIPTION="Simple PKCS11 provider for TPM chips" HOMEPAGE="https://github.com/ThomasHabets/simple-tpm-pk11" @@ -32,6 +32,6 @@ RDEPEND="${DEPEND} net-misc/openssh[-X509]" src_prepare() { - epatch_user + eapply_user eautoreconf } diff --git a/app-doc/kicad-doc/Manifest b/app-doc/kicad-doc/Manifest index 3e6a2295960b..486d1f42138c 100644 --- a/app-doc/kicad-doc/Manifest +++ b/app-doc/kicad-doc/Manifest @@ -1,2 +1,3 @@ DIST kicad-doc-4.0.1.tar.gz 23365382 SHA256 be8dc4bddb89869996956d3d1421584c5a8197282997902e22fda888a8d433bb SHA512 ae57a9c29f3cd4b3d85d4b7d7bc940957c33b0e1c1404b82c8a9261695c0670866cb4a95ab7ad5c35b1faa6fbd3969f277467fa7d33e38e728a3dd9b65203021 WHIRLPOOL d9834312a0a315bf1d5dca048999d5adcb2ee60c42a41d8266522ad6c0ca49ec7bad5c9bad322b6d73c41c9f24cb1f4088d6889c6a51abf4671271dd7ec8af9d DIST kicad-doc-4.0.2.tar.gz 23365338 SHA256 4a475b3831f9a54a20dc94631cada3e305ede23345a6b4059077ac6900f3d35a SHA512 8cf2ff11141d3a5319d3b17a13648903518aaf0625802762df875550dd5811515e8a65d7414859624a18402cc6289ec70247a6c1f235081768ee344ec42c3b35 WHIRLPOOL f0279935fd823c62a6545afab6c2916173a72b5c881f71d8118ef897972e2d9de2c567944689a70aeeb4bae9b4938f636e9c526d0fd838bb42b8e2b4b4d23b4f +DIST kicad-doc-4.0.4.tar.gz 33705865 SHA256 5564217076641926a2523d4dc66e78810de2fe4b5bd4d2f0ba40a522203c4d27 SHA512 97a45ebbd11ab7f92eff1409bc03512b7685fb4a85dd1d87675e92742cc6672a1332c5fe8d63577eba93ed976af1bb4acaa461dbada5e4695a161cefa82c9ff4 WHIRLPOOL be03128787fc9461e9220845a42acd6d7a6bac5adfdc3106365e8c46e7bd185b6a25857b66c91d444a13a03184fb3a260d04d156768304bddb577ce8e776676a diff --git a/app-doc/kicad-doc/kicad-doc-4.0.1.ebuild b/app-doc/kicad-doc/kicad-doc-4.0.1.ebuild index f41c9a162a10..93584aa6ef55 100644 --- a/app-doc/kicad-doc/kicad-doc-4.0.1.ebuild +++ b/app-doc/kicad-doc/kicad-doc-4.0.1.ebuild @@ -21,6 +21,7 @@ done DEPEND=">=app-text/asciidoc-8.6.9 app-text/dblatex + app-text/texlive:=[l10n_en?,l10n_fr?,l10n_it?,l10n_ja?,l10n_nl?,l10n_pl?] >=app-text/po4a-0.45 >=sys-devel/gettext-0.18 dev-util/source-highlight diff --git a/app-doc/kicad-doc/kicad-doc-4.0.2.ebuild b/app-doc/kicad-doc/kicad-doc-4.0.2.ebuild index f41c9a162a10..93584aa6ef55 100644 --- a/app-doc/kicad-doc/kicad-doc-4.0.2.ebuild +++ b/app-doc/kicad-doc/kicad-doc-4.0.2.ebuild @@ -21,6 +21,7 @@ done DEPEND=">=app-text/asciidoc-8.6.9 app-text/dblatex + app-text/texlive:=[l10n_en?,l10n_fr?,l10n_it?,l10n_ja?,l10n_nl?,l10n_pl?] >=app-text/po4a-0.45 >=sys-devel/gettext-0.18 dev-util/source-highlight diff --git a/app-doc/kicad-doc/kicad-doc-4.0.4.ebuild b/app-doc/kicad-doc/kicad-doc-4.0.4.ebuild new file mode 100644 index 000000000000..67f5a647a4aa --- /dev/null +++ b/app-doc/kicad-doc/kicad-doc-4.0.4.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="Electronic Schematic and PCB design tools manuals" +HOMEPAGE="http://www.kicad-pcb.org/" +SRC_URI="https://github.com/KiCad/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="|| ( GPL-3+ CC-BY-3.0 ) GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="html pdf" +LANGS="en fr it ja nl pl" +for lang in ${LANGS}; do + IUSE+=" l10n_${lang}" +done +unset lang + +DEPEND=">=app-text/asciidoc-8.6.9 + app-text/dblatex + app-text/texlive:=[l10n_en?,l10n_fr?,l10n_it?,l10n_ja?,l10n_nl?,l10n_pl?] + >=app-text/po4a-0.45 + >=sys-devel/gettext-0.18 + dev-util/source-highlight + dev-perl/Unicode-LineBreak + l10n_ja? ( media-fonts/vlgothic )" +RDEPEND="" + +src_prepare() { + DOCPATH="KICAD_DOC_INSTALL_PATH share/doc/kicad" + sed "s|${DOCPATH}|${DOCPATH}-${PV}|g" -i CMakeLists.txt || die "sed failed" +} + +src_configure() { + local formats="" + local doclang="" + local format lang + + # construct format string + for format in html pdf; do + use ${format} && formats+="${format};" + done + if [[ -z ${formats} ]]; then + formats="html;" + ewarn "Neither \"html\" nor \"pdf\" USE flag set, using html." + fi + + # find out which language is requested + for lang in ${LANGS}; do + if use l10n_${lang}; then + if [[ -z ${doclang} ]]; then + doclang="${lang}" + else + ewarn "Only one single language can be enabled." \ + "Using \"${doclang}\", ignoring \"${lang}\"." + fi + fi + done + if [[ -z ${doclang} ]]; then + doclang="en" + ewarn "No language flag set, falling back to \"en\"." + fi + + local mycmakeargs=( + -DBUILD_FORMATS="${formats}" + -DSINGLE_LANGUAGE="${doclang}" + ) + cmake-utils_src_configure +} diff --git a/app-emulation/hyperd/Manifest b/app-emulation/hyperd/Manifest new file mode 100644 index 000000000000..d642abe42470 --- /dev/null +++ b/app-emulation/hyperd/Manifest @@ -0,0 +1 @@ +DIST hyperd-0.7.0.tar.gz 10885921 SHA256 e79d4e6aebe01d2117e981050ecb88dd24f8a9e45e2fbe1a558bcd1ee5d90b88 SHA512 7fc731b393a6bdf173101ee0a6d0e5a3339c6bb6dc1595fbde5b36df5a674f22e95f599e704925532ca0ee5ca931ebdf9f14bba9ad20b62000aee48408adb73f WHIRLPOOL cf911afabcbd7ec9954ad571d12269cff85fb9a84de81a83b483a002707c6ca2e6e8c43540f08f24ae12ccc5eddddc4280e45d67c3a696cfdd2ee4301458aa3d diff --git a/app-emulation/hyperd/hyperd-0.7.0.ebuild b/app-emulation/hyperd/hyperd-0.7.0.ebuild new file mode 100644 index 000000000000..bef9be9822b9 --- /dev/null +++ b/app-emulation/hyperd/hyperd-0.7.0.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGO_PN="github.com/hyperhq/hyperd" + +inherit autotools systemd golang-vcs-snapshot + +DESCRIPTION="Hypervisor-based Runtime for OCI" +HOMEPAGE="https://github.com/hyperhq/hyperd" +SRC_URI="https://github.com/hyperhq/hyperd/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="libvirt xen" + +RDEPEND="libvirt? ( >=app-emulation/libvirt-1.2.2 ) + xen? ( app-emulation/xen )" +DEPEND="${RDEPEND}" + +src_prepare() { + pushd src/${EGO_PN} || die + default + eautoreconf + popd +} + +src_configure() { + local myeconfargs=( $(use_with libvirt) + $(use_with xen) ) + pushd src/${EGO_PN} || die + econf "${myeconfargs[@]}" + popd +} + +src_compile() { + GOPATH="${S}:$(get_golibdir_gopath)" emake -C src/${EGO_PN} +} + +src_install() { + dodoc src/${EGO_PN}/README.md + dobin src/${EGO_PN}/hyperd + dobin src/${EGO_PN}/hyperctl + insinto /etc/hyper/ + doins src/${EGO_PN}/package/dist/etc/hyper/config + systemd_dounit src/${EGO_PN}/package/dist/lib/systemd/system/hyperd.service +} diff --git a/app-emulation/hyperd/metadata.xml b/app-emulation/hyperd/metadata.xml new file mode 100644 index 000000000000..8880e0179c0e --- /dev/null +++ b/app-emulation/hyperd/metadata.xml @@ -0,0 +1,15 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + + + Enable support for KVM via libvirt + Enable support for the Xen Hypervisor + + + hyperhq/hyperd + + diff --git a/app-emulation/rkt/metadata.xml b/app-emulation/rkt/metadata.xml index 3483e6cf87c4..d9f76835717a 100644 --- a/app-emulation/rkt/metadata.xml +++ b/app-emulation/rkt/metadata.xml @@ -18,7 +18,9 @@ Install the actool for ACI manipulation Download and use a prebuilt stage1.aci from CoreOS Build stage1-fly.aci - This flag has been replaced by the rkt_stage1_kvm_* flags + + This flag has been replaced by the rkt_stage1_kvm_* flags + Build stage1-kvm-lkvm.aci Build stage1-kvm-qemu.aci Build the stage1.aci from source diff --git a/app-emulation/runv/Manifest b/app-emulation/runv/Manifest new file mode 100644 index 000000000000..f3035f9f6434 --- /dev/null +++ b/app-emulation/runv/Manifest @@ -0,0 +1 @@ +DIST runv-0.7.0.tar.gz 1143867 SHA256 13107bdcaa2217f870c3b4a18d490984eea1e372947d7e4725aab1166d366697 SHA512 1303d4ca99186d9f5c1db4257acecf1702546a084942cc4c51de8685c6841da45be72c78f32ab38e2addb80dc40fe4d022d0fcae7b7d6b6d62a30f434cea178c WHIRLPOOL a5a7eabeeccab89b5202cad0762f366fd80d6eb52552681124eb636809b28444855561a5849429f78643b14eba576323c7999f2c892caaf5211505e80f72d928 diff --git a/app-emulation/runv/metadata.xml b/app-emulation/runv/metadata.xml new file mode 100644 index 000000000000..648b9cef5dc9 --- /dev/null +++ b/app-emulation/runv/metadata.xml @@ -0,0 +1,15 @@ + + + + + mrueg@gentoo.org + Manuel Rüger + + + Enable support for KVM via libvirt + Enable support for the Xen Hypervisor + + + hyperhq/runv + + diff --git a/app-emulation/runv/runv-0.7.0.ebuild b/app-emulation/runv/runv-0.7.0.ebuild new file mode 100644 index 000000000000..6b0b9d9b038d --- /dev/null +++ b/app-emulation/runv/runv-0.7.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGO_PN="github.com/hyperhq/runv" + +inherit autotools golang-vcs-snapshot + +DESCRIPTION="Hypervisor-based Runtime for OCI" +HOMEPAGE="https://github.com/hyperhq/runv" +SRC_URI="https://github.com/hyperhq/runv/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="libvirt xen" + +RDEPEND="libvirt? ( >=app-emulation/libvirt-1.2.2 ) + xen? ( app-emulation/xen )" +DEPEND="${RDEPEND}" + +src_prepare() { + pushd src/github.com/hyperhq/runv/ || die + default + eautoreconf + popd +} + +src_configure() { + local myeconfargs=( $(use_with libvirt) + $(use_with xen) ) + pushd src/github.com/hyperhq/runv/ || die + econf "${myeconfargs[@]}" + popd +} + +src_compile() { + GOPATH="${S}:$(get_golibdir_gopath)" emake -C src/github.com/hyperhq/runv/ +} + +src_install() { + dodoc src/${EGO_PN}/README.md + dobin src/${EGO_PN}/runv +} diff --git a/app-misc/khal/Manifest b/app-misc/khal/Manifest index c816ae1916f3..466f4e9662e4 100644 --- a/app-misc/khal/Manifest +++ b/app-misc/khal/Manifest @@ -1,2 +1,3 @@ DIST khal-0.7.0.tar.gz 109801 SHA256 c6b0c81df56133e4592f02d8e9b60702079da2affd1b09ba96358ccd8eec9402 SHA512 cad0bd8c5e869ffb5333e62747f0c5f71ae4a82adf60889922fcc61b4befefd926b0d642fcb8aec471aafc3fab6f042fa4253d381936c229582a8196319a1505 WHIRLPOOL bd265e0c2ff84014ae7b706722e8b850221458ad4c24dd9137321c06048ed1b5442eb93b7d18338a97f201b6e598bef2be3abe375b80f9530306e2617c73cfbd DIST khal-0.8.1.tar.gz 125681 SHA256 9d352e4aa6256e493d5aea69540f642158bdcab75d2383e1e43506bf89982094 SHA512 01b24b7fb041a78443eb1ede80797ca689c2141bf6bb6b171f49931de7440055c38efc4611c483fe85da90794d074e4d08224ce633878ca2f7b8d66799391033 WHIRLPOOL cbcff5dec339ea97ee7bc83860b4f0c0f75801553e191d5856d30758c95936b2a156cea09ae9bd5a2ea96a3914b454f84ce0123970d1d74693be75caa23cbd27 +DIST khal-0.8.3.tar.gz 126656 SHA256 1ec6940a9fbd207c41428b103bac1d1555129b9b4eca2b843c544bd48ac63ee3 SHA512 f49e57a6cc9abfcf8dbc5811c2fe00661fd09a8a6d1a64bae4df5ce9c1d01c6f325adeef68a7b45eed3a34bd797b801c00fcd8fa4fdf378335d5273629f0a165 WHIRLPOOL 20963f12d9419f2421680548a6de22261e4d9c4482f6a28937b4339335b5a4965178bae0624cc5172da98c534603d3cd0ed5337e03c04190195a478b34b4a34f diff --git a/app-misc/khal/khal-0.8.3.ebuild b/app-misc/khal/khal-0.8.3.ebuild new file mode 100644 index 000000000000..b75fe0b04644 --- /dev/null +++ b/app-misc/khal/khal-0.8.3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +PYTHON_COMPAT=( python3_4 ) +PYTHON_REQ_USE="sqlite" + +inherit distutils-r1 + +DESCRIPTION="A CalDAV based calendar" +HOMEPAGE="http://lostpackets.de/khal/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="zsh-completion" + +RDEPEND=">=dev-python/click-3.2[${PYTHON_USEDEP}] + dev-python/icalendar[${PYTHON_USEDEP}] + dev-python/urwid[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/vdirsyncer[${PYTHON_USEDEP}] + dev-python/pkginfo[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/configobj[${PYTHON_USEDEP}] + >=dev-python/tzlocal-1.0[${PYTHON_USEDEP}] + dev-python/setproctitle[${PYTHON_USEDEP}] + zsh-completion? ( app-shells/zsh )" + +DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]" + +DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.txt README.rst khal.conf.sample ) + +src_install() { + distutils-r1_src_install + if use zsh-completion; then + insinto /usr/share/zsh/site-functions + doins misc/__khal + fi +} diff --git a/app-misc/neofetch/Manifest b/app-misc/neofetch/Manifest index f6dbe0ab7569..2aca9280618c 100644 --- a/app-misc/neofetch/Manifest +++ b/app-misc/neofetch/Manifest @@ -1,2 +1,2 @@ DIST neofetch-1.8.1.tar.gz 52867 SHA256 dfa1e97f3a91af00da45af1bf3f6a197f545063dba129bd4db839b0139e68e24 SHA512 c89a5c2b01c75fdce66e901d95f19da7e7865bc708426a577b3d11bd383eb7261d1493eb06aa4da59c141bd0d5629a6dbdf1dcf334ea57a86ceab565de627f29 WHIRLPOOL f6de8f24f602298582d61a7932344cb4f3d0ddd197d7c948273f12e911a593059aead4dd598d54331d65aa0d6764386f5e268775dc19c0817b2201c13687af37 -DIST neofetch-1.9.tar.gz 57413 SHA256 c9cbe0eeedbceaf9b23f9a1c4e0838e410dc7bdfdeb7fbd10f5eaf377cceff05 SHA512 15b094d2e655ba69a460da0e24cc2527f47a6bbbaa249e87f053708c869fb00d8e7a8ea91e3a614c6702a9396266b975f1c4e9c5aa39a75f6ce3ca06e2d7eb29 WHIRLPOOL 4e788ce093b27b9af1092c4f89174a978f141ca72d0039715a80057d56018a67eb36cdcecf8575b6199c6987a99f1e3b008eb44a10967a6cd9b8d50108f2855b +DIST neofetch-1.9.1.tar.gz 55739 SHA256 d7e30215994968ca861836f9bab9259624688fd50620e7d5af5c8b31da8bd32b SHA512 e5b339549bd5eae726e66369bd9ebae7927117d7fb5af52bdfa54d5bff0793d72ed893ed631999dd492a2044fcc91ffe990ae8113b40fa3d724f5584417defc9 WHIRLPOOL 74f35ede4b3836d4b5485df0a80a1a9fef0d23de637558456dac69bdf7f4a1742f7f2e87e4c0faa99bec5959145ea5cc8e764cde320f1005ec1263c0c808eaac diff --git a/app-misc/neofetch/neofetch-1.9.ebuild b/app-misc/neofetch/neofetch-1.9.1.ebuild similarity index 66% rename from app-misc/neofetch/neofetch-1.9.ebuild rename to app-misc/neofetch/neofetch-1.9.1.ebuild index 5d343a591b95..c7bbb2e43e92 100644 --- a/app-misc/neofetch/neofetch-1.9.ebuild +++ b/app-misc/neofetch/neofetch-1.9.1.ebuild @@ -1,6 +1,7 @@ # Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ + EAPI=6 DESCRIPTION="Simple information system script" @@ -8,16 +9,18 @@ HOMEPAGE="https://github.com/dylanaraps/neofetch" SRC_URI="https://github.com/dylanaraps/${PN}/archive/${PV}/${P}.tar.gz" LICENSE="MIT" SLOT="0" +KEYWORDS="~amd64 ~x86" IUSE="X" -DEPEND="app-shells/bash:* +DEPEND=" + app-shells/bash:* sys-apps/pciutils" - RDEPEND="${DEPEND} - X? ( x11-apps/xprop - x11-apps/xwininfo - x11-apps/xrandr - www-client/w3m[imlib] - media-libs/imlib2 - media-gfx/imagemagick -)" + X? ( + x11-apps/xprop + x11-apps/xwininfo + x11-apps/xrandr + www-client/w3m[imlib] + media-libs/imlib2 + media-gfx/imagemagick + )" diff --git a/app-office/libreoffice/files/libreoffice-5.2-icu58.patch b/app-office/libreoffice/files/libreoffice-5.2-icu58.patch new file mode 100644 index 000000000000..57fe6dcbd00d --- /dev/null +++ b/app-office/libreoffice/files/libreoffice-5.2-icu58.patch @@ -0,0 +1,289 @@ +From 3e42714c76b1347babfdea0564009d8d82a83af4 Mon Sep 17 00:00:00 2001 +From: Eike Rathke +Date: Wed, 2 Nov 2016 13:07:48 +0100 +Subject: [PATCH] upgrade to ICU 58 + +Change-Id: I4a992447df65b337721a2a2627d974172a14cba5 +Reviewed-on: https://gerrit.libreoffice.org/30487 +Reviewed-by: Eike Rathke +Tested-by: Eike Rathke +--- + configure.ac | 2 +- + download.lst | 2 +- + external/icu/icu-ubsan.patch.0 | 11 ------ + external/icu/icu4c-warnings.patch | 12 ------ + .../source/breakiterator/breakiterator_unicode.cxx | 12 ++++++ + i18nutil/source/utility/unicode.cxx | 26 +++++++++++++ + include/svx/ucsubset.hrc | 11 ++++++ + svx/source/dialog/charmap.cxx | 35 +++++++++++++++++ + svx/source/dialog/ucsubset.src | 44 ++++++++++++++++++++++ + 9 files changed, 130 insertions(+), 25 deletions(-) + +diff --git a/configure.ac b/configure.ac +index f06ef8e..66a11a9 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -9136,7 +9136,7 @@ SYSTEM_GENBRK= + SYSTEM_GENCCODE= + SYSTEM_GENCMN= + +-ICU_MAJOR=57 ++ICU_MAJOR=58 + ICU_MINOR=1 + ICU_RECLASSIFIED_PREPEND_SET_EMPTY="TRUE" + ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER="TRUE" +diff --git a/download.lst b/download.lst +index 4571338..0770a4d 100644 +--- a/download.lst ++++ b/download.lst +@@ -62,7 +62,7 @@ export HARFBUZZ_TARBALL := harfbuzz-1.3.2.tar.bz2 + export HSQLDB_TARBALL := 17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip + export HUNSPELL_TARBALL := 33d370f7fe5a030985e445a5672b2067-hunspell-1.4.1.tar.gz + export HYPHEN_TARBALL := 5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz +-export ICU_TARBALL := 976734806026a4ef8bdd17937c8898b9-icu4c-57_1-src.tgz ++export ICU_TARBALL := 1901302aaff1c1633ef81862663d2917-icu4c-58_1-src.tgz + export JFREEREPORT_FLOW_ENGINE_TARBALL := ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip + export JFREEREPORT_FLUTE_TARBALL := d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip + export JFREEREPORT_LIBBASE_TARBALL := eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip +diff --git a/external/icu/icu-ubsan.patch.0 b/external/icu/icu-ubsan.patch.0 +index 6d1d3bc..8a47242 100644 +--- a/external/icu/icu-ubsan.patch.0 ++++ b/external/icu/icu-ubsan.patch.0 +@@ -151,14 +151,3 @@ + length(len), next(subNode) {} + virtual UBool operator==(const Node &other) const; + virtual int32_t markRightEdgesFirst(int32_t edgeNumber); +---- source/common/unifiedcache.h +-+++ source/common/unifiedcache.h +-@@ -139,7 +139,7 @@ +- : CacheKey(other), fLoc(other.fLoc) { } +- virtual ~LocaleCacheKey() { } +- virtual int32_t hashCode() const { +-- return 37 *CacheKey::hashCode() + fLoc.hashCode(); +-+ return 37U *CacheKey::hashCode() + fLoc.hashCode(); +- } +- virtual UBool operator == (const CacheKeyBase &other) const { +- // reflexive +diff --git a/external/icu/icu4c-warnings.patch b/external/icu/icu4c-warnings.patch +index d146093..96608d7 100644 +--- a/external/icu/icu4c-warnings.patch ++++ b/external/icu/icu4c-warnings.patch +@@ -8,15 +8,3 @@ + } \ + } + +---- misc/icu/source/common/unicode/utypes.h +-+++ misc/build/icu/source/common/unicode/utypes.h +-@@ -399,7 +399,7 @@ +- * some Linux/Unix compilers have problems with defining global new/delete. +- * On Windows, it is _MSC_VER>=1200 for MSVC 6.0 and higher. +- */ +--#if defined(__cplusplus) && U_DEBUG && U_OVERRIDE_CXX_ALLOCATION && (_MSC_VER>=1200) && !defined(U_STATIC_IMPLEMENTATION) && (defined(U_COMMON_IMPLEMENTATION) || defined(U_I18N_IMPLEMENTATION) || defined(U_IO_IMPLEMENTATION) || defined(U_LAYOUT_IMPLEMENTATION) || defined(U_LAYOUTEX_IMPLEMENTATION)) +-+#if defined(__cplusplus) && U_DEBUG && U_OVERRIDE_CXX_ALLOCATION && defined (_MSC_VER) && (_MSC_VER>=1200) && !defined(U_STATIC_IMPLEMENTATION) && (defined(U_COMMON_IMPLEMENTATION) || defined(U_I18N_IMPLEMENTATION) || defined(U_IO_IMPLEMENTATION) || defined(U_LAYOUT_IMPLEMENTATION) || defined(U_LAYOUTEX_IMPLEMENTATION)) +- +- #ifndef U_HIDE_INTERNAL_API +- /** +- +diff --git a/i18npool/source/breakiterator/breakiterator_unicode.cxx b/i18npool/source/breakiterator/breakiterator_unicode.cxx +index 3b0b227..76ae209 100644 +--- a/i18npool/source/breakiterator/breakiterator_unicode.cxx ++++ b/i18npool/source/breakiterator/breakiterator_unicode.cxx +@@ -63,10 +63,13 @@ BreakIterator_Unicode::~BreakIterator_Unicode() + class OOoRuleBasedBreakIterator : public RuleBasedBreakIterator + { + public: ++#if (U_ICU_VERSION_MAJOR_NUM < 58) ++ // RuleBasedBreakIterator::setBreakType() is private as of ICU 58. + inline void publicSetBreakType(int32_t type) + { + setBreakType(type); + }; ++#endif + OOoRuleBasedBreakIterator(UDataMemory* image, + UErrorCode &status) + : RuleBasedBreakIterator(image, status) +@@ -142,12 +145,21 @@ void SAL_CALL BreakIterator_Unicode::loadICUBreakIterator(const css::lang::Local + } + } + if (rbi) { ++#if (U_ICU_VERSION_MAJOR_NUM < 58) ++ // ICU 58 made RuleBasedBreakIterator::setBreakType() private ++ // instead of protected, so the old workaround of ++ // https://ssl.icu-project.org/trac/ticket/5498 ++ // doesn't work anymore. However, they also claim to have fixed ++ // the cause that an initial fBreakType==-1 would lead to an ++ // endless loop under some circumstances. ++ // Let's see ... + switch (rBreakType) { + case LOAD_CHARACTER_BREAKITERATOR: rbi->publicSetBreakType(UBRK_CHARACTER); break; + case LOAD_WORD_BREAKITERATOR: rbi->publicSetBreakType(UBRK_WORD); break; + case LOAD_SENTENCE_BREAKITERATOR: rbi->publicSetBreakType(UBRK_SENTENCE); break; + case LOAD_LINE_BREAKITERATOR: rbi->publicSetBreakType(UBRK_LINE); break; + } ++#endif + icuBI->aBreakIterator = rbi; + } + } +diff --git a/i18nutil/source/utility/unicode.cxx b/i18nutil/source/utility/unicode.cxx +index bb82bbf..984c5f7 100644 +--- a/i18nutil/source/utility/unicode.cxx ++++ b/i18nutil/source/utility/unicode.cxx +@@ -957,6 +957,32 @@ OString SAL_CALL unicode::getExemplarLanguageForUScriptCode(UScriptCode eScript) + sRet = "sa-Sidd"; + break; + #endif ++#if (U_ICU_VERSION_MAJOR_NUM >= 58) ++ case USCRIPT_ADLAM: ++ sRet = "mis"; // Adlm - Adlam for Fulani, no language code ++ break; ++ case USCRIPT_BHAIKSUKI: ++ sRet = "mis"; // Bhks - Bhaiksuki for some Buddhist texts, no language code ++ break; ++ case USCRIPT_MARCHEN: ++ sRet = "bo-Marc"; ++ break; ++ case USCRIPT_NEWA: ++ sRet = "new-Newa"; ++ break; ++ case USCRIPT_OSAGE: ++ sRet = "osa-Osge"; ++ break; ++ case USCRIPT_HAN_WITH_BOPOMOFO: ++ sRet = "mis"; // Hanb - Han with Bopomofo, zh-Hanb ? ++ break; ++ case USCRIPT_JAMO: ++ sRet = "mis"; // Jamo - Jamo subset of Hangul, ko-Jamo ? ++ break; ++ case USCRIPT_SYMBOLS_EMOJI: ++ sRet = "mis"; // Zsye - Emoji variant ++ break; ++#endif + } + return sRet; + } +diff --git a/include/svx/ucsubset.hrc b/include/svx/ucsubset.hrc +index adf1cf6..1157a7e 100644 +--- a/include/svx/ucsubset.hrc ++++ b/include/svx/ucsubset.hrc +@@ -291,6 +291,17 @@ + #define RID_SUBSETSTR_OLD_HUNGARIAN (RID_SUBSET_START + 263) + #define RID_SUBSETSTR_SUPPLEMENTAL_SYMBOLS_AND_PICTOGRAPHS (RID_SUBSET_START + 264) + #define RID_SUBSETSTR_SUTTON_SIGNWRITING (RID_SUBSET_START + 265) ++#define RID_SUBSETSTR_ADLAM (RID_SUBSET_START + 266) ++#define RID_SUBSETSTR_BHAIKSUKI (RID_SUBSET_START + 267) ++#define RID_SUBSETSTR_CYRILLIC_EXTENDED_C (RID_SUBSET_START + 268) ++#define RID_SUBSETSTR_GLAGOLITIC_SUPPLEMENT (RID_SUBSET_START + 269) ++#define RID_SUBSETSTR_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION (RID_SUBSET_START + 270) ++#define RID_SUBSETSTR_MARCHEN (RID_SUBSET_START + 271) ++#define RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT (RID_SUBSET_START + 272) ++#define RID_SUBSETSTR_NEWA (RID_SUBSET_START + 273) ++#define RID_SUBSETSTR_OSAGE (RID_SUBSET_START + 274) ++#define RID_SUBSETSTR_TANGUT (RID_SUBSET_START + 275) ++#define RID_SUBSETSTR_TANGUT_COMPONENTS (RID_SUBSET_START + 276) + + // RID_SUBSET_END (RID_SUBSET_START + 299) + +diff --git a/svx/source/dialog/charmap.cxx b/svx/source/dialog/charmap.cxx +index bcc7cef..ff201a6 100644 +--- a/svx/source/dialog/charmap.cxx ++++ b/svx/source/dialog/charmap.cxx +@@ -1594,6 +1594,41 @@ void SubsetMap::InitList() + aAllSubsets.push_back( Subset( 0x1D800, 0x1DAAF, RID_SUBSETSTR_SUTTON_SIGNWRITING ) ); + break; + #endif ++#if (U_ICU_VERSION_MAJOR_NUM >= 58) ++ case UBLOCK_ADLAM: ++ aAllSubsets.push_back( Subset( 0x1E900, 0x1E95F, RID_SUBSETSTR_ADLAM ) ); ++ break; ++ case UBLOCK_BHAIKSUKI: ++ aAllSubsets.push_back( Subset( 0x11C00, 0x11C6F, RID_SUBSETSTR_BHAIKSUKI ) ); ++ break; ++ case UBLOCK_CYRILLIC_EXTENDED_C: ++ aAllSubsets.push_back( Subset( 0x1C80, 0x1C8F, RID_SUBSETSTR_CYRILLIC_EXTENDED_C ) ); ++ break; ++ case UBLOCK_GLAGOLITIC_SUPPLEMENT: ++ aAllSubsets.push_back( Subset( 0x1E000, 0x1E02F, RID_SUBSETSTR_GLAGOLITIC_SUPPLEMENT ) ); ++ break; ++ case UBLOCK_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION: ++ aAllSubsets.push_back( Subset( 0x16FE0, 0x16FFF, RID_SUBSETSTR_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION ) ); ++ break; ++ case UBLOCK_MARCHEN: ++ aAllSubsets.push_back( Subset( 0x11C70, 0x11CBF, RID_SUBSETSTR_MARCHEN ) ); ++ break; ++ case UBLOCK_MONGOLIAN_SUPPLEMENT: ++ aAllSubsets.push_back( Subset( 0x11660, 0x1167F, RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT ) ); ++ break; ++ case UBLOCK_NEWA: ++ aAllSubsets.push_back( Subset( 0x11400, 0x1147F, RID_SUBSETSTR_NEWA ) ); ++ break; ++ case UBLOCK_OSAGE: ++ aAllSubsets.push_back( Subset( 0x104B0, 0x104FF, RID_SUBSETSTR_OSAGE ) ); ++ break; ++ case UBLOCK_TANGUT: ++ aAllSubsets.push_back( Subset( 0x17000, 0x187FF, RID_SUBSETSTR_TANGUT ) ); ++ break; ++ case UBLOCK_TANGUT_COMPONENTS: ++ aAllSubsets.push_back( Subset( 0x18800, 0x18AFF, RID_SUBSETSTR_TANGUT_COMPONENTS ) ); ++ break; ++#endif + + } + +diff --git a/svx/source/dialog/ucsubset.src b/svx/source/dialog/ucsubset.src +index 06630cc..a7765c3 100644 +--- a/svx/source/dialog/ucsubset.src ++++ b/svx/source/dialog/ucsubset.src +@@ -1079,6 +1079,50 @@ Resource RID_SUBSETMAP + { + Text [ en-US ] = "Sutton Signwriting"; + }; ++ String RID_SUBSETSTR_ADLAM ++ { ++ Text [ en-US ] = "Adlam"; ++ }; ++ String RID_SUBSETSTR_BHAIKSUKI ++ { ++ Text [ en-US ] = "Bhaiksuki"; ++ }; ++ String RID_SUBSETSTR_CYRILLIC_EXTENDED_C ++ { ++ Text [ en-US ] = "Cyrillic Extended-C"; ++ }; ++ String RID_SUBSETSTR_GLAGOLITIC_SUPPLEMENT ++ { ++ Text [ en-US ] = "Glagolitic Supplement"; ++ }; ++ String RID_SUBSETSTR_IDEOGRAPHIC_SYMBOLS_AND_PUNCTUATION ++ { ++ Text [ en-US ] = "Ideographic Symbols and Punctuation"; ++ }; ++ String RID_SUBSETSTR_MARCHEN ++ { ++ Text [ en-US ] = "Marchen"; ++ }; ++ String RID_SUBSETSTR_MONGOLIAN_SUPPLEMENT ++ { ++ Text [ en-US ] = "Mongolian Supplement"; ++ }; ++ String RID_SUBSETSTR_NEWA ++ { ++ Text [ en-US ] = "Newa"; ++ }; ++ String RID_SUBSETSTR_OSAGE ++ { ++ Text [ en-US ] = "Osage"; ++ }; ++ String RID_SUBSETSTR_TANGUT ++ { ++ Text [ en-US ] = "Tangut"; ++ }; ++ String RID_SUBSETSTR_TANGUT_COMPONENTS ++ { ++ Text [ en-US ] = "Tangut Components"; ++ }; + }; + + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ +-- +2.10.2 + diff --git a/app-office/libreoffice/libreoffice-5.1.4.2.ebuild b/app-office/libreoffice/libreoffice-5.1.4.2.ebuild index e8cee345501c..ddada968bae6 100644 --- a/app-office/libreoffice/libreoffice-5.1.4.2.ebuild +++ b/app-office/libreoffice/libreoffice-5.1.4.2.ebuild @@ -111,7 +111,7 @@ COMMON_DEPEND="${PYTHON_DEPS} >=dev-libs/boost-1.55:= dev-libs/expat dev-libs/hyphen - dev-libs/icu:= + +Date: Thu Jun 16 20:01:34 2016 +0000 + + Add better support for C++11/Qt 5.7.0. CMAKE minimum bumped to 3.2 + + git-svn-id: svn://scribus.net/trunk/Scribus@21377 11d20701-8431-0410-a711-e3c959e3b870 + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index bc1ec57..9e92a38 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -3,8 +3,9 @@ + + #Set our CMake minimum version + #Require 2.8.9 for Qt5 ++#Require 3.1.0 for Qt 5.7 C++ 11 easy support + #Require 3.2.0 for add_custom_target with byproducts +-CMAKE_MINIMUM_REQUIRED(VERSION 2.8.9 FATAL_ERROR) ++CMAKE_MINIMUM_REQUIRED(VERSION 3.2.0 FATAL_ERROR) + + #Pretty colors + SET(CMAKE_COLOR_MAKEFILE ON) +@@ -382,6 +383,7 @@ ADD_DEFINITIONS("-DLIBDIR=\\\"${CMAKE_INSTALL_PREFIX}/${LIBDIR}\\\"") + #C++11 Support + IF(WANT_CPP11) + MESSAGE(STATUS "Enabling C++11 compiler features") ++ set(CMAKE_CXX_STANDARD 11) + ADD_DEFINITIONS("-std=c++11") + ENDIF(WANT_CPP11) + diff --git a/app-office/scribus/files/scribus-1.5.2-cxx-build.patch b/app-office/scribus/files/scribus-1.5.2-cxx-build.patch new file mode 100644 index 000000000000..da8d50dee92d --- /dev/null +++ b/app-office/scribus/files/scribus-1.5.2-cxx-build.patch @@ -0,0 +1,24 @@ +commit 1a9bdbc7ab793b15e93f1ab29ce06dd69c061f58 +Author: Jean Ghali +Date: Sat Jun 18 12:49:45 2016 +0000 + + fix build issue when not compiling with c++11 : std::isinf is c++11 only + + git-svn-id: svn://scribus.net/trunk/Scribus@21382 11d20701-8431-0410-a711-e3c959e3b870 + +diff --git a/scribus/third_party/fparser/fpoptimizer.cc b/scribus/third_party/fparser/fpoptimizer.cc +index 673e1b6..0c1bad5 100644 +--- a/scribus/third_party/fparser/fpoptimizer.cc ++++ b/scribus/third_party/fparser/fpoptimizer.cc +@@ -7296,7 +7296,11 @@ namespace FPoptimizer_CodeTree + //if(imm >= 0.0) + { + double new_base_immed = std::pow(base_immed, imm); ++#if __cplusplus < 201103L ++ if(isinf(new_base_immed) || new_base_immed == 0.0) ++#else + if(std::isinf(new_base_immed) || new_base_immed == 0.0) ++#endif + { + // It produced an infinity. Do not change. + break; diff --git a/app-office/scribus/files/scribus-1.5.2-gcc6-warn.patch b/app-office/scribus/files/scribus-1.5.2-gcc6-warn.patch new file mode 100644 index 000000000000..224ebe40d99e --- /dev/null +++ b/app-office/scribus/files/scribus-1.5.2-gcc6-warn.patch @@ -0,0 +1,87 @@ +commit bb3066704e987210c324ec7f3bfb2c8153d9710e +Author: Jean Ghali +Date: Sat Aug 20 12:18:31 2016 +0000 + + fix a few gcc 6 warnings related to auto_ptr deprecation in c++11 by replacing it with QScopedPointer + + git-svn-id: svn://scribus.net/trunk/Scribus@21430 11d20701-8431-0410-a711-e3c959e3b870 + +diff --git a/scribus/sclistboxpixmap.h b/scribus/sclistboxpixmap.h +index 044d45a..a067b79 100644 +--- a/scribus/sclistboxpixmap.h ++++ b/scribus/sclistboxpixmap.h +@@ -13,6 +13,7 @@ for which a new license (GPL+exception) is in place. + #include + #include + #include ++#include + #include + + #include "scguardedptr.h" +@@ -30,19 +31,19 @@ public: + virtual QSize sizeHint (const QStyleOptionViewItem & option, const QModelIndex & index ) const; + virtual void paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index ) const; + protected: +- static std::auto_ptr pmap; ++ static QScopedPointer pmap; + // The drawPixmap function must not modify pixmap size + virtual void redraw(const QVariant&) const = 0; + }; + + template +-std::auto_ptr ScListBoxPixmap::pmap; ++QScopedPointer ScListBoxPixmap::pmap; + + + template + ScListBoxPixmap::ScListBoxPixmap(void) : QAbstractItemDelegate() + { +- if (!pmap.get()) ++ if (pmap.isNull()) + { + pmap.reset( new QPixmap(pixWidth, pixHeight) ); + } +diff --git a/scribus/ui/colorlistbox.cpp b/scribus/ui/colorlistbox.cpp +index 9f3897b..99f280f 100644 +--- a/scribus/ui/colorlistbox.cpp ++++ b/scribus/ui/colorlistbox.cpp +@@ -83,7 +83,7 @@ public: + + void ColorSmallItemDelegate::redraw(const QVariant& data) const + { +- QPixmap* pPixmap = ScListBoxPixmap<15,15>::pmap.get(); ++ QPixmap* pPixmap = ScListBoxPixmap<15,15>::pmap.data(); + pPixmap->fill(Qt::transparent); + if (data.canConvert()) + { +@@ -101,7 +101,7 @@ void ColorSmallItemDelegate::redraw(const QVariant& data) const + + void ColorWideItemDelegate::redraw(const QVariant& data) const + { +- QPixmap* pPixmap = ScListBoxPixmap<30,15>::pmap.get(); ++ QPixmap* pPixmap = ScListBoxPixmap<30,15>::pmap.data(); + pPixmap->fill(Qt::transparent); + if (data.canConvert()) + { +@@ -134,7 +134,7 @@ void ColorFancyItemDelegate::redraw(const QVariant& data) const + iconsInitialized = true; + } + +- QPixmap* pPixmap = ScListBoxPixmap<60,15>::pmap.get(); ++ QPixmap* pPixmap = ScListBoxPixmap<60,15>::pmap.data(); + pPixmap->fill(Qt::transparent); + + if (data.canConvert()) +diff --git a/scribus/ui/propertiespalette_utils.cpp b/scribus/ui/propertiespalette_utils.cpp +index f76743c..cadbb11 100644 +--- a/scribus/ui/propertiespalette_utils.cpp ++++ b/scribus/ui/propertiespalette_utils.cpp +@@ -66,7 +66,7 @@ void LineFormatItemDelegate::redraw(const QVariant& data) const + QColor tmpf; + pmap->fill(Qt::white); + QPainter p; +- p.begin(pmap.get()); ++ p.begin(pmap.data()); + for (int its = item.m_Line.size()-1; its > -1; its--) + { + const ScColor& col = item.m_doc->PageColors[item.m_Line[its].Color]; diff --git a/app-office/scribus/files/scribus-1.5.2-qt57-build.patch b/app-office/scribus/files/scribus-1.5.2-qt57-build.patch new file mode 100644 index 000000000000..0584c2907911 --- /dev/null +++ b/app-office/scribus/files/scribus-1.5.2-qt57-build.patch @@ -0,0 +1,21 @@ +commit ddb5688ae4f4ff40ba1204a413fcf15279b35f2b +Author: Franz Schmid +Date: Sat Jun 18 09:14:21 2016 +0000 + + Compile Fix for compiling with Qt-5.7 + + git-svn-id: svn://scribus.net/trunk/Scribus@21381 11d20701-8431-0410-a711-e3c959e3b870 + +diff --git a/scribus/third_party/fparser/fpoptimizer.cc b/scribus/third_party/fparser/fpoptimizer.cc +index ae8c0f6..673e1b6 100644 +--- a/scribus/third_party/fparser/fpoptimizer.cc ++++ b/scribus/third_party/fparser/fpoptimizer.cc +@@ -7296,7 +7296,7 @@ namespace FPoptimizer_CodeTree + //if(imm >= 0.0) + { + double new_base_immed = std::pow(base_immed, imm); +- if(isinf(new_base_immed) || new_base_immed == 0.0) ++ if(std::isinf(new_base_immed) || new_base_immed == 0.0) + { + // It produced an infinity. Do not change. + break; diff --git a/app-office/scribus/scribus-1.5.2-r1.ebuild b/app-office/scribus/scribus-1.5.2-r2.ebuild similarity index 85% rename from app-office/scribus/scribus-1.5.2-r1.ebuild rename to app-office/scribus/scribus-1.5.2-r2.ebuild index b924a96c5ce6..1a91852fa8e6 100644 --- a/app-office/scribus/scribus-1.5.2-r1.ebuild +++ b/app-office/scribus/scribus-1.5.2-r2.ebuild @@ -4,11 +4,12 @@ EAPI=6 +CMAKE_MIN_VERSION="3.2" PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE="tk?" CMAKE_MAKEFILE_GENERATOR=ninja -inherit cmake-utils fdo-mime flag-o-matic multilib python-single-r1 +inherit cmake-utils eutils fdo-mime flag-o-matic multilib python-single-r1 DESCRIPTION="Desktop publishing (DTP) and layout program" HOMEPAGE="http://www.scribus.net/" @@ -32,8 +33,7 @@ REQUIRED_USE=" COMMON_DEPEND=" ${PYTHON_DEPS} app-text/libmspub - >=app-text/poppler-0.19.0:= - dev-libs/boost + app-text/poppler:= dev-libs/hyphen dev-libs/librevenge dev-libs/libxml2 @@ -50,14 +50,14 @@ COMMON_DEPEND=" media-libs/lcms:2 media-libs/libcdr media-libs/libpagemaker - media-libs/libpng:0 + media-libs/libpng:0= media-libs/libvisio media-libs/tiff:0 net-print/cups sys-libs/zlib[minizip] virtual/jpeg:0= >=x11-libs/cairo-1.10.0[X,svg] - boost? ( dev-libs/boost ) + boost? ( >=dev-libs/boost-1.62:= ) hunspell? ( app-text/hunspell ) graphicsmagick? ( media-gfx/graphicsmagick ) osg? ( dev-games/openscenegraph ) @@ -74,11 +74,15 @@ DEPEND="${COMMON_DEPEND} PATCHES=( "${FILESDIR}"/${PN}-1.5.0-docdir.patch "${FILESDIR}"/${P}-fpic.patch - ) + "${FILESDIR}"/${P}-cmake-qt57.patch + "${FILESDIR}"/${P}-qt57-build.patch + "${FILESDIR}"/${P}-cxx-build.patch + "${FILESDIR}"/${P}-gcc6-warn.patch +) src_prepare() { rm -r codegen/cheetah || die - cat > cmake/modules/FindZLIB.cmake <<- EOF + cat > cmake/modules/FindZLIB.cmake <<- EOF || die find_package(PkgConfig) pkg_check_modules(ZLIB minizip zlib) SET( ZLIB_LIBRARY \${ZLIB_LIBRARIES} ) @@ -96,9 +100,7 @@ src_prepare() { -e 's:\(${CMAKE_INSTALL_PREFIX}\):./\1:g' \ -i resources/templates/CMakeLists.txt || die - if has_version ">=dev-qt/qtcore-5.7.0" ; then - append-cxxflags "-std=c++11" #bug 591948 - fi + edos2unix scribus/ui/propertiespalette_utils.cpp cmake-utils_src_prepare } @@ -133,8 +135,9 @@ src_configure() { -DPYTHON_INCLUDE_PATH="$(python_get_includedir)" -DPYTHON_LIBRARY="$(python_get_library_path)" -DWANT_DISTROBUILD=ON - -DDOCDIR="/usr/share/doc/${PF}/" + -DDOCDIR="${EPREFIX%/}/usr/share/doc/${PF}/" -DWANT_GUI_LANG="${langs#;};en" + -DWANT_CPP11=ON -DWITH_PODOFO="$(usex pdf)" -DWITH_BOOST="$(usex boost)" -DWANT_GRAPHICSMAGICK="$(usex graphicsmagick)" @@ -156,23 +159,23 @@ src_install() { for lang in ${IUSE_LINGUAS}; do if ! use linguas_${lang}; then _lang=$(translate_lang) - safe_delete "${ED}"/usr/share/man/${_lang} + safe_delete "${ED%/}"/usr/share/man/${_lang} fi done if ! use scripts; then - rm "${ED}"/usr/share/scribus/scripts/*.py || die + rm "${ED%/}"/usr/share/scribus/scripts/*.py || die elif ! use tk; then - rm "${ED}"/usr/share/scribus/scripts/{FontSample,CalendarWizard}.py || die + rm "${ED%/}"/usr/share/scribus/scripts/{FontSample,CalendarWizard}.py || die fi use scripts && \ - python_fix_shebang "${ED}"/usr/share/scribus/scripts && \ - python_optimize "${ED}"/usr/share/scribus/scripts + python_fix_shebang "${ED%/}"/usr/share/scribus/scripts && \ + python_optimize "${ED%/}"/usr/share/scribus/scripts - mv "${ED}"/usr/share/doc/${PF}/{en,html} || die - ln -sf html "${ED}"/usr/share/doc/${PF}/en || die - cat >> "${T}"/COPYING <<- EOF + mv "${ED%/}"/usr/share/doc/${PF}/{en,html} || die + ln -sf html "${ED%/}"/usr/share/doc/${PF}/en || die + cat >> "${T}"/COPYING <<- EOF || die ${PN} is licensed under the "${LICENSE}". Please visit https://www.gnu.org/licenses/gpl-2.0.html for the complete license text. EOF diff --git a/app-portage/distpatch/Manifest b/app-portage/distpatch/Manifest index 80225f03654c..9232af3f9428 100644 --- a/app-portage/distpatch/Manifest +++ b/app-portage/distpatch/Manifest @@ -1 +1 @@ -DIST distpatch-0.1.1.tar.gz 19768 SHA256 1a455b14ebef9a6654f08b5280617dcd291e882ff42cd2f28d12b53579594522 SHA512 232a011a7acea42e163a127f640594dd6702aa6c162034be24804c04fc458eab43948c7c5028ee8c49b564ec589564fb80e83ffb9d97c142e3f1c138a25e2739 WHIRLPOOL d6947424d1002b371201a24df6c277afdd81d4282bb91f88eff41777f0cf0a7e7f6ce6b53f688dc27f43bbf9fde8354af705351a119b2af71b8ff4a367e320da +DIST distpatch-0.1.2.tar.gz 19998 SHA256 97452cf226d390c0d4634d4b985040228cc7e22551322ea949ef6c72eb6771a2 SHA512 f4dd08fd69a5b2030e0b912c1153994bcc03f40af65fff185231a220c110d0e7b5a4acf402d116e9dbfef86b13d17036ca563d0fefd89bc62809e1ecc9acf1ed WHIRLPOOL 4577cc6361212b52c4ff7a25a4d50b4b8bccbccb0d2081a61a3dbcfcb7bf0d4b09d8bfddcbc1c8607e30a4dca7d74336386a01d483697acbd7268bd7e454225d diff --git a/app-portage/distpatch/distpatch-0.1.1.ebuild b/app-portage/distpatch/distpatch-0.1.2.ebuild similarity index 67% rename from app-portage/distpatch/distpatch-0.1.1.ebuild rename to app-portage/distpatch/distpatch-0.1.2.ebuild index b6ae885facf9..bb3bc3323f50 100644 --- a/app-portage/distpatch/distpatch-0.1.1.ebuild +++ b/app-portage/distpatch/distpatch-0.1.2.ebuild @@ -1,18 +1,16 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=3 +EAPI=6 -PYTHON_DEPEND='*:2.6' -SUPPORT_PYTHON_ABIS=1 -RESTRICT_PYTHON_ABIS='2.4 2.5 3.*' +PYTHON_COMPAT=( python2_7 ) -inherit distutils +inherit distutils-r1 DESCRIPTION="Distfile Patching Support for Gentoo Linux (tools)" HOMEPAGE="https://www.gentoo.org/proj/en/infrastructure/distpatch/" -SRC_URI="mirror://github/rafaelmartins/${PN}/${P}.tar.gz" +SRC_URI="https://github.com/rafaelmartins/${PN}/releases/download/v${PV}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" diff --git a/app-portage/eix/eix-0.32.1-r1.ebuild b/app-portage/eix/eix-0.32.1-r1.ebuild new file mode 100644 index 000000000000..4665d7be2714 --- /dev/null +++ b/app-portage/eix/eix-0.32.1-r1.ebuild @@ -0,0 +1,99 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PLOCALES="de ru" +inherit bash-completion-r1 l10n systemd + +DESCRIPTION="Search and query ebuilds" +HOMEPAGE="https://github.com/vaeth/eix/" +SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="debug doc nls sqlite" + +BOTHDEPEND="nls? ( virtual/libintl ) + sqlite? ( >=dev-db/sqlite-3:= )" +RDEPEND="${BOTHDEPEND} + app-shells/push + app-shells/quoter" +DEPEND="${BOTHDEPEND} + app-arch/xz-utils + nls? ( sys-devel/gettext )" + +pkg_setup() { + # remove stale cache file to prevent collisions + local old_cache=${EROOT%/}/var/cache/${PN} + if [[ -f ${old_cache} ]]; then + rm "${old_cache}" || die + fi +} + +src_prepare() { + default + sed -i -e "s:/:${EPREFIX}/:" tmpfiles.d/eix.conf || die +} + +src_configure() { + local myconf=( + $(use_enable debug paranoicasserts) + $(use_enable nls) + $(use_with doc extra-doc) + $(use_with sqlite) + + # default configuration + $(use_with prefix always-accept-keywords) + --with-dep-default + --with-required-use-default + + # paths + --with-portage-rootpath="${ROOTPATH}" + --with-eprefix-default="${EPREFIX}" + + # build a single executable with symlinks + --disable-separate-binaries + --disable-separate-tools + + # used purely to control/disrespect *FLAGS + --disable-debugging + --disable-new_dialect + --disable-optimization + --disable-strong-optimization + --disable-security + --disable-nopie-security + --disable-strong-security + ) + + econf "${myconf[@]}" +} + +src_install() { + default + dobashcomp bash/eix + systemd_dotmpfilesd tmpfiles.d/eix.conf + + keepdir /var/cache/eix +} + +pkg_postinst() { + if ! use prefix; then + # note: if this is done in src_install(), portage:portage + # ownership may be reset to root + fowners portage:portage "${EROOT%/}"/var/cache/eix + fi + + local obs=${EROOT%/}/var/cache/eix.previous + if [[ -f ${obs} ]]; then + ewarn "Found obsolete ${obs}, please remove it" + fi +} + +pkg_postrm() { + if [[ ! -n ${REPLACED_BY_VERSION} ]]; then + rm -rf "${EROOT%/}/var/cache/${PN}" || die + fi +} diff --git a/app-portage/eix/eix-0.32.1.ebuild b/app-portage/eix/eix-0.32.1.ebuild deleted file mode 100644 index 3a9d4bf52801..000000000000 --- a/app-portage/eix/eix-0.32.1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -PLOCALES="de ru" -inherit bash-completion-r1 l10n systemd - -DESCRIPTION="Search and query ebuilds, portage incl. local settings, ext. overlays and more" -HOMEPAGE="https://github.com/vaeth/eix/" -SRC_URI="https://github.com/vaeth/eix/releases/download/v${PV}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="debug +dep doc nls optimization +required-use security strong-optimization strong-security sqlite swap-remote tools" - -BOTHDEPEND="sqlite? ( >=dev-db/sqlite-3 ) - nls? ( virtual/libintl )" -RDEPEND="${BOTHDEPEND} - app-shells/push - app-shells/quoter" -DEPEND="${BOTHDEPEND} - app-arch/xz-utils - nls? ( sys-devel/gettext )" - -pkg_setup() { - case " ${REPLACING_VERSIONS}" in - *\ 0.[0-9].*|*\ 0.1[0-9].*|*\ 0.2[0-4].*|*\ 0.25.0*) - local eixcache="${EROOT}/var/cache/${PN}" - test -f "${eixcache}" && rm -f -- "${eixcache}";; - esac -} - -src_prepare() { - sed -i -e "s'/'${EPREFIX}/'" -- "${S}"/tmpfiles.d/eix.conf || die - eapply_user -} - -src_configure() { - econf $(use_with sqlite) $(use_with doc extra-doc) \ - $(use_enable nls) $(use_enable tools separate-tools) \ - $(use_enable security) $(use_enable optimization) \ - $(use_enable strong-security) \ - $(use_enable strong-optimization) $(use_enable debug debugging) \ - $(use_enable swap-remote) \ - $(use_with prefix always-accept-keywords) \ - $(use_with dep dep-default) \ - $(use_with required-use required-use-default) \ - --with-zsh-completion \ - --with-portage-rootpath="${ROOTPATH}" \ - --with-eprefix-default="${EPREFIX}" -} - -src_install() { - default - dobashcomp bash/eix - systemd_dotmpfilesd tmpfiles.d/eix.conf -} - -pkg_postinst() { - test -d "${EROOT}var/cache/${PN}" || { - mkdir "${EROOT}var/cache/${PN}" - use prefix || chown portage:portage "${EROOT}var/cache/${PN}" - } - local obs="${EROOT}var/cache/eix.previous" - ! test -f "${obs}" || ewarn "Found obsolete ${obs}, please remove it" -} - -pkg_postrm() { - [ -n "${REPLACED_BY_VERSION}" ] || rm -rf -- "${EROOT}var/cache/${PN}" -} diff --git a/app-portage/flaggie/flaggie-0.2.1.ebuild b/app-portage/flaggie/flaggie-0.2.1.ebuild index a20938c13ba6..f2e4670b8814 100644 --- a/app-portage/flaggie/flaggie-0.2.1.ebuild +++ b/app-portage/flaggie/flaggie-0.2.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -9,8 +9,8 @@ PYTHON_COMPAT=( python{2_7,3_4} pypy ) inherit bash-completion-r1 distutils-r1 DESCRIPTION="A smart CLI mangler for package.* files" -HOMEPAGE="https://bitbucket.org/mgorny/flaggie/" -SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2" +HOMEPAGE="https://github.com/mgorny/flaggie/" +SRC_URI="https://github.com/mgorny/flaggie/releases/download/${P}/${P}.tar.bz2" LICENSE="BSD" SLOT="0" diff --git a/app-portage/flaggie/flaggie-9999.ebuild b/app-portage/flaggie/flaggie-9999.ebuild index c46553ddf4ba..6016e567abf8 100644 --- a/app-portage/flaggie/flaggie-9999.ebuild +++ b/app-portage/flaggie/flaggie-9999.ebuild @@ -1,33 +1,24 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} ) +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) -inherit bash-completion-r1 distutils-r1 - -#if LIVE -EGIT_REPO_URI="https://bitbucket.org/mgorny/${PN}.git" -inherit git-r3 -#endif +EGIT_REPO_URI="https://github.com/mgorny/flaggie.git" +inherit bash-completion-r1 distutils-r1 git-r3 DESCRIPTION="A smart CLI mangler for package.* files" -HOMEPAGE="https://bitbucket.org/mgorny/flaggie/" -SRC_URI="https://www.bitbucket.org/mgorny/${PN}/downloads/${P}.tar.bz2" +HOMEPAGE="https://github.com/mgorny/flaggie/" +SRC_URI="" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="" IUSE="" RDEPEND="sys-apps/portage[${PYTHON_USEDEP}]" -#if LIVE -KEYWORDS= -SRC_URI= -#endif - python_install_all() { newbashcomp contrib/bash-completion/${PN}.bash-completion ${PN} distutils-r1_python_install_all diff --git a/app-portage/flaggie/metadata.xml b/app-portage/flaggie/metadata.xml index 540e3b651b73..5ecf8886a38f 100644 --- a/app-portage/flaggie/metadata.xml +++ b/app-portage/flaggie/metadata.xml @@ -10,7 +10,7 @@ mgorny@gentoo.org Michał Górny - https://bitbucket.org/mgorny/flaggie/issues/ - mgorny/flaggie + https://github.com/mgorny/flaggie/issues/ + mgorny/flaggie diff --git a/app-portage/g-octave/files/g-octave-0.4.1-add_cave_support.patch b/app-portage/g-octave/files/g-octave-0.4.1-add_cave_support.patch index 1ef90c9200ed..27468c1bba5a 100644 --- a/app-portage/g-octave/files/g-octave-0.4.1-add_cave_support.patch +++ b/app-portage/g-octave/files/g-octave-0.4.1-add_cave_support.patch @@ -1,5 +1,5 @@ ---- ./g-octave-0.4.1/g_octave/package_manager.py 2010-10-23 23:37:26.000000000 +0200 -+++ ./g-octave-0.4.1/g_octave/package_manager.py 2011-05-25 12:52:10.510019006 +0200 +--- g-octave-0.4.1/g_octave/package_manager.py 2010-10-23 23:37:26.000000000 +0200 ++++ g-octave-0.4.1/g_octave/package_manager.py 2011-05-25 12:52:10.510019006 +0200 @@ -15,6 +15,7 @@ 'Portage', 'Pkgcore', @@ -65,8 +65,8 @@ + for line in p.stdout: + packages.append(line.strip()) + return packages ---- ./g-octave-0.4.1/scripts/g-octave 2011-05-25 12:00:25.740019020 +0200 -+++ ./g-octave-0.4.1/scripts/g-octave 2011-05-25 12:00:39.434019008 +0200 +--- g-octave-0.4.1/scripts/g-octave 2011-05-25 12:00:25.740019020 +0200 ++++ g-octave-0.4.1/scripts/g-octave 2011-05-25 12:00:39.434019008 +0200 @@ -217,7 +217,7 @@ return os.EX_DATAERR return os.EX_OK diff --git a/app-portage/g-octave/files/g-octave-0.4.1-fix-Makefile.patch b/app-portage/g-octave/files/g-octave-0.4.1-fix-Makefile.patch index 53d3d5e0dbcd..af56b4f75d96 100644 --- a/app-portage/g-octave/files/g-octave-0.4.1-fix-Makefile.patch +++ b/app-portage/g-octave/files/g-octave-0.4.1-fix-Makefile.patch @@ -1,5 +1,5 @@ ---- share/g-octave.eclass 2013-05-30 19:01:07.980521612 +0200 -+++ share/g-octave.eclass.new 2013-05-30 19:03:38.933514388 +0200 +--- g-octave-0.4.1/share/g-octave.eclass 2013-05-30 19:01:07.980521612 +0200 ++++ g-octave-0.4.1/share/g-octave.eclass.new 2013-05-30 19:03:38.933514388 +0200 @@ -48,6 +48,9 @@ for filename in Makefile configure; do cp "${DISTDIR}/g-octave_${filename}" "${S}/${filename}" diff --git a/app-portage/g-octave/g-octave-0.4.1-r4.ebuild b/app-portage/g-octave/g-octave-0.4.1-r5.ebuild similarity index 68% rename from app-portage/g-octave/g-octave-0.4.1-r4.ebuild rename to app-portage/g-octave/g-octave-0.4.1-r5.ebuild index a38b04adc050..7a5cd898ea19 100644 --- a/app-portage/g-octave/g-octave-0.4.1-r4.ebuild +++ b/app-portage/g-octave/g-octave-0.4.1-r5.ebuild @@ -1,15 +1,15 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.5 *-jython" +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) DB_COMMIT="bdf02cbf0a8d017c6c1bddeffd6f03d5d90695ed" DB_DIR="rafaelmartins-${PN}-db-${DB_COMMIT:0:7}" -inherit distutils eutils +inherit distutils-r1 eutils DESCRIPTION="A tool that generates and installs ebuilds for Octave-Forge" HOMEPAGE="https://github.com/rafaelmartins/g-octave" @@ -26,44 +26,38 @@ IUSE="doc test" DEPEND="doc? ( >=dev-python/sphinx-1.0 )" RDEPEND="sys-apps/portage" -PYTHON_MODNAME="g_octave" - -src_prepare() { - distutils_src_prepare - epatch "${FILESDIR}/${P}-add_cave_support.patch" - epatch "${FILESDIR}/${P}-fix-sourceforge-svn-root.patch" - epatch "${FILESDIR}/${P}-fix-Makefile.patch" +python_prepare_all() { + local PATCHES=( + "${FILESDIR}/${P}-add_cave_support.patch" + "${FILESDIR}/${P}-fix-sourceforge-svn-root.patch" + "${FILESDIR}/${P}-fix-Makefile.patch" + ) sed -i -e 's/^has_fetch.*$/has_fetch = False/' scripts/g-octave \ || die 'failed to patch the g-octave main script' + distutils-r1_python_prepare_all } -src_compile() { - distutils_src_compile +python_compile_all() { if use doc; then emake -C docs html || die 'failed to compile the documentation.' fi } -src_install() { - distutils_src_install - dohtml ${PN}.html || die 'dohtml failed.' +python_install_all() { + local HTML_DOCS=( ${PN}.html ) doman ${PN}.1 || die 'doman failed.' if use doc; then mv docs/_build/{html,sphinx} || die 'mv failed.' - dohtml -r docs/_build/sphinx || die 'dohtml failed.' + HTML_DOCS+=( docs/_build/sphinx ) fi + distutils-r1_python_install_all } -src_test() { - testing() { - PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" \ - scripts/run_tests.py || die 'test failed.' - } - python_execute_function testing +python_test() { + "${EPYTHON}" scripts/run_tests.py || die 'test failed.' } pkg_postinst() { - distutils_pkg_postinst elog elog 'To be able to use g-octave with the shipped package database, please' elog 'edit your configuration file, clean your db directory and run:' @@ -78,10 +72,10 @@ pkg_postinst() { pkg_config() { local db="$(g-octave --config db)" - mkdir -p "${db}" + mkdir -p "${db}" || die 'mkdir failed.' einfo "Extracting g-octave database files to: ${db}" tar -xzf "${DISTDIR}/${PN}-db-${DB_COMMIT:0:7}.tar.gz" -C "${db}" || die 'tar failed.' - rm -rf "${db}"/{patches,octave-forge,info.json,manifest.json,timestamp} + rm -rf "${db}"/{patches,octave-forge,info.json,manifest.json,timestamp} || die 'rm db files failed.' mv -f "${db}/${DB_DIR}"/* "${db}" || die 'mv failed.' - rm -rf "${db}/${DB_DIR}" + rm -rf "${db}/${DB_DIR}" || die 'rm db dir failed.' } diff --git a/dev-haskell/mutable-containers/Manifest b/dev-haskell/mutable-containers/Manifest index cbdd1d56a1f4..229c5dc30539 100644 --- a/dev-haskell/mutable-containers/Manifest +++ b/dev-haskell/mutable-containers/Manifest @@ -1,2 +1,3 @@ DIST mutable-containers-0.3.2.1.tar.gz 12102 SHA256 fb83475c6a755d1998906f37a71b6aa6f414fd0b5d41b16567c2219fb43e4e4d SHA512 77c573e6e4e1bb8efd5bc1ec049d62b2db3c7973a8ce750b061f23561e23edb49b896ee59d27d88cc10ff67932ed101999bd7f5750959a3c0bcca021afbf6960 WHIRLPOOL 4f1bd80a82f728ec736e2c1cf417a6e7a68f5faec3ec1ed05774b0204230c0ad2787a3daa1c992c572279da8abd50aa9963105f9c2f746aed387290076130108 DIST mutable-containers-0.3.2.tar.gz 11969 SHA256 781388cf52faa5f9c4c8a825eef11bec430e323c6913d25b5f4e63d8ce02017e SHA512 b75e650406d92de25b903b4a761d760a797d099c7d3fd82a791c1b86caee104081edff159e78022178a284f7ca61233de91c179a435429dd585c46f97c384274 WHIRLPOOL 36d908ca6ea37a1e99dc70c13a4167f65ce960068dfbbfa0b25fe0d6dc8664a6ecbffd78ae88a12cfe04cd631d5eafdb5e01d93c241c685fe531ddc68c42084f +DIST mutable-containers-0.3.3.tar.gz 12062 SHA256 7a7a39cbb16978dd1607a3977d7a1e5d8ecda7a528845d6983b5b97c49517ceb SHA512 0708f0d432136fc3bb52b9f0159e131f4c02829bd6a2e47d4f1be9a1a70e0b492d885d1ca64e11955aceb7a4b98b9a44dce0c3f0865b1513112c5f8fc2189abf WHIRLPOOL 542252a2b7cb80c04c8022cb9411e3a634b07cc331ad634c3dcf70ff1852bf4e8da5cf322754a2afd23d24ba9cb5121b79d001f2edf4c9aa4b8026106fc31c33 diff --git a/dev-haskell/mutable-containers/mutable-containers-0.3.3.ebuild b/dev-haskell/mutable-containers/mutable-containers-0.3.3.ebuild new file mode 100644 index 000000000000..5524afc6fc9f --- /dev/null +++ b/dev-haskell/mutable-containers/mutable-containers-0.3.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Abstactions and concrete implementations of mutable containers" +HOMEPAGE="https://github.com/snoyberg/mono-traversable" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/mono-traversable:=[profile?] + >=dev-haskell/primitive-0.5.2.1:=[profile?] + dev-haskell/vector:=[profile?] + >=dev-lang/ghc-7.8.2:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.18.1.3 + test? ( dev-haskell/hspec + dev-haskell/quickcheck ) +" diff --git a/dev-haskell/parsec/Manifest b/dev-haskell/parsec/Manifest index 881071b553d6..c1e131bc33f2 100644 --- a/dev-haskell/parsec/Manifest +++ b/dev-haskell/parsec/Manifest @@ -1,3 +1,4 @@ DIST parsec-2.1.0.1.tar.gz 15430 SHA256 2d85e5b5c8b2b1f341037ce67e1db7fa47b31c083136796cfef9e5b945c656df SHA512 c068ded3b04a0544833a4e11d238db8d7d80cce8d88c9fcf8f7446ed6d37766b923a49179b06831fd013b19a530cf859edde0ec089444620472617e978d235bb WHIRLPOOL 2d4437aa7b4306abb3a0bf84ee3260a4bcf6e200c26bd35201e6cf8f9a21e7f3bf53cdc33cb83ba23ebb91a7607c8c2a6b20d940bf03b6e1828d821baf9c1dea +DIST parsec-3.1.11.tar.gz 32412 SHA256 6f87251cb1d11505e621274dec15972de924a9074f07f7430a18892064c2676e SHA512 f913c172295b184fc118a59ad5fd66c35133885c39aac62239fc3a1aa98b4741465f67d0cffafc1706262ada42259a4694bfbb9175a399997e5b8840da4a809f WHIRLPOOL 88b77d88439ef6dbe70948da8bb0dfa6d858696b1c172b3ffbdb9cd0485528bbbba0912927c31b96bc4eac9024d9fea656a6abc46ef4f47af398c783c93f4d6e DIST parsec-3.1.5.tar.gz 27894 SHA256 c572245d72bc3aff3491ce4f89215fcaa1e01c5e7b280d4c105a87db31793cb8 SHA512 58bd5e1ea878349a678c4a8d77caf42962ab65f801411bbbad4fa1e4f387de743f2f64944b5d7ef82042507552f281f70a7f4b40984a0ca4fd37618a0d1ec662 WHIRLPOOL c155e6a1ca499a80e9c914d454dda01125098d028ba44325f3745be0b4231ac684d91c7e00fe1c17007f4336933229b1ac67fe09e029f897877549c5a8a9fb66 DIST parsec-3.1.9.tar.gz 29668 SHA256 71f711d24c89581a43b8bc2d3ed56a1a802bbf1cd0b083bc34636c232b0342c9 SHA512 bc5209813ad0742c68c275f0ecd3e284b6249d2651f75daf16ad9a776003591217eb7d47fdaad88530af90455fe7d3e014c3c1d7d0893482721d4997b23a2d16 WHIRLPOOL c8988d0960734c51fe11baf2e1ae82929ac7b3ce7a653f8c507c5ae292da38bb75bd2209535c7469f78b6651240229b697e402159fd375eda657fab35ccf4879 diff --git a/dev-haskell/parsec/parsec-3.1.11.ebuild b/dev-haskell/parsec/parsec-3.1.11.ebuild new file mode 100644 index 000000000000..76cdcedd46e6 --- /dev/null +++ b/dev-haskell/parsec/parsec-3.1.11.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Monadic parser combinators" +HOMEPAGE="https://github.com/aslatter/parsec" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +IUSE="" + +RDEPEND="dev-haskell/mtl:=[profile?] + >=dev-haskell/text-0.2:=[profile?] =dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( >=dev-haskell/hunit-1.2 =dev-haskell/test-framework-0.6 =dev-haskell/test-framework-hunit-0.2 = 2.1 && < 2.9' 'QuickCheck >= 2.1' +} diff --git a/dev-haskell/quickcheck-io/Manifest b/dev-haskell/quickcheck-io/Manifest index e5ff05915843..293edd69f216 100644 --- a/dev-haskell/quickcheck-io/Manifest +++ b/dev-haskell/quickcheck-io/Manifest @@ -1,2 +1,3 @@ DIST quickcheck-io-0.1.1.tar.gz 1646 SHA256 a23a6e011aafd211c2521ddb9f61ffb5d256837148b5f5c35a152bdb37d6039b SHA512 440e15d8600f7b0f662cacf176dfb1c00371add4204fad3ffcf56e092d92b3405a2e5a0a6e03b265c83dbc2ff18f3f47213e8086164840d5c8da35b575ebb007 WHIRLPOOL b874d816a5166421b13e5721bee11b7a06d01cbbd6458a71b7f595fc0974cfdc1e55e0bc938ad2088a4a02bee95f6baa60e85d8250867385db324d741365f5b7 DIST quickcheck-io-0.1.2.tar.gz 1784 SHA256 50275e5253dcf0c838e340fa19eb841804deb634aeedbf33f0b46a97b89bc1cd SHA512 3a3f1ff1bb8fc4924396cc6ba7dc827f41f2d7186707c78325eca3fea5bafa0257cad4d69debae0d7847c10dff88281fa3c9bd63e1882a1fad7c1f3448132835 WHIRLPOOL 760c80face3d603e8c2e69a81e3b54b1ef04acb39c887f1b55c611f1451f8f9eb5abd63de5d8d03b65aece017b3ccf5103bc2b9f5c9231794be1ed8528fd7528 +DIST quickcheck-io-0.1.4.tar.gz 1808 SHA256 6b3750590871b03908530764cdaa69ce67d5b514f533c1a4a6f4755f8267389d SHA512 791e9ddaf973238adb7049163682e3ca7caee3f676f2534e68c0dd84ad9059eebfa3e6544531cb346e2c114586fde6d81247d867e101a8017d48bfaf58841380 WHIRLPOOL 765fcf812c53809e49682dde86ef8afdf4ba20c415325c97088573425ffaac6cd11b0d496227ccbb7fa32bc6bc2b4ca0767577f0a9be9953e4fcd111be1af572 diff --git a/dev-haskell/quickcheck-io/quickcheck-io-0.1.4.ebuild b/dev-haskell/quickcheck-io/quickcheck-io-0.1.4.ebuild new file mode 100644 index 000000000000..07c357aff519 --- /dev/null +++ b/dev-haskell/quickcheck-io/quickcheck-io-0.1.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Use HUnit assertions as QuickCheck properties" +HOMEPAGE="https://github.com/hspec/quickcheck-io#readme" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/hunit-1.2.5:=[profile?] + >=dev-haskell/quickcheck-2.5.1:2=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.10 +" diff --git a/dev-haskell/sandi/Manifest b/dev-haskell/sandi/Manifest index bd7b2e686644..a0aa656214e5 100644 --- a/dev-haskell/sandi/Manifest +++ b/dev-haskell/sandi/Manifest @@ -1 +1,2 @@ DIST sandi-0.3.6.tar.gz 18463 SHA256 fafcb3501b8a17238de44239ef62c3051f9a33010424ef91dd76057257bf2284 SHA512 8a730f63e72fb648e2ae478a3785ab364b437a319735acda80558639cc0a43027639ff01dd2b630277348ebc31a4a5fe30ede8f4208229c1c8810f78d350bbf2 WHIRLPOOL 3eb72f69eb0e72380b91c5e12353bb1c00e6572c151a5e40a770c1b51278ed4ab27b89136f04db9b4a7b48bf9da69fa4356f800e1fa45061eaf9da36c688dad5 +DIST sandi-0.4.0.tar.gz 19319 SHA256 40c895a4b26904e3a4b4488e93f37225bdb48e6787dffed627d16242f01aaeea SHA512 8d67d4630940b2bc75eba74e1aea169d604f27701015a19ecba6dfece9a2dc8a215a786991bc9ab1fc6de8c91c3b608144239b83c4cb01be0620b3ddb12ee8b6 WHIRLPOOL 6768a2675aad40d1a31fd4dad78f349f507cc502fb838d83aa1d93f48ccb533de4029a8efbefe959389d3d7db362d64057f1de5b3eae20e2321d76179d1ab9c8 diff --git a/dev-haskell/sandi/sandi-0.4.0.ebuild b/dev-haskell/sandi/sandi-0.4.0.ebuild new file mode 100644 index 000000000000..33695c89b69b --- /dev/null +++ b/dev-haskell/sandi/sandi-0.4.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Data encoding library" +HOMEPAGE="http://hackage.haskell.org/package/sandi" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+with-conduit" + +RDEPEND=">=dev-haskell/stringsearch-0.3:=[profile?] =dev-lang/ghc-7.8.2:= + with-conduit? ( >=dev-haskell/conduit-1.2:=[profile?] =dev-haskell/exceptions-0.6:=[profile?] => liftIO . \f -> do + stat <- getSymbolicLinkStatus f +- return $ isSymbolicLink stat ++ return $ System.PosixCompat.Files.isSymbolicLink stat + diff --git a/dev-haskell/shellish/shellish-0.1.4.ebuild b/dev-haskell/shellish/shellish-0.1.4.ebuild index f93d8797cc7a..55236c96777e 100644 --- a/dev-haskell/shellish/shellish-0.1.4.ebuild +++ b/dev-haskell/shellish/shellish-0.1.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -27,4 +27,5 @@ DEPEND="${RDEPEND} src_prepare() { epatch "${FILESDIR}"/${P}-ghc-7.10.patch + epatch "${FILESDIR}"/${P}-ghc-8.patch } diff --git a/dev-haskell/shelly/Manifest b/dev-haskell/shelly/Manifest index e749495989bd..9608df7c1d1e 100644 --- a/dev-haskell/shelly/Manifest +++ b/dev-haskell/shelly/Manifest @@ -1,3 +1,4 @@ DIST shelly-1.5.6.tar.gz 28264 SHA256 f45f778d21661f616cfc849f7729e5aecef7250687e5b30c12e6d8118706d6ee SHA512 522aa76454211b9f31dc92f052703e3f9f4a103c134da063ff5c4c04e209a1f881dc10c0f8589c557ad179a8dc319951b897b8ff401dd8f9a371f69f1def6022 WHIRLPOOL 25455d9800acb5303910bab4d0d91567b3fafc74d614a2875772a60cc594213d572a92cdb46e06030f5584796e1c7ff91aaf3042c79cbcddd9c9de6a39ecf076 DIST shelly-1.6.5.tar.gz 97274 SHA256 bdfd09b01f3de8e7e58e98591ab1a42ad5a74308ff29f19acd16d7cc85b71cdc SHA512 6a5b418987392d755e7faf60206a3e9283e98f56a4d9d9f956c0385074ff8909fb6bddceb050b00dbd0f8eda55eeb4897d9afd2f8dd2d510367567336a7a6770 WHIRLPOOL 127f28061a33f979a884b1e110bcb4aabc10e7cf6eae9953e0fbce0bb842e8022574955c7a8ff4a5d411ee088aedcf76c08eff768aa743f6e56f22da0f4606f2 DIST shelly-1.6.6.tar.gz 97529 SHA256 9c89e1ed25de9ede0ee6d6a4094ff72ca6af5b1a1f67503ea40a87beb796e1c5 SHA512 1b78cb84d126f6bb67db3a3d5e669759e71811e2770831af41a4867d094f89b32c3cf39363cc39c808e71019d6e7eca18d25e854bbf4160bd3388c6769a8665c WHIRLPOOL 7a160e8cb20c88cc6e6304cfc704bd037fa689f4748bf51cde7e5f54f4267cd4b7428922f2da8219efdf084c43dcc66b270054e2b3313cc5a3ea417db2416a04 +DIST shelly-1.6.8.1.tar.gz 97802 SHA256 e5a32f7552779667d1f0164d271e99c9ddcabdf1a7a1503cd6fc8ba0bb4445cd SHA512 76ab37289a9b6c51ecb6d5326161b326a4015ed27f6c61cd889d4dbf8f6417e6629d0059fdf65ec40f4093cb921ea3b4871105ccd77c94f863c2a087e3c2fab6 WHIRLPOOL 8d99a18e1ca38c7ef4b032d5ff2a0552e80f60184b05a43411aafed2b95699d11a73b42915bfbdd5b3d6cfc8ff9c7bcdee65ac06ce1855cac31eb52b7650295f diff --git a/dev-haskell/shelly/shelly-1.6.8.1.ebuild b/dev-haskell/shelly/shelly-1.6.8.1.ebuild new file mode 100644 index 000000000000..bffac6ca6ed7 --- /dev/null +++ b/dev-haskell/shelly/shelly-1.6.8.1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 +#hackport: flags: build-examples:examples + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="shell-like (systems) programming in Haskell" +HOMEPAGE="https://github.com/yesodweb/Shelly.hs" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="examples lifted" + +RDEPEND="dev-haskell/async:=[profile?] + dev-haskell/enclosed-exceptions:=[profile?] + >=dev-haskell/exceptions-0.6:=[profile?] =dev-haskell/monad-control-0.3.2:=[profile?] =dev-haskell/mtl-2:=[profile?] + =dev-haskell/system-filepath-0.4.7:=[profile?] =dev-lang/ghc-7.8.2:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.18.1.3 + test? ( >=dev-haskell/hspec-1.5 + >=dev-haskell/hunit-1.2 + >=dev-haskell/text-0.11 ) +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag examples build-examples) \ + $(cabal_flag lifted lifted) +} diff --git a/dev-haskell/simple-sendfile/Manifest b/dev-haskell/simple-sendfile/Manifest index 3bca31115d3b..fda09ff381e3 100644 --- a/dev-haskell/simple-sendfile/Manifest +++ b/dev-haskell/simple-sendfile/Manifest @@ -1,2 +1,3 @@ DIST simple-sendfile-0.2.13.tar.gz 7272 SHA256 a3e1e880eecb4896f2b7c90e738c94f27f031d0c199dd583a501c609dd5f8f0d SHA512 945ded7475b7c96869a806f70fba3704c98c1959e1665f20624dba1041f0d98ab50a0624ac3e27eb802f4ad9b20455cffd7a5aa35ddac2758a8164dddf63c2ff WHIRLPOOL adc4b3a44133ae5fdcaceeeeefdd01c4334a502d5afb457124adade20df2253d29b1b912221cfc9a0c409354a9dbca6d46fe5ccd2bca8354a83b60cdfe0ffb11 DIST simple-sendfile-0.2.21.tar.gz 7469 SHA256 61239d6c5e94ec76067d88d8a09589b53ca0a5d1806fd9f3e042d007cc67fd77 SHA512 bf6c8d42eed99e31ea71dc2447a3ea30f80ca6573edb7b19d4881c1b9c8b39a9f9c23cf84427f30f2d13cea50930c674a32acea6dd1c7ef98071d259af0e44f7 WHIRLPOOL 7bcee3a875d0f7cb2cf47b57fbf11b148a36b56d8c6a5d37612c03d988b047f94b2b56c38374fd999d0f1225e162aa31befdb0e600b833866f95d8b3b1c6a61f +DIST simple-sendfile-0.2.25.tar.gz 343509 SHA256 0ae68821cd828b29772654b5613d514a421b1b1440d82a4b610339e67a92294d SHA512 4e31bd6843e74988b5f132e77557e4db0da833cd7f0e8ee6dfa460a495afa1de18325deddb0ca71b959b704f090292ca4eb4c2bf06cd96fd27fc78a4d3f79eeb WHIRLPOOL 54a2055524c8ad790ea59f0d44085ef787f78df777ebec724569f37085f9cef5647cf6c3d6fdb40c170e2dac82e8a1489ec4d4e7594b304642483813c4589e10 diff --git a/dev-haskell/simple-sendfile/simple-sendfile-0.2.25.ebuild b/dev-haskell/simple-sendfile/simple-sendfile-0.2.25.ebuild new file mode 100644 index 000000000000..de378ae1558c --- /dev/null +++ b/dev-haskell/simple-sendfile/simple-sendfile-0.2.25.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Cross platform library for the sendfile system call" +HOMEPAGE="http://hackage.haskell.org/package/simple-sendfile" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+allow-bsd" + +RDEPEND="dev-haskell/network:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.10 + test? ( dev-haskell/conduit + dev-haskell/conduit-extra + >=dev-haskell/hspec-1.3 + dev-haskell/hunit + dev-haskell/resourcet ) +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag allow-bsd allow-bsd) +} diff --git a/dev-haskell/statistics/Manifest b/dev-haskell/statistics/Manifest index 3660c48c20b5..cfccb6850baa 100644 --- a/dev-haskell/statistics/Manifest +++ b/dev-haskell/statistics/Manifest @@ -1,3 +1,4 @@ DIST statistics-0.10.5.2.tar.gz 67302 SHA256 7eef958aee470c3eda905cf29d62aa336681228f9e6bc30299e84436d0ef8b8f SHA512 92ca0852551d2f67b1a0d96d472952492422d0c35962c1c784baa4d28915b7938e588c6fd8eddab1071e4526b78181258dda79a1962312714d140ccaaf1367e1 WHIRLPOOL ba4edd519c4df73b65dd402a4dbe137cc99312ebc466433c56910ccfa6754bac88a77f07281591be811ecb522ea3924a1a5e13d64c5b21898041891a7b88fa61 DIST statistics-0.11.0.3.tar.gz 69092 SHA256 0336acd8f61c36fe30217198660b75d7cf88655fb164cbfa4d464a8977fc94a0 SHA512 7715e5497a794d4706232372c63a83072a60a7ba25517bbecafcce5125d83ad13916755db83af0ece349a35a663447037fc0316cf841570fa3e6a83bb29457fb WHIRLPOOL 761ae858928c4d495e315afeddbc6623daa44ed788700a546c2e56e15a20a6e0124b49190500be78e24f2bce34e11aedc7eae17559a52a2d7b61fddbcfcb35a2 DIST statistics-0.13.2.3.tar.gz 79522 SHA256 d624b1494959d3c64cfd068c9566778a799d3e3f5d6b22ec3e353ba6d6876fbd SHA512 5fcc6f6889ed5b54d17d5d3f505bc6860d836f6f9784cf768a337db00179b68e16fc9d9a3a2336563c76cb24cb4faf9e705f14150fd6adb5c649760b63726b17 WHIRLPOOL 9371403395313806253568cbeb14fd337c30e818e945c85867dab99fb1f1c34077bc38e7a9d9d3bab617c27e162d4fae05a0f3632dfef6ef824e5d333abd033d +DIST statistics-0.13.3.0.tar.gz 83534 SHA256 6e7fe0f10086725c696fdd855caf4b6fb58ca5100bd0c9995f575f5b071381ed SHA512 66eee4b6ea7f2ce6ac5fdcaf9e3f8185b0a4915e13f77474ab4709353692a95c99b15a00b52129d88a5fb35392f3e6795799335b1fa4a4e69208e94d81357715 WHIRLPOOL b90e6c6cb8a8e970d825bf2994db34f53bf7a633bdf36f23527b8708aa0ebef74626b78a9e16a9801d55431af83316e37971f20e0159507e0e22a4e12a201098 diff --git a/dev-haskell/statistics/statistics-0.13.3.0.ebuild b/dev-haskell/statistics/statistics-0.13.3.0.ebuild new file mode 100644 index 000000000000..1f3c2b75a6bc --- /dev/null +++ b/dev-haskell/statistics/statistics-0.13.3.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="A library of statistical types, data, and functions" +HOMEPAGE="https://github.com/bos/statistics" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RESTRICT=test # likes to fail under a load + +RDEPEND=">=dev-haskell/aeson-0.6.0.0:=[profile?] + >=dev-haskell/binary-0.5.1.0:=[profile?] + dev-haskell/erf:=[profile?] + >=dev-haskell/math-functions-0.1.5.2:=[profile?] + >=dev-haskell/monad-par-0.3.4:=[profile?] + >=dev-haskell/mwc-random-0.13.0.0:=[profile?] + >=dev-haskell/primitive-0.3:=[profile?] + >=dev-haskell/vector-0.10:=[profile?] + >=dev-haskell/vector-algorithms-0.4:=[profile?] + >=dev-haskell/vector-binary-instances-0.2.1:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( dev-haskell/hunit + >=dev-haskell/ieee754-0.7.3 + >=dev-haskell/quickcheck-2.7.5 + dev-haskell/test-framework + dev-haskell/test-framework-hunit + dev-haskell/test-framework-quickcheck2 ) +" diff --git a/dev-haskell/stmonadtrans/Manifest b/dev-haskell/stmonadtrans/Manifest index e409c9179cd4..302e8a0ffa19 100644 --- a/dev-haskell/stmonadtrans/Manifest +++ b/dev-haskell/stmonadtrans/Manifest @@ -1 +1,2 @@ DIST STMonadTrans-0.3.3.tar.gz 4820 SHA256 d9911c7634c42b94f57ac7c2a6d523f6d7124870b35fc3030cb72109ba3aa315 SHA512 5395dfac66abcf75593b5c62252b452e4935b85e294a1f9b4a40424b29be76109b89b0cc35eaa15bd448a4d51ae0500bfe72924db854e02e949685fd9180d847 WHIRLPOOL 7d038fafc793e74910444ac04bf9cd038aaee7476ba033ac6afef160b626e82b54add16e37ecc9d9f330351d8c61782c1006094113e275133be97d20c7f35c2a +DIST STMonadTrans-0.3.4.tar.gz 5442 SHA256 44935ff710369da1614e00a40dabea6ba3a4dd02959d7b0e5ed17a915c3f0210 SHA512 3799af190af51276d3cbd03908275d539dd8c290b9a48e2e9e3e41b1ea1c7d966ecddd86b93466e2fe7e63c4776e10912fa349f12aaf698a403d2e3effe59eab WHIRLPOOL 9a00ec5f3ee2f007de5b2cbd20c1af983888b10343303bc96ee347d6870a9e17b662fcec5509997b4df166384c5b0530288b0920c12feb74bf6479029d7af7d9 diff --git a/dev-haskell/stmonadtrans/stmonadtrans-0.3.4.ebuild b/dev-haskell/stmonadtrans/stmonadtrans-0.3.4.ebuild new file mode 100644 index 000000000000..a08f33d0486c --- /dev/null +++ b/dev-haskell/stmonadtrans/stmonadtrans-0.3.4.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +MY_PN="STMonadTrans" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A monad transformer version of the ST monad" +HOMEPAGE="http://hackage.haskell.org/package/STMonadTrans" +SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RESTRICT=test # uses detailed-0.9 test suite, cabal fails it + +RDEPEND="dev-haskell/mtl:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 +" + +S="${WORKDIR}/${MY_P}" diff --git a/dev-haskell/streaming-commons/Manifest b/dev-haskell/streaming-commons/Manifest index 5ce61873b5f0..535f9d35cf76 100644 --- a/dev-haskell/streaming-commons/Manifest +++ b/dev-haskell/streaming-commons/Manifest @@ -1,3 +1,4 @@ DIST streaming-commons-0.1.12.1.tar.gz 86864 SHA256 d5bd8dd0b11a13d1d128d15dce31b3f2f4625c7f72d4420e749d85bf170a4fd7 SHA512 43f30a7cacdcec178885cb424a7fd0380682482130ba4019d116468bb87bb187244ff480fc169a27de8192e17c9f17fe38396df1b83827f5dd578112765aa64e WHIRLPOOL 9b9a42682195175cdf0ace602c8bb0ddcec372498ce3126dd74a8435e07d5a78c3b3c04325c03cbdf31ea4414da821a999f0948f43e59cb322663145524d8b1a DIST streaming-commons-0.1.15.4.tar.gz 90218 SHA256 910831609225700605b9e0111c9f0dd214015b54c0dddb6f29069dc03624afbb SHA512 d67548810e1ce06709f3e92345a18f60600a8754879aa348df8f8e4caae9075f155343f01dbdeccf992d20915df959a122a0cf84739efbff73e4048b8e4b60d2 WHIRLPOOL a071bf3147245f7a9b4d493283beb1fdc1ccbcfd724a8aec8505ba76b0501fc9c351708cdfe7079d3712d32698fc6677c348c2c0640358db527af3b5f8eabf0f DIST streaming-commons-0.1.15.tar.gz 87625 SHA256 e507beac9ab68eaa8be4933bc1e9511610c581fdfc72621ba51faa913e5fce42 SHA512 2391e0b667f2f011b3d1b09f72f9cba41f69fb16977804465fe4cb6217c1fa2d3461d93d76e3afced283f5ea8b06c57a6ae86a108bd167ed1c9f4bc28f03b053 WHIRLPOOL f95f56e259d1c90dae52e7402482de79cefb63d871dd917b55a58a0c29ac9f984b059242bc263afc8c0f32b07b7d4f5b145d490ec8d9d52a1ba47aa3a72ef884 +DIST streaming-commons-0.1.16.tar.gz 88494 SHA256 17fdf509823e72996265de9260eaf58e33350e746dea058a36392c843ea8106e SHA512 8833a6aadc7b7de9f1e51ceb2c1a6f3761a26dfad9f889a147a0c9f31f14ea6eceb8a6efed30e069e97582f7f5f9eb976aeaba2e5c2e7fd7e173edc163a5f712 WHIRLPOOL 863f875f91b95473a23a845177701db3cb5a9d1020a80435ab1c2a2a8c4466805a9c6f0e5ffdf7cb37dbf62a5fa0db8046aea129124c7f0a3ba98bb2f250b5b4 diff --git a/dev-haskell/streaming-commons/streaming-commons-0.1.16.ebuild b/dev-haskell/streaming-commons/streaming-commons-0.1.16.ebuild new file mode 100644 index 000000000000..3f088a442004 --- /dev/null +++ b/dev-haskell/streaming-commons/streaming-commons-0.1.16.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Common lower-level functions needed by various streaming data libraries" +HOMEPAGE="https://github.com/fpco/streaming-commons" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/async:=[profile?] + >=dev-haskell/blaze-builder-0.3:=[profile?] =dev-haskell/network-2.4.0.0:=[profile?] + dev-haskell/random:=[profile?] + dev-haskell/stm:=[profile?] + dev-haskell/text:=[profile?] + dev-haskell/zlib:=[profile?] + >=dev-lang/ghc-7.8.2:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.18.1.3 + test? ( >=dev-haskell/hspec-1.8 + dev-haskell/quickcheck ) +" diff --git a/dev-haskell/syb-with-class/Manifest b/dev-haskell/syb-with-class/Manifest index a7ae2bf8c690..b56c9daceab1 100644 --- a/dev-haskell/syb-with-class/Manifest +++ b/dev-haskell/syb-with-class/Manifest @@ -1 +1,2 @@ DIST syb-with-class-0.6.1.6.tar.gz 12515 SHA256 565c909dcf39c30c7fa2b5721e5d1049dbc9cdcd23e63645f69d8e245e84c1b0 SHA512 4d022ace484780fab85f604d216856e9d122f9a0c98f5d14059866162e2a81f4c8366b0fb2df535089e7cdc76411c2be6b97edee90f27849d3809c7a994a9d02 WHIRLPOOL 3b7acda9e67fd19be5a7b3f0709df266f0bb06fe7d36b51782d32fd63a712d890defdd44b8cdb4692ce110d2b3ab4c12c66a922c59e62327e39165582e615274 +DIST syb-with-class-0.6.1.7.tar.gz 12524 SHA256 5c521870d8c533dabb0483015592897e1bc2356dacd19ad7f279e41b69e66abb SHA512 fadb4ff87b7cb1c8332551e62332254d241f50b2a93e5ca71bf1469fd6a7d50399571138810f311b127f0813260687c55543a42384335a44dffeb3f5e29ef1a1 WHIRLPOOL c823ea887beca585dba12455bd963057b86a38c120dfa81eb0b592f7da5354763206da1f8a6916dfe0bfad1c5c833f0c5530b62d587a2d05e43425c61d25b5ec diff --git a/dev-haskell/syb-with-class/syb-with-class-0.6.1.7.ebuild b/dev-haskell/syb-with-class/syb-with-class-0.6.1.7.ebuild new file mode 100644 index 000000000000..663e8294ad29 --- /dev/null +++ b/dev-haskell/syb-with-class/syb-with-class-0.6.1.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Scrap Your Boilerplate With Class" +HOMEPAGE="http://hackage.haskell.org/package/syb-with-class" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6 +" diff --git a/dev-haskell/tasty-golden/Manifest b/dev-haskell/tasty-golden/Manifest index 36c6287a635c..b103e78b2885 100644 --- a/dev-haskell/tasty-golden/Manifest +++ b/dev-haskell/tasty-golden/Manifest @@ -1,2 +1,3 @@ DIST tasty-golden-2.2.2.4.tar.gz 7102 SHA256 2cd0ac55b3edd218cf713842681aafa036db2aaf24558b303f9f64030624cc24 SHA512 7674f0003595a9569ecf05c7b68608887f815361c9c7b234cba3a0af4eda855a1131fbafcfb15cff19c584dd4f9888e3cc001deea8ac110c648d66a9fe1c7237 WHIRLPOOL b58a160bbd626128bbff5fe9d807a82703e15c563c19037d6e7546c7bc855429c91f25c6d40ad86903e36c983a31d12892ddfe3342df5a810a03c42d9cb3da70 +DIST tasty-golden-2.3.1.1.tar.gz 7219 SHA256 9e87fa5b29f840731c12722049563655cedb6522b5e5792c5eb596eb352c8e5d SHA512 b7871d2ddcf7f45e0f1df52982b6370308dd0c48588318985977cb88f93f4b759b1f2bdff44e31ec86f230f04304bcee14286f62c2d2ae01a6105b8a3250e5fb WHIRLPOOL e04c2c3c78430cc56b7885f4fad09f2e583bf1f662ccc653ec895c887cf97557377f18754d5033d1710e58739c3f9d9621186b66e41f019fb1ac9c89b59da672 DIST tasty-golden-2.3.1.tar.gz 7193 SHA256 f292a57dc63afdd5607cca82bcc5ad606c5e1c59bb6fabc7fe48a26d816dcbf1 SHA512 3c729edf394db6eaa94dc606d146599ef00d1bcdbb49482a52fc248e61b3ab236000ce2779cbf59c1cc458738cff5b51a4ff5bf79384e4479db93a1ea88bb6c2 WHIRLPOOL 1efcc0dc4fc6bd5d88bb773a0148f599b8cc925f55f41dd0b9862bea8233aa4d6da1d513babaa50cf964b089229dd224e0bb16f97d6902ac756e3b79834f7b47 diff --git a/dev-haskell/tasty-golden/tasty-golden-2.3.1.1.ebuild b/dev-haskell/tasty-golden/tasty-golden-2.3.1.1.ebuild new file mode 100644 index 000000000000..a97bf384eec2 --- /dev/null +++ b/dev-haskell/tasty-golden/tasty-golden-2.3.1.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Golden tests support for tasty" +HOMEPAGE="https://github.com/feuerbach/tasty-golden" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/async:=[profile?] + dev-haskell/mtl:=[profile?] + dev-haskell/optparse-applicative:=[profile?] + dev-haskell/tagged:=[profile?] + >=dev-haskell/tasty-0.8:=[profile?] + dev-haskell/temporary:=[profile?] + >=dev-lang/ghc-7.6.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.16.0 + test? ( dev-haskell/tasty-hunit + dev-haskell/temporary-rc ) +" diff --git a/dev-haskell/tasty-quickcheck/tasty-quickcheck-0.8.4.ebuild b/dev-haskell/tasty-quickcheck/tasty-quickcheck-0.8.4.ebuild index 2097c64190ff..1fbeb9c77a80 100644 --- a/dev-haskell/tasty-quickcheck/tasty-quickcheck-0.8.4.ebuild +++ b/dev-haskell/tasty-quickcheck/tasty-quickcheck-0.8.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -16,22 +16,15 @@ SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" LICENSE="MIT" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86" -IUSE="old-quickcheck" +IUSE="" RDEPEND="dev-haskell/tagged:=[profile?] >=dev-haskell/tasty-0.10.1:=[profile?] >=dev-lang/ghc-7.4.1:= - old-quickcheck? ( >=dev-haskell/quickcheck-2.5:2=[profile?] =dev-haskell/quickcheck-2.7:2=[profile?] =dev-haskell/quickcheck-2.5:2=[profile?] = 0.4.1 && < 0.8' 'binary >= 0.4.1' \ + 'time >= 1.1.4 && < 1.6' 'time >= 1.1.4' +} diff --git a/dev-haskell/timezone-series/Manifest b/dev-haskell/timezone-series/Manifest index fad1d5e7d63c..a72a0f458651 100644 --- a/dev-haskell/timezone-series/Manifest +++ b/dev-haskell/timezone-series/Manifest @@ -1 +1,2 @@ DIST timezone-series-0.1.5.1.tar.gz 5330 SHA256 d244dda23a90f019884e6684a6bd7ec43f77875edf382861890ef1c68b2e7a56 SHA512 7f080455f58c8aefb8ac7e34e9b91724a294537069d8acf65865cc481fd3053816dd3e5ce3ef7a41c85f7d983764b7c472c13e47cc20d458c74a256c394f2d03 WHIRLPOOL bd112a8bc5f90698694bff86917c47fe75c756612c020ea3d3962b941965a98c3dbb2e509b92b84a2dd3650c0be7b604f4eacd363989cc65ac9c6a87d919cee2 +DIST timezone-series-0.1.6.1.tar.gz 6021 SHA256 65ea9a8c3b1143a0f1d154943ac8311b53bb2ec7b5e52b09bd035343025c2cc3 SHA512 d4cee3725651ad25174857ff4df1dd7ef0a8d15cbc6e4547b43c0499eea68e8ba2df45763975987184032bc1e17f6f39e21220bb102084633014ccb723b5ed74 WHIRLPOOL 65e11eba85ad32b73faee2387d8a1fb6cebe43c200b52e80b627f83e133da672a3e9e0495cc4f55f1e35c858274cd8271316603c662394eca55571938a640077 diff --git a/dev-haskell/timezone-series/timezone-series-0.1.6.1.ebuild b/dev-haskell/timezone-series/timezone-series-0.1.6.1.ebuild new file mode 100644 index 000000000000..47ee0e489da2 --- /dev/null +++ b/dev-haskell/timezone-series/timezone-series-0.1.6.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Enhanced timezone handling for Data.Time" +HOMEPAGE="http://projects.haskell.org/time-ng/" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.10 +" diff --git a/dev-haskell/unix-compat/Manifest b/dev-haskell/unix-compat/Manifest index 775ff144c668..4b85971a1b55 100644 --- a/dev-haskell/unix-compat/Manifest +++ b/dev-haskell/unix-compat/Manifest @@ -1,3 +1,4 @@ DIST unix-compat-0.3.0.1.tar.gz 12614 SHA256 84096dc156ebc99c3201ef6f5589ae0e5e92aefa25b081e295840672608cc227 SHA512 2dc2dd0389c3860ad4b9f2113c1067e3574a9d728074ff08608ba2ee87e46fb2cc39a816ca10d1af908194f765895d45b842b6ee10a02d89ea197670e11d73c1 WHIRLPOOL 8028292d4846e5d88f54e17454597f05a15a3ce60931ede7a955b90065078f66712e154558e726294bd6503a3b62fcd66e42de3ea7abefeaef25980865ef5e8b DIST unix-compat-0.4.1.3.tar.gz 12823 SHA256 ab930a71d3cd9884a6c2bf58f330fa13c68cecb26d5cff20d435cdf69d1bdced SHA512 6065c2ec39e96ea8a7f91964a0e3ad93fa3a46625dfe831f0b4641e181e1ebbdac8cb5f954ee6a1fe8061896e97f437670605f0b4684183fc84f69725c3cf7a5 WHIRLPOOL 39ce105d62137bd95f02be3c333f7d411611bf011e68f34b7faeade30981ab7c48f89d7c51580922195580975ffa8f769a41cc7e74d914bf3447fd078f40ff99 DIST unix-compat-0.4.1.4.tar.gz 12830 SHA256 fafa1a9eefc93287c028cc61f17a91f886f164b3f64392f1756f8a7f8b3cb34b SHA512 bc2aa14231b294ada9006d18e54f353f9c5b4bde387f585fc6e3adc38efd18d81819295255f0e385a9cde0fcc423db556801c9285767781eeedf32123b7639af WHIRLPOOL 07ce9c8272032fe807d9e16a30de81398f61f5a2649f2b3011e0f6f4351d09375eb583090cd06d821170f0cb579fda386d76b14b9818a7fdb21f5b01b1a3bea6 +DIST unix-compat-0.4.2.0.tar.gz 12895 SHA256 35f11770757853be6134b3e4d72a20ecd32c5b0326abebf2605d7ac00bd8d60c SHA512 c3271dc7bbb35948cc2edb143ffe2ab0d14c53115668c257eeba8ccc148b586ee994f417ccfabb58fcd6533e786dcccac3062ece1923afaf20fcd05055fdad39 WHIRLPOOL 049bcd80b3fecfe45997772a857717318727fdbce46c5eefe89dd58f172ff5438089b46e8e71e0b7b97618d63067ac307bd4574ad38c9455f1bf44941330567d diff --git a/dev-haskell/unix-compat/unix-compat-0.4.2.0.ebuild b/dev-haskell/unix-compat/unix-compat-0.4.2.0.ebuild new file mode 100644 index 000000000000..7b1dddcbc653 --- /dev/null +++ b/dev-haskell/unix-compat/unix-compat-0.4.2.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Portable POSIX-compatibility layer" +HOMEPAGE="https://github.com/jystic/unix-compat" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="old-time" + +RDEPEND=">=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6 +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag old-time old-time) +} diff --git a/dev-haskell/unix-time/Manifest b/dev-haskell/unix-time/Manifest index c7a395525d46..82322b1aa1b6 100644 --- a/dev-haskell/unix-time/Manifest +++ b/dev-haskell/unix-time/Manifest @@ -1,2 +1,3 @@ DIST unix-time-0.3.5.tar.gz 40201 SHA256 7f1c58cd0328bbcb1d050af05670bc6f44dea3ee0894f30c6f87ee4a0d01675e SHA512 8da13cd8e9a32ee8ce4ab9430eab951d84350e4c459948f4e5e833444f1f266fbac6b6fc08876e326313eaf92e31500b325825b1b2c4fb22c551efdf6e5b9db5 WHIRLPOOL f85e9fc27196bd185c87403c7846bcf699099a47064ff0fd09c87d88af8a5996a167b76158ef6def42aaae5ce8fcdf6fee0a1b70e237f4d0b0539bb9f9715a31 DIST unix-time-0.3.6.tar.gz 40180 SHA256 5d15ebd0ee74e13638a7c04a7fc5f05a29ccd3228c8798df226939a778f7db37 SHA512 a7ca1086d2a2a15bebdaad80e3e31cc3be403548650d6c490dd7aa3af14b017ad2034320f82c3c7729661a046156e41bb50acf6a8fc1aa1db8dc8a62522c03a1 WHIRLPOOL 9a9e1de92d3a49a7319a384eca7eb1864705ff3d03331a575cff8f114486210afcc0de064f4d53f0436236b4a9267a962ea0267ff6b79f71a96edee3ac8b94d7 +DIST unix-time-0.3.7.tar.gz 40549 SHA256 1131301131dd3e73353a346daa04578ec067073e7674d447051ac1a87262b4e1 SHA512 d10335af434e79980fd4221ade86dafa71d2aa9b30d7aaa13da25b8e75114430a143be5b9c6c1fa885d6ba01f6e6677484b04cd9e2cb263c650a945e954c44bd WHIRLPOOL 68723d116928d0cd665b3332681c2fa14ea4a9ad9dcac9a1d522df1d16475222f65c8ddce6a3ae2b9f457efc8bf7572cef09d87b76316340d45eb3267ccb7dc8 diff --git a/dev-haskell/unix-time/unix-time-0.3.7.ebuild b/dev-haskell/unix-time/unix-time-0.3.7.ebuild new file mode 100644 index 000000000000..9b4ff3cacaf4 --- /dev/null +++ b/dev-haskell/unix-time/unix-time-0.3.7.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Unix time parser/formatter and utilities" +HOMEPAGE="http://hackage.haskell.org/package/unix-time" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/old-time:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.10 + test? ( >=dev-haskell/doctest-0.9.3 + >=dev-haskell/hspec-1.5 + dev-haskell/old-locale + dev-haskell/quickcheck ) +" diff --git a/dev-haskell/unordered-containers/Manifest b/dev-haskell/unordered-containers/Manifest index a99d82a49a79..6741ae534091 100644 --- a/dev-haskell/unordered-containers/Manifest +++ b/dev-haskell/unordered-containers/Manifest @@ -1,3 +1,4 @@ DIST unordered-containers-0.2.3.3.tar.gz 25782 SHA256 b1694120cb2a14494c93a85a31c310900aa384e7468c113f71b06a325d0a5627 SHA512 f869ea72abce17cdaa1d97dbd566cf7ff08f4fae3b45b435c36da5ee1250ca4a5cb4dc852e8713948c8f3dd8bf0662e5a95e370cbe7d18756e1ee60493fc84b2 WHIRLPOOL ab19aa99814bbbe3a523d9700a4583ad477e99c6500b4c926384e050c95bbc01d16a6133747df4849bc773693c18c92148e7418633ccdd68f9830c46852316e3 DIST unordered-containers-0.2.6.0.tar.gz 29415 SHA256 5f9fbba5f616344bd3b1b633d45f820cf9c840ad101e1110e698abc77d9de3f3 SHA512 9038bfa20f6c24129ea5136bfc236ac16a8fe43b1fd617c33df00393eca4d07e425cb371455b81a7eda27c610d0ffd5a8a6039f59fbfa67418dfedeacc06c1f9 WHIRLPOOL d11778beef71611784f9d2f2417be56c3863d8818c29ecc6f6e1ccb381e48491cb4d8ef17d6815415a3de562c5d5436be478e65454937876487556971364300a DIST unordered-containers-0.2.7.0.tar.gz 29818 SHA256 6503226d24069698bbb454c15c53a7f9f245aba228e142c6b6ab2d31cecc5ef6 SHA512 adfaf0336e5306ec17b66741f3509f6513e5fd840708176e5d0ca36ebeaa98ba55aa5d2519aa18f46270d26f85f18b9da280de07628b994c0c22670f2d1c3a07 WHIRLPOOL 392af2dff66f454236cf2db40a66a65dd81282a3071ddbb97ea848aae1a7afd2a7afba24b15a50fae99abb701852502ae28cd326202b43d862f479a686b631ae +DIST unordered-containers-0.2.7.1.tar.gz 29507 SHA256 2f9277f1d61c409775835f094c031fbb5462dd564d639f4f1357ee086fc4d702 SHA512 229493357eda5992c1da28e3a3aaef56291b4a458caf814442d494fa81ffa90aff35da92a167117b9730f8b8e8c01240be426b5ecaf88b71262dc6181011759b WHIRLPOOL 5c963d569774cb6a2b415a2badd4fcc40651f938a2af3738d0f4261e47fc54e518f9bcddf8a7872b1cb79e570525e0020e810f467fb97716ee076b432cc26d07 diff --git a/dev-haskell/unordered-containers/unordered-containers-0.2.7.1.ebuild b/dev-haskell/unordered-containers/unordered-containers-0.2.7.1.ebuild new file mode 100644 index 000000000000..b8ae5f7cdc1e --- /dev/null +++ b/dev-haskell/unordered-containers/unordered-containers-0.2.7.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Efficient hashing-based container types" +HOMEPAGE="https://github.com/tibbe/unordered-containers" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +RDEPEND=">=dev-haskell/hashable-1.0.1.1:=[profile?] =dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( dev-haskell/chasingbottoms + dev-haskell/hunit + >=dev-haskell/quickcheck-2.4.0.1 + >=dev-haskell/test-framework-0.3.3 + dev-haskell/test-framework-hunit + >=dev-haskell/test-framework-quickcheck2-0.2.9 ) +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag debug debug) +} diff --git a/dev-haskell/uuid/uuid-1.3.12.ebuild b/dev-haskell/uuid/uuid-1.3.12.ebuild index 790108d447bd..09b2f92acaa6 100644 --- a/dev-haskell/uuid/uuid-1.3.12.ebuild +++ b/dev-haskell/uuid/uuid-1.3.12.ebuild @@ -30,8 +30,13 @@ RDEPEND=">=dev-haskell/binary-0.4:=[profile?] =2.4 && < 2.9' 'QuickCheck >=2.4' +} diff --git a/dev-haskell/wai-app-static/Manifest b/dev-haskell/wai-app-static/Manifest index 18d9bf939f6b..75373c1a21fc 100644 --- a/dev-haskell/wai-app-static/Manifest +++ b/dev-haskell/wai-app-static/Manifest @@ -2,3 +2,4 @@ DIST wai-app-static-1.3.2.1.tar.gz 19247 SHA256 e940655e8cbdff69c66972dcaf318ac0 DIST wai-app-static-2.0.0.3.tar.gz 19337 SHA256 67b982f8693143d4df7fecc3e7262a95265fea7408e4a9835a384cc9cdadcb2a SHA512 b4b40719b300b2f7ad448f9a6f4acdc3258419c66a5ca39887466dfa689c4d80dac8bbefd2a57f521e0f66e1ff87c0710af55b5a0bbcaf1d4592c833c61d693d WHIRLPOOL 60b194352c42194e6139e623b655a6ba16ef67a2da466810be2fb3b126a826fba8043b989aea7c2358f52ce9289507e250680a0aa543500b793bb037a3d2728f DIST wai-app-static-3.0.1.tar.gz 21502 SHA256 5361898308ca423587f972aa6e4d91de6652e92ef15a1084543d2696ea845f30 SHA512 851c6c3d13d01dda0566c6c98364ddcc54b8aedb4775e9e491452ea672f3f8dfb05ee75d9c44e78a5c89944ab10f8b6646f3dc9d6bfe44e9f2abd910bb33f687 WHIRLPOOL 96d560a016fa4a8d7a539ad078faba6af1610603774013050db2545750fc3da5ed9ced4cebf4bba11de651769be31bad1b48f7a010e033779246b0dde190095c DIST wai-app-static-3.1.4.1.tar.gz 22321 SHA256 7280e15192be2d80b2505da152ea828c448e1466401fc4a02e87052ce3515bd4 SHA512 2a4925a48a09ca1d7e366a1b01961b0069c941f0987721e92cb0c257df8feefe78f0dc5f8c69680d155a3d1b1bdee95f4417fe734c14e02b0596475bead72b8f WHIRLPOOL cf6f95727507fb71efe4bf7345ad1a757da89376569b13c05bceabfbe15eafceb6b83b5ed38cbda8fa70229a637945407e80b69d01984272c833298b05f827fe +DIST wai-app-static-3.1.6.1.tar.gz 22686 SHA256 b318acf31e2e809411f119744a016ba0a78f52554ac7321a3a1410a218886668 SHA512 a2a19a57f289ecec8b2cbae2d412783ebcc789c8518a357eed8bbeee01a6283f7e636c38065c815cba3af782e56363b644baa21b32f70dd851cb6fd0bff692c6 WHIRLPOOL c10ea22b12e47cc1830f10864edd2578ecefbef2faa7a9c658a73a3854a8c6de7f31f008d25e26a445970776b9282c630d1cded276d9567fc18742ad4b3917ce diff --git a/dev-haskell/wai-app-static/wai-app-static-3.1.6.1.ebuild b/dev-haskell/wai-app-static/wai-app-static-3.1.6.1.ebuild new file mode 100644 index 000000000000..d4b348a6bd5c --- /dev/null +++ b/dev-haskell/wai-app-static/wai-app-static-3.1.6.1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="WAI application for static serving" +HOMEPAGE="http://www.yesodweb.com/book/web-application-interface" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="print" + +RDEPEND=">=dev-haskell/blaze-builder-0.2.1.4:=[profile?] + >=dev-haskell/blaze-html-0.5:=[profile?] + >=dev-haskell/blaze-markup-0.5.1:=[profile?] + >=dev-haskell/cryptonite-0.6:=[profile?] + >=dev-haskell/file-embed-0.0.3.1:=[profile?] + dev-haskell/http-date:=[profile?] + >=dev-haskell/http-types-0.7:=[profile?] + >=dev-haskell/memory-0.7:=[profile?] + >=dev-haskell/mime-types-0.1:=[profile?] =dev-haskell/old-locale-1.0.0.2:=[profile?] + >=dev-haskell/optparse-applicative-0.7:=[profile?] + >=dev-haskell/text-0.7:=[profile?] + >=dev-haskell/transformers-0.2.2:=[profile?] + >=dev-haskell/unix-compat-0.2:=[profile?] + >=dev-haskell/unordered-containers-0.2:=[profile?] + >=dev-haskell/wai-3.0:=[profile?] =dev-haskell/wai-extra-3.0:=[profile?] =dev-haskell/warp-3.0.11:=[profile?] =dev-haskell/zlib-0.5:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( >=dev-haskell/hspec-1.3 + dev-haskell/mockery + dev-haskell/network + dev-haskell/temporary ) +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag print print) +} diff --git a/dev-haskell/wai-extra/Manifest b/dev-haskell/wai-extra/Manifest index 4c09226a7ec0..16d46065ed51 100644 --- a/dev-haskell/wai-extra/Manifest +++ b/dev-haskell/wai-extra/Manifest @@ -1,3 +1,4 @@ DIST wai-extra-3.0.10.tar.gz 49846 SHA256 503af31217c29d1bcec10a6806ea119aab9d68f29f12a1c1006fe4f931771b37 SHA512 c634c02d5c5b7774fede0b639be6cce7522e74cfb5eab4b5e5bcca3d00dd6304bb1d2a83a8bfa34e29c5dd3b72802bfc1306d323bd98629e530b0b630e0b00e3 WHIRLPOOL 0d0331670a3aa5e2e04e1d8bb79ed1240070954ad565e9569d6d9bb4a6455a0616990167335857f4975b2ec34dc53e1184910f82b67b97da7384d0619ad72e22 DIST wai-extra-3.0.14.tar.gz 52041 SHA256 63f0df82dcd7c871c458e1ee67aca6d48b8794ff474e6b5e93873d4bbf6f7f2c SHA512 92c8456cc2959ddfd23bfae50936f237bfe903143d68ef211e2af8dbe1327a8ede63cadd74d3555349411a5046df9a2c87c7e983e06728759eafde80092a8aea WHIRLPOOL 28bf71e0987bc3a098d0d1bc2e94a2cb6ab50fd8bf8d6256cd99b2b9b390613e0e5db610b13f9fa4b5ef5495112e858efd3ed5ecdca33418be3ec45fcf458ff0 DIST wai-extra-3.0.15.1.tar.gz 53546 SHA256 6474f70915bfd9342ec126a3de76c6247e0788deb553fc46e1ba72c1f0f8e4ad SHA512 0a212b1f40fee357dbe452b71da9a5d793d1fc826e82b9b0df84c65e4fc06773fdf41ba637fe29bdc0627e01b4863076813d2cef4dd36e5e248400083a1248e8 WHIRLPOOL 1394d52d8a51090c6ebe5d41f06a960dc40e502ee5637a2fd3bac04d4afe90a39466323051083123e5dbffdf6a8c4a12dbf7bdab161590ac083e59f27fa5eff3 +DIST wai-extra-3.0.18.tar.gz 59477 SHA256 42fde2a6066c2de40b931a5379f3436899c96f7b31037ed27524ec86714d0764 SHA512 d17f7f31ca35b2d8ce9bb5b63579d720a5cc4b72907dcde8668038953ac99fd5798d84ec8ab533a5a2b7f5a411e945fd91c8e389190b9cf5ca47fcc2f666715b WHIRLPOOL c6d5602ee4206bc3524a7c52a996c720f9eb495ab1502d48d671c9c2f58a260a829d2ca32ded00c96b069ee4057b0af39f337ca4d2f0f19f038b2ac21cce7647 diff --git a/dev-haskell/wai-extra/wai-extra-3.0.18.ebuild b/dev-haskell/wai-extra/wai-extra-3.0.18.ebuild new file mode 100644 index 000000000000..3733a7f118b8 --- /dev/null +++ b/dev-haskell/wai-extra/wai-extra-3.0.18.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Provides some basic WAI handlers and middleware" +HOMEPAGE="https://github.com/yesodweb/wai" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/aeson:=[profile?] + dev-haskell/ansi-terminal:=[profile?] + dev-haskell/base64-bytestring:=[profile?] + >=dev-haskell/blaze-builder-0.2.1.4:=[profile?] =dev-haskell/case-insensitive-0.2:=[profile?] + dev-haskell/cookie:=[profile?] + dev-haskell/data-default-class:=[profile?] + >=dev-haskell/fast-logger-2.4.5:=[profile?] =dev-haskell/http-types-0.7:=[profile?] + dev-haskell/iproute:=[profile?] + >=dev-haskell/lifted-base-0.1.2:=[profile?] + >=dev-haskell/network-2.6.1.0:=[profile?] + >=dev-haskell/old-locale-1.0.0.2:=[profile?] =dev-haskell/resourcet-0.4.6:=[profile?] =dev-haskell/stringsearch-0.3:=[profile?] =dev-haskell/text-0.7:=[profile?] + dev-haskell/unix-compat:=[profile?] + dev-haskell/vault:=[profile?] + >=dev-haskell/void-0.5:=[profile?] + >=dev-haskell/wai-3.0.3.0:=[profile?] =dev-haskell/wai-logger-2.2.6:=[profile?] =dev-lang/ghc-7.8.2:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.18.1.3 + test? ( >=dev-haskell/hspec-1.3 + dev-haskell/hunit ) +" diff --git a/dev-haskell/wxdirect/wxdirect-0.92.2.0-r1.ebuild b/dev-haskell/wxdirect/wxdirect-0.92.2.0-r1.ebuild new file mode 100644 index 000000000000..34e3cdfaafcf --- /dev/null +++ b/dev-haskell/wxdirect/wxdirect-0.92.2.0-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.4.7.9999 + +WX_GTK_VER="3.0" + +CABAL_FEATURES="bin lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="helper tool for building wxHaskell" +HOMEPAGE="https://wiki.haskell.org/WxHaskell" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="${WX_GTK_VER}/${PV}" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/parsec-2.1.0:=[profile?] =dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.2 +" + +src_prepare() { + cabal_chdeps \ + 'process >= 1.1 && < 1.3' 'process >= 1.1' + + sed -e "s@executable wxdirect@executable wxdirect-${WX_GTK_VER}@" \ + -i "${S}/${PN}.cabal" \ + || die "Could not change ${PN}.cabal for wxdirect slot ${WX_GTK_VER}" +} diff --git a/dev-haskell/xhtml/xhtml-3000.2.1-r1.ebuild b/dev-haskell/xhtml/xhtml-3000.2.1-r1.ebuild index 6f6517fca902..bacc7444cc95 100644 --- a/dev-haskell/xhtml/xhtml-3000.2.1-r1.ebuild +++ b/dev-haskell/xhtml/xhtml-3000.2.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -22,4 +22,4 @@ RDEPEND=">=dev-lang/ghc-6.10.4:=" DEPEND="${RDEPEND} >=dev-haskell/cabal-1.6" -CABAL_CORE_LIB_GHC_PV="7.8.3 7.8.3.20141119 7.8.4 7.10.0.20141222 7.10.0.20150123 PM:7.10.1_rc3 PM:7.10.1 PM:7.10.2_rc2 PM:7.10.2 PM:7.10.2-r1 PM:7.10.3_rc1 PM:7.10.3 PM:8.0.1_rc1 PM:8.0.1_rc2 PM:8.0.1_rc3 PM:8.0.1_rc4" +CABAL_CORE_LIB_GHC_PV="7.8.3 7.8.3.20141119 7.8.4 7.10.0.20141222 7.10.0.20150123 PM:7.10.1_rc3 PM:7.10.1 PM:7.10.2_rc2 PM:7.10.2 PM:7.10.2-r1 PM:7.10.3_rc1 PM:7.10.3 PM:8.0.1_rc1 PM:8.0.1_rc2 PM:8.0.1_rc3 PM:8.0.1_rc4 PM:8.0.1" diff --git a/dev-haskell/xml-hamlet/Manifest b/dev-haskell/xml-hamlet/Manifest index 576277967989..ba84c2ffcd00 100644 --- a/dev-haskell/xml-hamlet/Manifest +++ b/dev-haskell/xml-hamlet/Manifest @@ -1 +1,2 @@ DIST xml-hamlet-0.4.0.11.tar.gz 6080 SHA256 3d598ad387e310e76a07f213afe35db06662611840d1bce3bcdf202668bc1e89 SHA512 a0deb9996948a2a87f63f58f18365cac4d9db2538b24f10f5e0a171fb597d10c567c926c89c1cdfb098f471acdbecc8ea58164c94a10f18eebb3f7779e9f999b WHIRLPOOL a1edc1e95685e2f3740af46b2c58a2222f3e6707caeb890cc60a0c0707d4a79d9520a4901cbed11ca05001fab76dc0dee11d98c88eeb781b447a4a2b58c16e7e +DIST xml-hamlet-0.4.0.12.tar.gz 6078 SHA256 0ff43b778e9e497b468dd123ab81fa8cfc84dcd0a6c8ab06b8fc27cf3e0669d2 SHA512 f503ffdefc0c8b3f8cce140bdf474086855a78d8be1ad729674f439e6a13e3f3b5313bdc5a4c88ac06756e85946b2b1e7f51e2a336ede6d4815bed4873dbe182 WHIRLPOOL e7dcc75f5454c1810b6e0b67d861c998050160c37a18569a008a47dad045a1a9697fba25315192b7016de7107ebbbbc6e9e39752831bbb745fdbddd2e1d775bd diff --git a/dev-haskell/xml-hamlet/xml-hamlet-0.4.0.12.ebuild b/dev-haskell/xml-hamlet/xml-hamlet-0.4.0.12.ebuild new file mode 100644 index 000000000000..b840d4b9da3f --- /dev/null +++ b/dev-haskell/xml-hamlet/xml-hamlet-0.4.0.12.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Hamlet-style quasiquoter for XML content" +HOMEPAGE="http://www.yesodweb.com/" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/parsec-2.0:=[profile?] =dev-haskell/shakespeare-1.0:=[profile?] =dev-haskell/text-0.10:=[profile?] + >=dev-haskell/xml-conduit-1.0:=[profile?] =dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( >=dev-haskell/hspec-1.3 + dev-haskell/hunit ) +" diff --git a/dev-haskell/yaml/Manifest b/dev-haskell/yaml/Manifest index 534a19b1cde7..430f88e3eb47 100644 --- a/dev-haskell/yaml/Manifest +++ b/dev-haskell/yaml/Manifest @@ -1,3 +1,4 @@ DIST yaml-0.8.10.1.tar.gz 73448 SHA256 e977912762e13571ec596173405ce328c8f7397aee4dd21f61ac9af762431ba9 SHA512 59b26eaca99379ff84cda6b8972ec2ff1e777536a754b9bda248d350a0797ef6c24d9cb86590062f4e6c12a5453224619a656c306a0292fdd1fe46e459a286e7 WHIRLPOOL 1a6f46577db2ae119bff0d31f9f541c3f272ab052f16d17e399e274651ef480d840d72730e517b022b5309bf467dc63ab697ae2dc69a879d5073b214403524e5 DIST yaml-0.8.15.2.tar.gz 75540 SHA256 ec5e9402e96590842bb77d6b66003a2289b4ab415aeb25362ef8f6c370a32712 SHA512 214a8203ca13350268b285d7049110ce91c03d6c8b0bc59187048b9efed15374c97a4b91e464e86f719d3190c0bc534f9ca4b7436fc33a4748d0fa84bb747bb4 WHIRLPOOL 60f4909df9199c5b45df2a214c03626763874b097725979f5ae342d28071ed9411c9718606c00a24e5d000594f53a734b8f0b8566173faabc09e86f507ef07b4 DIST yaml-0.8.17.1.tar.gz 78775 SHA256 2bec28da3e1041892d0a694d6daf9ba1bdf5381111b4a3b3ac6b4cd909b0d3b3 SHA512 7119651e209942d41a9f5a542d365b5fea77c56d9dab012e3bf77234e6c6d23e2cff65c9b6c16ca185ff33338fd75c6b3f7dacaf1ff56f96c5773fcea70687f3 WHIRLPOOL 9b1a48e063fb95c6b35d9dfc140c5b584491cda14e4ad8f7218b070a400123ad3734ad8e8401eeed7730e3ae29c29c862ec6a7128008f6260baf1256f0f9c949 +DIST yaml-0.8.20.tar.gz 80264 SHA256 d5cda5b2849afb9f0d7572759c3e006798d7efaeeb0bf0d3825f12832a0a3b11 SHA512 bed0bcc6758606663aa1ba315590b7f4e26043bd5fbf462219e4164c7d41144d093763f85015db2ad83fdeb51b464715d49c0ec882e43cba6b141d40d7a2226e WHIRLPOOL fee765d4e295497d829fe8fed08b2019fb63acd3b98cb40034ddb122963ae5b516a0b298647673f17815c9be60c0df502622650eb97347adade9874aa232a773 diff --git a/dev-haskell/yaml/yaml-0.8.20.ebuild b/dev-haskell/yaml/yaml-0.8.20.ebuild new file mode 100644 index 000000000000..a57124cb7dea --- /dev/null +++ b/dev-haskell/yaml/yaml-0.8.20.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Support for parsing and rendering YAML documents" +HOMEPAGE="https://github.com/snoyberg/yaml/" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+no-examples no-exe no-unicode system-libyaml" + +RDEPEND=">=dev-haskell/aeson-0.7:=[profile?] + >=dev-haskell/attoparsec-0.11.3.0:=[profile?] + >=dev-haskell/conduit-1.1.0:=[profile?] =dev-haskell/resourcet-0.3:=[profile?] =dev-lang/ghc-7.8.2:= + !no-examples? ( dev-haskell/raw-strings-qq:=[profile?] ) + system-libyaml? ( dev-libs/libyaml ) +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.18.1.3 + test? ( dev-haskell/aeson-qq + dev-haskell/base-compat + >=dev-haskell/hspec-1.3 + dev-haskell/hunit + dev-haskell/mockery + dev-haskell/temporary ) + system-libyaml? ( virtual/pkgconfig ) +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag no-examples no-examples) \ + $(cabal_flag no-exe no-exe) \ + $(cabal_flag no-unicode no-unicode) \ + $(cabal_flag system-libyaml system-libyaml) +} diff --git a/dev-haskell/yesod-auth-hashdb/Manifest b/dev-haskell/yesod-auth-hashdb/Manifest index 686caff207f4..c2775216c98b 100644 --- a/dev-haskell/yesod-auth-hashdb/Manifest +++ b/dev-haskell/yesod-auth-hashdb/Manifest @@ -1 +1,2 @@ +DIST yesod-auth-hashdb-1.5.1.3.tar.gz 13367 SHA256 ea455c6cb2c60de6254860ed1b8d29f8e73154c24db3e2edbfc0090f728b051a SHA512 2fd7de432307c2e4465b8eb9ca6af6e1ede0fb8a3e09f9a6d04cff63d03c2db57eba2282f3441b45c82774bb063fa1d5546b832ca521074304e03343010a1952 WHIRLPOOL 8ded59dfa3f7239ae9be705de8fe3af2292f844fccc46344701bdb90452a8ee0cd747d43b3cea5100fe0b5dd9e825647bc9ebe9a01fc2f9a53f664313660cd4f DIST yesod-auth-hashdb-1.5.1.tar.gz 12987 SHA256 fb69116768ae46b0ba582e91151438fd9f89daf0fbcfb5fc534058798552d2fe SHA512 9fbbd5b3b8bdd56e0e35a7609408fff034ba320e8271655ae29d75b1a75dd7c4ef9cebc4f94ed991137940d8161ec8560af6bf3c397d86de78e447adaf741ccf WHIRLPOOL e8bf1ccd36d55da08abdba4ec14f326345732ef13a30781d66fde584e3f84648e2f8f81e103e366f1b1c1bb8a4fe390cc5272d18a65e3db59eb9fdb768af6b5b diff --git a/dev-haskell/yesod-auth-hashdb/yesod-auth-hashdb-1.5.1.3.ebuild b/dev-haskell/yesod-auth-hashdb/yesod-auth-hashdb-1.5.1.3.ebuild new file mode 100644 index 000000000000..cd800e00219b --- /dev/null +++ b/dev-haskell/yesod-auth-hashdb/yesod-auth-hashdb-1.5.1.3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Authentication plugin for Yesod" +HOMEPAGE="https://github.com/paul-rouse/yesod-auth-hashdb" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/cryptohash-0.8:=[profile?] + >=dev-haskell/persistent-2.1:=[profile?] =dev-haskell/pwstore-fast-2.2:=[profile?] + >=dev-haskell/text-0.7:=[profile?] + >=dev-haskell/yesod-auth-1.4:=[profile?] =dev-haskell/yesod-core-1.4:=[profile?] =dev-haskell/yesod-form-1.4:=[profile?] =dev-haskell/yesod-persistent-1.2:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8.0 + test? ( dev-haskell/basic-prelude + >=dev-haskell/hspec-2.0.0 + dev-haskell/http-conduit + dev-haskell/http-types + dev-haskell/monad-logger + dev-haskell/network-uri + dev-haskell/persistent-sqlite + dev-haskell/resourcet + dev-haskell/wai-extra + dev-haskell/yesod + >=dev-haskell/yesod-test-1.4.3 ) +" diff --git a/dev-haskell/yesod-auth/Manifest b/dev-haskell/yesod-auth/Manifest index 4ea79ac9915a..fddb9db97a87 100644 --- a/dev-haskell/yesod-auth/Manifest +++ b/dev-haskell/yesod-auth/Manifest @@ -1 +1,2 @@ DIST yesod-auth-1.4.13.2.tar.gz 48670 SHA256 65d4cdc979db56e766aef3f64183075f4976ddedb8e62b07efb09be56f2cca20 SHA512 b22207d0ccf86345a50b87a66b4050727003edda7a54d86f81861471a694b2ccfb21d247bea972f21a2e8693cb79988028777f25791059ea3d2a47ddd8a47731 WHIRLPOOL f6ab7b8ebc16c9aa1d4c8ff4d7ca02168bd884d5329c5088f9de318d18b6737478ad544c8e49cd601dd764d85db8ea5b491b89eada938e4061d23d0160383291 +DIST yesod-auth-1.4.13.5.tar.gz 49064 SHA256 42bfdfe72f5ef9f9e43d12dcd47f5a3415e6b883d455a7ad4cbfb7e900e760bf SHA512 e401fc7b2d74c924108e59784f286704cbe44af05a8dabaacac027a3da45425592e0d85d0289c2601d5aec876fd19d2707b9a31a424f3997c8577a41dc49ed73 WHIRLPOOL d62ed66e85d6c74afc1fa53f0194d0dd93e209b542bda21a46670065aa934f7f668b6bd148bb1404ab881aeb418d822abd924eb5745b64164fbfecb0e713ee2b diff --git a/dev-haskell/yesod-auth/yesod-auth-1.4.13.5.ebuild b/dev-haskell/yesod-auth/yesod-auth-1.4.13.5.ebuild new file mode 100644 index 000000000000..95216d2fd693 --- /dev/null +++ b/dev-haskell/yesod-auth/yesod-auth-1.4.13.5.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Authentication for Yesod" +HOMEPAGE="http://www.yesodweb.com/" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+network-uri" + +RDEPEND=">=dev-haskell/aeson-0.7:=[profile?] + >=dev-haskell/authenticate-1.3:=[profile?] + dev-haskell/base16-bytestring:=[profile?] + dev-haskell/base64-bytestring:=[profile?] + dev-haskell/binary:=[profile?] + dev-haskell/blaze-builder:=[profile?] + >=dev-haskell/blaze-html-0.5:=[profile?] + >=dev-haskell/blaze-markup-0.5.1:=[profile?] + dev-haskell/byteable:=[profile?] + dev-haskell/conduit:=[profile?] + dev-haskell/conduit-extra:=[profile?] + dev-haskell/cryptohash:=[profile?] + dev-haskell/data-default:=[profile?] + >=dev-haskell/email-validate-1.0:=[profile?] + dev-haskell/file-embed:=[profile?] + dev-haskell/http-client:=[profile?] + >=dev-haskell/http-conduit-2.1:=[profile?] + dev-haskell/http-types:=[profile?] + >=dev-haskell/lifted-base-0.1:=[profile?] + >=dev-haskell/mime-mail-0.3:=[profile?] + >=dev-haskell/nonce-1.0.2:=[profile?] =dev-haskell/persistent-2.1:=[profile?] =dev-haskell/persistent-template-2.1:=[profile?] =dev-haskell/random-1.0.0.2:=[profile?] + dev-haskell/resourcet:=[profile?] + dev-haskell/safe:=[profile?] + dev-haskell/shakespeare:=[profile?] + >=dev-haskell/text-0.7:=[profile?] + >=dev-haskell/transformers-0.2.2:=[profile?] + dev-haskell/unordered-containers:=[profile?] + >=dev-haskell/wai-1.4:=[profile?] + >=dev-haskell/yesod-core-1.4.20:=[profile?] =dev-haskell/yesod-form-1.4:=[profile?] =dev-haskell/yesod-persistent-1.4:=[profile?] + >=dev-lang/ghc-7.4.1:= + network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] ) + !network-uri? ( = 0.2 && < 0.5' 'transformers >= 0.2' \ + 'transformers >= 0.2 && < 0.5' 'transformers >= 0.2' +} + +src_configure() { + haskell-cabal_src_configure \ + --flag=-test +} diff --git a/dev-haskell/zlib/Manifest b/dev-haskell/zlib/Manifest index c0185907c58e..8a0a1f6b7a89 100644 --- a/dev-haskell/zlib/Manifest +++ b/dev-haskell/zlib/Manifest @@ -1,3 +1,4 @@ DIST zlib-0.5.4.1.tar.gz 127760 SHA256 cca365e4c52c90be41a5754943134da5ce6c60bb52fa00c128fd118e0505a550 SHA512 aa3522a5704978badcf634e1d99282144f01ddee4600bd146631a3ee8b98080914eb2887869a5fa404dc9d1e438a5df87cf7d44548c2f3e1ec13ba19004ef985 WHIRLPOOL 8bac920da40428c6d7c28f1f9b9284f407043b35c3dedc3677528ef622def1ad32bcd452f5046c2fc9260922cea4413e1d686fa2a1eb417e2afc8a9be5281250 DIST zlib-0.5.4.2.tar.gz 127818 SHA256 75d617d8a77d85ba5a0d69e42c2cd5371b56140b5fb028be3e75bff1cfd41096 SHA512 9ee75d04bea192967dcc9f59f500a199c605ed6b18b7883e2876e1b3116929ef62ccff9cb7174a2d72b567241c3fc2eb794b3532831b929bd5f5a6236bc03410 WHIRLPOOL 2324166527e54480c66424385d64863ec833500415fdc9803aba9b32bc5bd09e3447f8c3babca6cbd26af46bc609b8b8f4a738dd86c43b7fef57dfc9f4f16a33 DIST zlib-0.6.1.1.tar.gz 142902 SHA256 c5f5b4285473657a7997d74f7642f3e7bda40f92c3c5d49471a899e27a4ba735 SHA512 b9f665308fe7887db376625d6001b5d4c511b6b0f392e366903e84f262cc7c81ed9746d9a5f0b84e9a0ec9dfdc91ed41809528dd50e067008a91ef5168cad12e WHIRLPOOL 8d0bd19f96d454cc141c425db76a1e2e7fe7b71d901309c113340b3ec3fbf205a99028c5f477509e2a68524e2970e7d7cf48d040a211880ef322f02b6288cefd +DIST zlib-0.6.1.2.tar.gz 142413 SHA256 e4eb4e636caf07a16a9730ce469a00b65d5748f259f43edd904dd457b198a2bb SHA512 0034eb1297eaf20ab64e5cbfc835cee1985d34bc248325bf57f7bf5cdf2918ab72f339fe5b8b3f5f16dee862f190e0c71612960b9021cf2ca70c951788b73fc1 WHIRLPOOL cc65a01b106a2829373dd80d11fa5d56b3762748e0fb0e37e473c685b586d44fbb08e8c34ff7b3c40aefdb0f9fddd19247db667a7de0a0d9e711c4f99a14360c diff --git a/dev-haskell/zlib/metadata.xml b/dev-haskell/zlib/metadata.xml index 9e760c3cdd64..d3253b28407a 100644 --- a/dev-haskell/zlib/metadata.xml +++ b/dev-haskell/zlib/metadata.xml @@ -5,6 +5,9 @@ haskell@gentoo.org Gentoo Haskell + + Execute FFI calls in the context of haskell thread. + This package provides a pure interface for compressing and decompressing streams of data represented as lazy diff --git a/dev-haskell/zlib/zlib-0.6.1.2.ebuild b/dev-haskell/zlib/zlib-0.6.1.2.ebuild new file mode 100644 index 000000000000..18307802c95c --- /dev/null +++ b/dev-haskell/zlib/zlib-0.6.1.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Compression and decompression in the gzip and zlib formats" +HOMEPAGE="http://hackage.haskell.org/package/zlib" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86 ~ppc-macos ~x86-macos" +IUSE="non-blocking-ffi" + +RDEPEND=">=dev-lang/ghc-7.4.1:= + sys-libs/zlib +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.10 + test? ( >=dev-haskell/quickcheck-2 =dev-haskell/tasty-0.8 =dev-haskell/tasty-hunit-0.8 =dev-haskell/tasty-quickcheck-0.8 - - - - java@gentoo.org - Java - - - The Java Media Framework API (JMF) enables audio, video and other - time-based media to be added to Java applications and applets. - - diff --git a/dev-java/jna/Manifest b/dev-java/jna/Manifest index 1fd7c9124953..e589106d1abc 100644 --- a/dev-java/jna/Manifest +++ b/dev-java/jna/Manifest @@ -1,3 +1,2 @@ -DIST jna-3.4.0.tar.gz 34547165 SHA256 bff8fb935044a1e5de611e576e30a08c263e6a26a9f4c631dbe3a0cac2d79f14 SHA512 30c4e6a3a5ac133095248d3eb7d4983a91e11a267a581268a91316927ac75c5a133a58625d321276ac0b229c42c502f85492672d99713c90de98a648bd008b35 WHIRLPOOL 0a5a9d35db0e0090375235048c985fd8bd9ccf319d03c1c3db33e81d3e1a1bec8718a48f6b8180c7531d3963ae91b5337f539eb69e3db73b3f87ea693706fe08 DIST jna-3.4.1.tar.gz 35285043 SHA256 fb0ff552a11ddf18b82f1e3fbfe01985fb7a41e242124c63257bb685408ca16e SHA512 8164de9d213f670e6408627ec13fc128802351c2b906e1e1e95fd3280917ef1eba24d8b6b913a9df8034d20a5d46f6f823b5ee2d18b83248093a1855c89c5917 WHIRLPOOL 9c06862f76fbab7175f134a3f965d7d944ff536a03f03256307f8300b1fd1c9888c6e312bb74a80088128278efa9f8f7dfca668e4ebeacfff91bba3bc97951b0 DIST jna-4.2.2.tar.gz 58638853 SHA256 46330123be97fa5c11b1747c74470a39f2b1a3396d66fd6ead4d034660eb094a SHA512 11ab524f87f6dc7fe3ac8eb0620f9ba392445147770304be7b7fa5cd49de8efed983ad30c16077bfa6419eaf1ff50311a3ded811a78fdcd09bc686ef93ad7f9f WHIRLPOOL a8cd562276c4e2955ad5aa178660810f6dd45d0bd51f1c267d1a8fd139f9fb6a45aaf794a03c9f333c51617240cbff0d79f57ce73e4fc341c431b3ab959055f1 diff --git a/dev-java/jna/files/3.4.0-build.xml.patch b/dev-java/jna/files/3.4.0-build.xml.patch deleted file mode 100644 index c907b592b040..000000000000 --- a/dev-java/jna/files/3.4.0-build.xml.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- build.xml.orig 2011-01-25 17:33:24.750473340 +0100 -+++ build.xml 2011-01-25 17:07:14.657410373 +0100 -@@ -176,7 +176,9 @@ - - - -+ - - - -@@ -433,13 +435,17 @@ - - - -+ - - - -+ - - - diff --git a/dev-java/jna/files/3.4.0-makefile-flags.patch b/dev-java/jna/files/3.4.0-makefile-flags.patch deleted file mode 100644 index 90d96e00f1ce..000000000000 --- a/dev-java/jna/files/3.4.0-makefile-flags.patch +++ /dev/null @@ -1,53 +0,0 @@ -diff --git a/native/Makefile b/native/Makefile -index 75246a8..7bdcf04 100644 ---- a/native/Makefile -+++ b/native/Makefile -@@ -83,10 +83,10 @@ CFLAGS_EXTRA= - COUT=-o $@ - CINCLUDES=$(JAVA_INCLUDES) -I"$(JAVAH)" -I$(FFI_BUILD)/include - CDEFINES=-D_REENTRANT --PCFLAGS=-W -Wall -Wno-unused -Wno-parentheses --CFLAGS=$(PCFLAGS) $(CFLAGS_EXTRA) $(COPT) $(CDEBUG) $(CDEFINES) $(CINCLUDES) \ -+PCFLAGS=-Wall -Wno-unused -Wno-parentheses -+CFLAGS+=$(PCFLAGS) $(CFLAGS_EXTRA) $(COPT) $(CDEBUG) $(CDEFINES) $(CINCLUDES) \ - -DJNA_JNI_VERSION='"$(JNA_JNI_VERSION)"' -DCHECKSUM='"$(CHECKSUM)"' --LDFLAGS=-o $@ -shared -+LDFLAGS+=-o $@ -shared - ifeq ($(DYNAMIC_LIBFFI),true) - CFLAGS += $(shell pkg-config --cflags libffi 2>/dev/null || echo) - LIBS += $(shell pkg-config --libs libffi 2>/dev/null || echo -lffi) -@@ -149,7 +149,7 @@ ifneq ($(MINGW),) - CDEFINES=-DPSAPI_VERSION=1 - CC = $(MINGW) -m64 -mno-cygwin - LD = $(CC) --LDFLAGS=-o $@ -shared -+LDFLAGS+=-o $@ -shared - LIBS= -lmingwex -lpsapi -lkernel32 -lmsvcrt - FFI_CONFIG += --host=x86_64-pc-mingw32 - else -@@ -169,14 +169,14 @@ ifeq ($(OS),linux) - ARCH=$(shell uname -m | sed 's/i.86/i386/g') - PCFLAGS+=-fPIC - CDEFINES+=-DHAVE_PROTECTION --LDFLAGS+=-Wl,-soname,$@ -+LDFLAGS+= -Wl,-soname,$(shell basename $@) - endif - - ifneq (,$(findstring bsd,$(OS))) - ARCH=$(shell uname -m | sed 's/i.86/i386/g') - PCFLAGS+=-fPIC - CINCLUDES+=-I/usr/X11R6/include --LDFLAGS=-o $@ -shared -+LDFLAGS+= -o $@ -shared - CDEFINES+=-DHAVE_PROTECTION -DFFI_MMAP_EXEC_WRIT - endif - -@@ -239,7 +239,7 @@ endif - - PCFLAGS+=$(ISYSROOT) -x objective-c - CDEFINES+=-DTARGET_RT_MAC_CFM=0 -DFFI_MMAP_EXEC_WRIT --LDFLAGS=$(ARCHFLAGS) -dynamiclib -o $@ -framework JavaVM \ -+LDFLAGS+=$(ARCHFLAGS) -dynamiclib -o $@ -framework JavaVM \ - -compatibility_version $(shell echo ${JNA_JNI_VERSION}|sed 's/^\([0-9][0-9]*\).*/\1/g') \ - -current_version $(JNA_JNI_VERSION) \ - -mmacosx-version-min=10.3 \ diff --git a/dev-java/jna/files/4.2.2-build.xml.patch b/dev-java/jna/files/4.2.2-build.xml.patch index 36476462c795..de49c24b1912 100644 --- a/dev-java/jna/files/4.2.2-build.xml.patch +++ b/dev-java/jna/files/4.2.2-build.xml.patch @@ -1,5 +1,5 @@ ---- build.xml.orig 2016-03-16 14:37:28.000000000 +0000 -+++ build.xml 2016-04-16 22:22:27.692967205 +0100 +--- a/build.xml 2016-03-16 14:37:28.000000000 +0000 ++++ b/build.xml 2016-04-16 22:22:27.692967205 +0100 @@ -320,7 +320,9 @@ diff --git a/dev-java/jna/files/4.2.2-makefile-flags.patch b/dev-java/jna/files/4.2.2-makefile-flags.patch index 10cf4b282cb2..3e290ece4e78 100644 --- a/dev-java/jna/files/4.2.2-makefile-flags.patch +++ b/dev-java/jna/files/4.2.2-makefile-flags.patch @@ -1,5 +1,5 @@ ---- native/Makefile.orig 2016-03-16 14:37:28.000000000 +0000 -+++ native/Makefile 2016-04-16 22:27:06.426345376 +0100 +--- a/native/Makefile 2016-03-16 14:37:28.000000000 +0000 ++++ b/native/Makefile 2016-04-16 22:27:06.426345376 +0100 @@ -81,7 +81,7 @@ LIBSFX=.so ARSFX=.a diff --git a/dev-java/jna/jna-3.4.0.ebuild b/dev-java/jna/jna-3.4.0.ebuild deleted file mode 100644 index a4584eadaac9..000000000000 --- a/dev-java/jna/jna-3.4.0.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -JAVA_PKG_IUSE="test doc source" -WANT_ANT_TASKS="ant-nodeps" - -inherit java-pkg-2 java-ant-2 toolchain-funcs flag-o-matic vcs-snapshot - -DESCRIPTION="Java Native Access (JNA)" -HOMEPAGE="https://github.com/twall/jna#readme" -SRC_URI="https://github.com/twall/jna/tarball/3.4.0 -> ${P}.tar.gz" -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="+awt +nio-buffers" -REQUIRED_USE="test? ( awt nio-buffers )" - -COMMON_DEP=" - virtual/libffi" -RDEPEND="${COMMON_DEP} - >=virtual/jre-1.6" -DEPEND="${COMMON_DEP} - >=virtual/jdk-1.6 - virtual/pkgconfig - test? ( - dev-java/junit:0 - dev-java/ant-junit:0 - dev-java/ant-trax:0 - )" - -JAVA_ANT_REWRITE_CLASSPATH="true" -EANT_BUILD_TARGET="jar contrib-jars" - -java_prepare() { - # delete bundled jars and copy of libffi - find -name "*.jar" -exec rm -v {} + || die - rm -r native/libffi || die - - # respect CFLAGS, don't inhibit warnings, honour CC - # fix build.xml file - epatch "${FILESDIR}/${PV}-makefile-flags.patch" "${FILESDIR}/${PV}-build.xml.patch" - - # Build to same directory on 64-bit archs. - mkdir build || die - ln -snf build build-d64 || die - - if ! use awt ; then - sed -i -E "s/^(CDEFINES=.*)/\1 -DNO_JAWT/g" native/Makefile || die - fi - - if ! use nio-buffers ; then - sed -i -E "s/^(CDEFINES=.*)/\1 -DNO_NIO_BUFFERS/g" native/Makefile || die - fi -} - -EANT_EXTRA_ARGS="-Ddynlink.native=true" - -EANT_TEST_ANT_TASKS="ant-junit ant-nodeps ant-trax" -src_test() { - local sysprops="" - - # crashes vm (segfault) - sed -i -e 's|testRegisterMethods|no&|' test/com/sun/jna/DirectTest.java || die - - # crashes vm, java 7 only (icedtea-7, oracle-jdk-bin-1.7) - sed -i -e 's|testGCCallbackOnFinalize|no&|' test/com/sun/jna/CallbacksTest.java || die - - sysprops+=" -Djava.awt.headless=true" - sysprops+=" -Djava.io.tmpdir=${T}" #to ensure exec mount - - mkdir -p lib || die - java-pkg_jar-from --into lib --build-only junit - - # need to use _JAVA_OPTIONS or add them to the build.xml. ANT_OPTS won't - # survive the junit task. - _JAVA_OPTIONS="${sysprops}" java-pkg-2_src_test -} - -src_install() { - java-pkg_dojar build/${PN}.jar - java-pkg_dojar contrib/platform/dist/platform.jar - java-pkg_doso build/native/libjnidispatch.so - use source && java-pkg_dosrc src/com - use doc && java-pkg_dojavadoc doc/javadoc -} diff --git a/dev-java/jna/jna-3.4.1.ebuild b/dev-java/jna/jna-3.4.1.ebuild index fe114e6fd8ed..294b80d8e5d0 100644 --- a/dev-java/jna/jna-3.4.1.ebuild +++ b/dev-java/jna/jna-3.4.1.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/twall/jna#readme" SRC_URI="https://github.com/twall/jna/tarball/${PV} -> ${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="+awt +nio-buffers" REQUIRED_USE="test? ( awt nio-buffers )" diff --git a/dev-java/jna/jna-4.2.2.ebuild b/dev-java/jna/jna-4.2.2-r1.ebuild similarity index 87% rename from dev-java/jna/jna-4.2.2.ebuild rename to dev-java/jna/jna-4.2.2-r1.ebuild index 87bb7413e067..50e363655ded 100644 --- a/dev-java/jna/jna-4.2.2.ebuild +++ b/dev-java/jna/jna-4.2.2-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 JAVA_PKG_IUSE="doc source" @@ -34,28 +34,30 @@ DEPEND="${CDEPEND} virtual/pkgconfig test? ( dev-java/ant-junit:0 - dev-java/guava:18 + dev-java/guava:20 dev-java/javassist:3 dev-java/reflections:0 )" +PATCHES=( + "${FILESDIR}"/${PV}-build.xml.patch + "${FILESDIR}"/${PV}-makefile-flags.patch +) + JAVA_ANT_REWRITE_CLASSPATH="true" EANT_BUILD_TARGET="native jar contrib-jars" EANT_EXTRA_ARGS="-Ddynlink.native=true" EANT_TEST_EXTRA_ARGS="-Dheadless=true -Djava.io.tmpdir=${T}" -EANT_TEST_GENTOO_CLASSPATH="guava-18,javassist-3,reflections" +EANT_TEST_GENTOO_CLASSPATH="guava-20,javassist-3,reflections" + +src_prepare() { + default -java_prepare() { # delete bundled jars and copy of libffi # except native jars because build.xml needs them all find ! -path "./lib/native/*" -name "*.jar" -delete || die rm -r native/libffi || die - epatch "${FILESDIR}"/${PV}-build.xml.patch - # respect CFLAGS, don't inhibit warnings, honour CC - epatch "${FILESDIR}"/${PV}-makefile-flags.patch - tc-export CC - if ! use awt ; then sed -i -E "s/^(CDEFINES=.*)/\1 -DNO_JAWT/g" native/Makefile || die fi @@ -63,6 +65,12 @@ java_prepare() { if ! use nio-buffers ; then sed -i -E "s/^(CDEFINES=.*)/\1 -DNO_NIO_BUFFERS/g" native/Makefile || die fi + + java-pkg-2_src_prepare +} + +src_configure() { + tc-export CC } src_install() { diff --git a/dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch b/dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch deleted file mode 100644 index 28ab2e5f572f..000000000000 --- a/dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch +++ /dev/null @@ -1,30 +0,0 @@ -Index: engine/main.c -=================================================================== -RCS file: /usr/local/lib/cvs-repository/src-master/gforth/engine/main.c,v -retrieving revision 1.139 -retrieving revision 1.140 -diff -u -r1.139 -r1.140 ---- engine/main.c.old 2004/01/20 19:07:41 1.139 -+++ engine/main.c 2004/04/10 00:16:55 1.140 -@@ -70,8 +70,21 @@ - - void engine_callback(Xt* fcall, void * alist) - { -+ /* save global valiables */ -+ Cell *rp = RP; -+ Cell *sp = SP; -+ Float *fp = FP; -+ Address lp = LP; -+ - clist = (va_alist)alist; -- engine(fcall, SP, RP, FP, LP); -+ -+ engine(fcall, sp, rp, fp, lp); -+ -+ /* restore global variables */ -+ RP = rp; -+ SP = sp; -+ FP = fp; -+ LP = lp; - } - #endif \ No newline at end of file diff --git a/dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch b/dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch deleted file mode 100644 index 30061aa702f7..000000000000 --- a/dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -ur gforth-0.6.2.orig/configure gforth-0.6.2/configure ---- gforth-0.6.2.orig/configure 2003-08-25 03:03:42.000000000 -0500 -+++ gforth-0.6.2/configure 2006-05-12 15:10:52.000000000 -0500 -@@ -3586,7 +3586,8 @@ - fi - - #long long is broken on (at least) gcc-2.95.* for PPC -- test x$ac_cv_sizeof_long_long = x && ac_cv_sizeof_long_long=0 -+ # XXX this was fixed long ago -+# test x$ac_cv_sizeof_long_long = x && ac_cv_sizeof_long_long=0 - ;; - *) - { echo "$as_me:$LINENO: WARNING: Using a generic machine description" >&5 diff --git a/dev-lang/gforth/files/gforth.el-gentoo.patch b/dev-lang/gforth/files/gforth.el-gentoo.patch deleted file mode 100644 index cc98537e766d..000000000000 --- a/dev-lang/gforth/files/gforth.el-gentoo.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- gforth-0.6.2-orig/gforth.el 2003-08-05 11:12:47.000000000 +0200 -+++ gforth-0.6.2/gforth.el 2008-09-06 08:29:44.000000000 +0200 -@@ -61,9 +61,10 @@ - (progn (string-match "^[0-9]+" emacs-version) - (string-to-int (match-string 0 emacs-version))))) - --(defun forth-emacs-older (major minor) -- (or (< emacs-major-version major) -- (and (= emacs-major-version major) (< emacs-minor-version minor)))) -+(eval-when-compile -+ (defun forth-emacs-older (major minor) -+ (or (< emacs-major-version major) -+ (and (= emacs-major-version major) (< emacs-minor-version minor))))) - - ;; Code ripped from `subr.el' for compatability with Emacs versions - ;; prior to 20.1 -@@ -79,8 +80,9 @@ - - ;; `no-error' argument of require not supported in Emacs versions - ;; prior to 20.4 :-( --(defun forth-require (feature) -- (condition-case err (require feature) (error nil))) -+(eval-and-compile -+ (defun forth-require (feature) -+ (condition-case err (require feature) (error nil)))) - - (require 'font-lock) - -@@ -1702,6 +1704,6 @@ - (error "No current process. See variable `forth-process-buffer'")))) - ) ; (memq 'comint features) - --(provide 'forth-mode) -+(provide 'gforth) - - ;;; gforth.el ends here - diff --git a/dev-lang/gnat-gcc/files/gcc-configure-LANG.patch b/dev-lang/gnat-gcc/files/gcc-configure-LANG.patch deleted file mode 100644 index 3ef76ef911c0..000000000000 --- a/dev-lang/gnat-gcc/files/gcc-configure-LANG.patch +++ /dev/null @@ -1,41 +0,0 @@ -The LANG vars aren't reset early enough so when sed tries to use [a-zA-Z] in -option parsing, it may break. - -http://bugs.gentoo.org/103483 - ---- configure -+++ configure -@@ -54,6 +54,16 @@ - infodir='${prefix}/info' - mandir='${prefix}/man' - -+# NLS nuisances. -+# Only set these to C if already set. These must not be set unconditionally -+# because not all systems understand e.g. LANG=C (notably SCO). -+# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! -+# Non-C LC_CTYPE values break the ctype check. -+if test "${LANG+set}" = set; then LANG=C; export LANG; fi -+if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi -+if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi -+if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi -+ - # Initialize some other variables. - subdirs= - MFLAGS= MAKEFLAGS= -@@ -452,16 +463,6 @@ - esac - done - --# NLS nuisances. --# Only set these to C if already set. These must not be set unconditionally --# because not all systems understand e.g. LANG=C (notably SCO). --# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'! --# Non-C LC_CTYPE values break the ctype check. --if test "${LANG+set}" = set; then LANG=C; export LANG; fi --if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi --if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi --if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi -- - # confdefs.h avoids OS command line length limits that DEFS can exceed. - rm -rf conftest* confdefs.h - # AIX cpp loses on an empty file, so make sure it contains at least a newline. diff --git a/dev-lang/gnat-gcc/files/gcc-spec-env-r1.patch b/dev-lang/gnat-gcc/files/gcc-spec-env-r1.patch deleted file mode 100644 index a58926836e4e..000000000000 --- a/dev-lang/gnat-gcc/files/gcc-spec-env-r1.patch +++ /dev/null @@ -1,87 +0,0 @@ -2013-08-22 Magnus Granberg - - * gcc/gcc.c (main): Add support for external spec file via the GCC_SPECS env var - and move the process of the user specifed specs. - - This allows us to easily control pie/ssp defaults with gcc-config profiles. - Original patch by Rob Holland - Extended to support multiple entries separated by ':' by Kevin F. Quinn - Modified to use getenv instead of poisoned GET_ENVIRONMENT by Ryan Hill - Modified to process the GCC_SPECS env var befor DRIVER_SELF_SPECS by Magnus Granberg - ---- gcc-4.8-20130210/gcc/gcc.c 2013-02-05 16:55:31.000000000 +0100 -+++ gcc-4.8-20130210-work/gcc/gcc.c 2013-07-26 02:32:14.625089864 +0200 -@@ -6427,6 +6428,48 @@ main (int argc, char **argv) - do_option_spec (option_default_specs[i].name, - option_default_specs[i].spec); - -+#if !(defined (__MSDOS__) || defined (OS2) || defined (VMS) || defined (WIN32)) -+ /* Add specs listed in GCC_SPECS. Note; in the process of separating -+ * each spec listed, the string is overwritten at token boundaries -+ * (':') with '\0', an effect of strtok_r(). -+ */ -+ specs_file = getenv ("GCC_SPECS"); -+ if (specs_file && (strlen(specs_file) > 0)) -+ { -+ char *spec, *saveptr; -+ for (spec=strtok_r(specs_file,":",&saveptr); -+ spec!=NULL; -+ spec=strtok_r(NULL,":",&saveptr)) -+ { -+ struct user_specs *user = (struct user_specs *) -+ xmalloc (sizeof (struct user_specs)); -+ user->next = (struct user_specs *) 0; -+ user->filename = spec; -+ if (user_specs_tail) -+ user_specs_tail->next = user; -+ else -+ user_specs_head = user; -+ user_specs_tail = user; -+ } -+ } -+#endif -+ /* Process any user specified specs in the order given on the command -+ * line. */ -+ for (uptr = user_specs_head; uptr; uptr = uptr->next) -+ { -+ char *filename = find_a_file (&startfile_prefixes, uptr->filename, -+ R_OK, true); -+ read_specs (filename ? filename : uptr->filename, false, true); -+ } -+ /* Process any user self specs. */ -+ { -+ struct spec_list *sl; -+ for (sl = specs; sl; sl = sl->next) -+ if (sl->name_len == sizeof "self_spec" - 1 -+ && !strcmp (sl->name, "self_spec")) -+ do_self_spec (*sl->ptr_spec); -+ } -+ - /* Process DRIVER_SELF_SPECS, adding any new options to the end - of the command line. */ - -@@ -6535,24 +6578,6 @@ main (int argc, char **argv) - PREFIX_PRIORITY_LAST, 0, 1); - } - -- /* Process any user specified specs in the order given on the command -- line. */ -- for (uptr = user_specs_head; uptr; uptr = uptr->next) -- { -- char *filename = find_a_file (&startfile_prefixes, uptr->filename, -- R_OK, true); -- read_specs (filename ? filename : uptr->filename, false, true); -- } -- -- /* Process any user self specs. */ -- { -- struct spec_list *sl; -- for (sl = specs; sl; sl = sl->next) -- if (sl->name_len == sizeof "self_spec" - 1 -- && !strcmp (sl->name, "self_spec")) -- do_self_spec (*sl->ptr_spec); -- } -- - if (compare_debug) - { - enum save_temps save; diff --git a/dev-lang/gnat-gcc/files/gnat-Make-lang.in.patch b/dev-lang/gnat-gcc/files/gnat-Make-lang.in.patch deleted file mode 100644 index ccb4e273d6e1..000000000000 --- a/dev-lang/gnat-gcc/files/gnat-Make-lang.in.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- Make-lang.in-orig 2005-12-14 19:11:41.538266250 +0100 -+++ Make-lang.in 2005-12-14 19:12:50.358567250 +0100 -@@ -341,9 +341,9 @@ - gnatlib-shared: force - $(MAKE) -C ada $(FLAGS_TO_PASS) \ - GNATLIBFLAGS="$(GNATLIBFLAGS)" \ -- GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \ -+ GNATLIBCFLAGS="$(GNATLIBCFLAGS) -fPIC" \ - GNATLIBLDFLAGS="$(GNATLIBLDFLAGS)" \ -- TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" \ -+ TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS) -fPIC" \ - THREAD_KIND="$(THREAD_KIND)" \ - TRACE="$(TRACE)" \ - gnatlib-shared diff --git a/dev-lang/gnat-gcc/files/gnat-gcc-4.9.3-make-default-paths-match-slot.patch b/dev-lang/gnat-gcc/files/gnat-gcc-4.9.3-make-default-paths-match-slot.patch deleted file mode 100644 index 0c197a15c134..000000000000 --- a/dev-lang/gnat-gcc/files/gnat-gcc-4.9.3-make-default-paths-match-slot.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- gcc/Makefile.in.orig 2016-05-20 15:01:04.277726220 -0700 -+++ gcc/Makefile.in 2016-05-20 18:40:43.658617109 -0700 -@@ -594,9 +594,9 @@ - # -------- - - # Directory in which the compiler finds libraries etc. --libsubdir = $(libdir)/gcc/$(target_noncanonical)/$(version) -+libsubdir = $(libdir)/gnat-gcc/$(target_noncanonical)/SLOT_MARKER - # Directory in which the compiler finds executables --libexecsubdir = $(libexecdir)/gcc/$(target_noncanonical)/$(version) -+libexecsubdir = $(libexecdir)/gnat-gcc/$(target_noncanonical)/SLOT_MARKER - # Directory in which all plugin resources are installed - plugin_resourcesdir = $(libsubdir)/plugin - # Directory in which plugin headers are installed -@@ -1944,9 +1944,9 @@ - - DRIVER_DEFINES = \ - -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \ -- -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \ -- -DSTANDARD_LIBEXEC_PREFIX=\"$(libexecdir)/gcc/\" \ -- -DDEFAULT_TARGET_VERSION=\"$(version)\" \ -+ -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gnat-gcc/\" \ -+ -DSTANDARD_LIBEXEC_PREFIX=\"$(libexecdir)/gnat-gcc/\" \ -+ -DDEFAULT_TARGET_VERSION=\"SLOT_MARKER\" \ - -DDEFAULT_TARGET_MACHINE=\"$(target_noncanonical)\" \ - -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \ - -DTOOLDIR_BASE_PREFIX=\"$(libsubdir_to_prefix)$(prefix_to_exec_prefix)\" \ diff --git a/dev-lang/mono/files/mono-2.10.1-ppc-len.patch b/dev-lang/mono/files/mono-2.10.1-ppc-len.patch deleted file mode 100644 index 6cfd0882d03a..000000000000 --- a/dev-lang/mono/files/mono-2.10.1-ppc-len.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/mono/mini/cpu-ppc.md b/mono/mini/cpu-ppc.md -index a9f679f..f21320c 100644 ---- a/mono/mini/cpu-ppc.md -+++ b/mono/mini/cpu-ppc.md -@@ -48,7 +48,7 @@ - memory_barrier: len:4 - nop: len:4 - relaxed_nop: len:4 --break: len:4 -+break: len:32 - seq_point: len:24 - jmp: len:108 - tailcall: len:120 clob:c diff --git a/dev-lang/mozart-stdlib/files/mozart-stdlib-1.3.2-doc.patch b/dev-lang/mozart-stdlib/files/mozart-stdlib-1.3.2-doc.patch deleted file mode 100644 index 1752bb9f5187..000000000000 --- a/dev-lang/mozart-stdlib/files/mozart-stdlib-1.3.2-doc.patch +++ /dev/null @@ -1,179 +0,0 @@ -diff -ur mozart-1.3.2.20060615-std.orig/adt/makefile.oz mozart-1.3.2.20060615-std/adt/makefile.oz ---- mozart-1.3.2.20060615-std.orig/adt/makefile.oz 2004-05-19 11:40:35.000000000 +1200 -+++ mozart-1.3.2.20060615-std/adt/makefile.oz 2007-02-17 12:29:43.000000000 +1300 -@@ -4,14 +4,5 @@ - 'Dictionary.ozf' 'Cell.ozf' - %%'Generator.ozf' - ] -- doc : [ -- 'index.html' -- 'cell.html' -- 'counter.html' -- 'dictionary.html' -- %%'generator.html' -- 'queue.html' -- 'stack.html' -- ] - - ) -diff -ur mozart-1.3.2.20060615-std.orig/makefile.oz mozart-1.3.2.20060615-std/makefile.oz ---- mozart-1.3.2.20060615-std.orig/makefile.oz 2004-05-19 20:05:19.000000000 +1200 -+++ mozart-1.3.2.20060615-std/makefile.oz 2007-02-17 12:29:25.000000000 +1300 -@@ -10,12 +10,4 @@ - 'os' - 'net' - ] -- doc : [ -- 'index.html' -- 'ozdoc.css' -- 'page.gif' -- 'string.html' -- 'mapping.html' -- 'generator.html' -- ] - ) -diff -ur mozart-1.3.2.20060615-std.orig/net/makefile.oz mozart-1.3.2.20060615-std/net/makefile.oz ---- mozart-1.3.2.20060615-std.orig/net/makefile.oz 2004-05-18 11:33:41.000000000 +1200 -+++ mozart-1.3.2.20060615-std/net/makefile.oz 2007-02-17 12:29:54.000000000 +1300 -@@ -1,4 +1,3 @@ - makefile( - lib : ['URL.ozf'] -- doc : ['index.html' 'url.html'] - ) -\ No newline at end of file -diff -ur mozart-1.3.2.20060615-std.orig/os/makefile.oz mozart-1.3.2.20060615-std/os/makefile.oz ---- mozart-1.3.2.20060615-std.orig/os/makefile.oz 2004-05-18 11:33:41.000000000 +1200 -+++ mozart-1.3.2.20060615-std/os/makefile.oz 2007-02-17 12:30:07.000000000 +1300 -@@ -1,4 +1,3 @@ - makefile( - lib : ['Path.ozf' 'Shell.ozf'] -- doc : ['index.html' 'path.html' 'shell.html'] - ) -diff -ur mozart-1.3.2.20060615-std.orig/wp/makefile.oz mozart-1.3.2.20060615-std/wp/makefile.oz ---- mozart-1.3.2.20060615-std.orig/wp/makefile.oz 2004-05-18 11:33:41.000000000 +1200 -+++ mozart-1.3.2.20060615-std/wp/makefile.oz 2007-02-17 12:30:24.000000000 +1300 -@@ -2,5 +2,4 @@ - subdirs : ['qtk' - %'qhtml' - ] -- doc : ['index.html'] - ) -diff -ur mozart-1.3.2.20060615-std.orig/wp/qtk/makefile.oz mozart-1.3.2.20060615-std/wp/qtk/makefile.oz ---- mozart-1.3.2.20060615-std.orig/wp/qtk/makefile.oz 2004-02-28 03:05:22.000000000 +1300 -+++ mozart-1.3.2.20060615-std/wp/qtk/makefile.oz 2007-02-17 12:31:29.000000000 +1300 -@@ -117,96 +117,4 @@ - %%src : ['QTk.ozf' 'QTkDevel.ozf' 'QTkBare.ozf'] - rules : o( - 'QTk.ozf' : ozl('QTkBare.ozf')) -- doc : ['html/button.gif' -- 'html/bwoz1.gif' -- 'html/canvas.gif' -- 'html/checkbutton.gif' -- 'html/color.gif' -- 'html/dropdownlistbox.gif' -- 'html/entry.gif' -- 'html/grid.gif' -- 'html/index.html' -- 'html/label.gif' -- 'html/line.gif' -- 'html/listbox.gif' -- 'html/listcont.oz' -- 'html/load.gif' -- 'html/menubutton.gif' -- 'html/message.gif' -- 'html/node1.html' -- 'html/node10.html' -- 'html/node11.html' -- 'html/node12.html' -- 'html/node13.html' -- 'html/node14.html' -- 'html/node15.html' -- 'html/node16.html' -- 'html/node17.html' -- 'html/node18.html' -- 'html/node19.html' -- 'html/node2.html' -- 'html/node20.html' -- 'html/node21.html' -- 'html/node22.html' -- 'html/node23.html' -- 'html/node24.html' -- 'html/node25.html' -- 'html/node26.html' -- 'html/node27.html' -- 'html/node28.html' -- 'html/node29.html' -- 'html/node3.html' -- 'html/node30.html' -- 'html/node31.html' -- 'html/node32.html' -- 'html/node33.html' -- 'html/node34.html' -- 'html/node35.html' -- 'html/node36.html' -- 'html/node37.html' -- 'html/node38.html' -- 'html/node39.html' -- 'html/node4.html' -- 'html/node40.html' -- 'html/node41.html' -- 'html/node42.html' -- 'html/node43.html' -- 'html/node44.html' -- 'html/node45.html' -- 'html/node5.html' -- 'html/node6.html' -- 'html/node7.html' -- 'html/node8.html' -- 'html/node9.html' -- 'html/notepad.oz' -- 'html/numberentry.gif' -- 'html/ozdoc.css' -- 'html/page.gif' -- 'html/panel.gif' -- 'html/picture1.gif' -- 'html/picture10.gif' -- 'html/picture100.gif' -- 'html/picture11.gif' -- 'html/picture2.gif' -- 'html/picture3.gif' -- 'html/picture4.gif' -- 'html/picture5.gif' -- 'html/picture6.gif' -- 'html/picture8.gif' -- 'html/picture9.gif' -- 'html/placeholder.gif' -- 'html/printcanvas.gif' -- 'html/radiobutton.gif' -- 'html/rubberframe.gif' -- 'html/scale.gif' -- 'html/scrollbar.gif' -- 'html/scrollframe.gif' -- 'html/space.gif' -- 'html/tbbutton.gif' -- 'html/tbcheckbutton.gif' -- 'html/tbradiobutton.gif' -- 'html/tdlr.gif' -- 'html/text.gif' -- 'html/toplevel.gif' -- ] - ) -diff -ur mozart-1.3.2.20060615-std.orig/xml/makefile.oz mozart-1.3.2.20060615-std/xml/makefile.oz ---- mozart-1.3.2.20060615-std.orig/xml/makefile.oz 2004-05-18 11:33:42.000000000 +1200 -+++ mozart-1.3.2.20060615-std/xml/makefile.oz 2007-02-17 12:31:52.000000000 +1300 -@@ -1,4 +1,3 @@ - makefile( - subdirs:['parser'] -- doc : ['index.html'] - ) -\ No newline at end of file -diff -ur mozart-1.3.2.20060615-std.orig/xml/parser/makefile.oz mozart-1.3.2.20060615-std/xml/parser/makefile.oz ---- mozart-1.3.2.20060615-std.orig/xml/parser/makefile.oz 2004-05-18 11:33:42.000000000 +1200 -+++ mozart-1.3.2.20060615-std/xml/parser/makefile.oz 2007-02-17 12:37:58.000000000 +1300 -@@ -1,6 +1,5 @@ - makefile( - lib : ['Parser.ozf'] -- doc : ['index.html' 'example.xml'] - version : '0.5' - uri : 'x-oz://system/xml' - % mogul : 'mogul:/duchier/xml/parser' diff --git a/dev-lang/mozart-stdlib/files/mozart-stdlib-1.3.2-ozmake.patch b/dev-lang/mozart-stdlib/files/mozart-stdlib-1.3.2-ozmake.patch deleted file mode 100644 index 1f6b2022001c..000000000000 --- a/dev-lang/mozart-stdlib/files/mozart-stdlib-1.3.2-ozmake.patch +++ /dev/null @@ -1,78 +0,0 @@ -diff -ur mozart-1.3.2.20060615-std.orig/Makefile.in mozart-1.3.2.20060615-std/Makefile.in ---- mozart-1.3.2.20060615-std.orig/Makefile.in 2004-05-19 02:22:05.000000000 +1200 -+++ mozart-1.3.2.20060615-std/Makefile.in 2007-02-17 11:12:09.000000000 +1300 -@@ -12,6 +12,7 @@ - NOTDIRSRCDIR = $(notdir $(SRCDIR)) - BUILDDATE = $(shell date '+%Y%m%d') - VERSION = $(shell $(OZTOOL) version) -+BINDIR = /usr/bin - - ifeq ($(PLATFORM),win32-i486) - OZEMULATOR = $(shell $(CYGPATH) $(PREFIX)/platform/win32-i486/emulator.dll) -@@ -22,11 +23,14 @@ - $(OZENGINE) ozmake/ozmake.ozf --prefix=$(CYG_PREFIX) --srcdir=$(CYG_SRCDIR) - - build.ozmake: -- cd ozmake && $(MAKE) ozmake.ozf -+ cd ozmake && $(MAKE) ozmake - - install: all - $(OZENGINE) ozmake/ozmake.ozf --prefix=$(CYG_PREFIX) --srcdir=$(CYG_SRCDIR) --install --nosavedb - $(OZENGINE) ozmake/ozmake.ozf --prefix=$(CYG_PREFIX) --srcdir=$(CYG_SRCDIR)/ozmake --builddir=$(CYG_BUILDDIR_OZMAKE) --install --nosavedb -+ mkdir -p $(BINDIR) -+ cp ozmake/ozmake $(BINDIR) -+ chmod +x $(BINDIR)/ozmake - - export CLEANDIR - -diff -ur mozart-1.3.2.20060615-std.orig/ozmake/Attribs.oz mozart-1.3.2.20060615-std/ozmake/Attribs.oz ---- mozart-1.3.2.20060615-std.orig/ozmake/Attribs.oz 2004-05-15 03:21:43.000000000 +1200 -+++ mozart-1.3.2.20060615-std/ozmake/Attribs.oz 2007-02-17 09:29:47.000000000 +1300 -@@ -458,7 +458,7 @@ - end - - meth get_oz_home($) {Path.expand {Property.get 'oz.home'}} end -- meth get_oz_bindir($) {Path.resolve Attribs,get_oz_home($) 'bin'} end -+ meth get_oz_bindir($) {Path.resolve '/usr' 'bin'} end - meth get_oz_engine($) - if @OzEngine==unit then - P={Path.resolveAtom Attribs,get_oz_bindir($) 'ozengine.exe'} -diff -ur mozart-1.3.2.20060615-std.orig/ozmake/Makefile.in mozart-1.3.2.20060615-std/ozmake/Makefile.in ---- mozart-1.3.2.20060615-std.orig/ozmake/Makefile.in 2004-04-01 00:52:55.000000000 +1200 -+++ mozart-1.3.2.20060615-std/ozmake/Makefile.in 2007-02-17 10:55:26.000000000 +1300 -@@ -37,8 +37,8 @@ - - # these additional 2 lines makes it possible to build in a directory - # different from the source directory --OZLOAD = prefix=$(CYGSRCDIR)=$(CYGBUILDDIR)$(OZLOADSEP)root=$(CYGBUILDDIR)$(OZLOADSEP)root=$(CYGSRCDIR)$(OZLOADSEP)cache=~/.oz/cache$(OZLOADSEP)cache=$(OZHOME)/cache --export OZLOAD -+# OZLOAD = prefix=$(CYGSRCDIR)=$(CYGBUILDDIR)$(OZLOADSEP)root=$(CYGBUILDDIR)$(OZLOADSEP)root=$(CYGSRCDIR)$(OZLOADSEP)cache=~/.oz/cache$(OZLOADSEP)cache=$(OZHOME)/cache -+# export OZLOAD - - XSLTPROC = @VAR_XSLTPROC@ - LYNX = @VAR_LYNX@ -diff -ur mozart-1.3.2.20060615-std.orig/ozmake/Makefile.vars mozart-1.3.2.20060615-std/ozmake/Makefile.vars ---- mozart-1.3.2.20060615-std.orig/ozmake/Makefile.vars 2005-06-05 01:47:45.000000000 +1200 -+++ mozart-1.3.2.20060615-std/ozmake/Makefile.vars 2007-02-17 08:42:20.000000000 +1300 -@@ -13,6 +13,6 @@ - MakeGUI.oz Fixes.oz DatabaseLib.oz CHANGES Config.oz Mogul.oz \ - Pickler.oz ExecutorFast.oz Depends.oz Requires.oz - PKG_INSTALLS = ozmake.ozf --PKG_INSTALLS_BIN= ozmake ozmake.win -+PKG_INSTALLS_BIN= ozmake - PKG_UPDATE = tgz tarz - PKG_INSTALLS_DOC= index.html CHANGES -diff -ur mozart-1.3.2.20060615-std.orig/ozmake/makefile.oz mozart-1.3.2.20060615-std/ozmake/makefile.oz ---- mozart-1.3.2.20060615-std.orig/ozmake/makefile.oz 2004-05-22 09:37:24.000000000 +1200 -+++ mozart-1.3.2.20060615-std/ozmake/makefile.oz 2007-02-17 12:15:46.000000000 +1300 -@@ -4,8 +4,8 @@ - mogul : 'mogul:/mozart/ozmake' - author: 'mogul:/duchier/denys' - lib : ['ozmake.ozf'] -- bin : ['ozmake.exe'] -- doc : ['index.html' 'CHANGES'] -+% bin : ['ozmake.exe'] -+% doc : ['index.html' 'CHANGES'] - rules : - o( - 'ozmake.ozf' : ozl('Main.ozf') diff --git a/dev-lang/mozart-stdlib/files/mozart-stdlib-1.3.2-r1-ozmake.patch b/dev-lang/mozart-stdlib/files/mozart-stdlib-1.3.2-r1-ozmake.patch deleted file mode 100644 index 12a621390ebd..000000000000 --- a/dev-lang/mozart-stdlib/files/mozart-stdlib-1.3.2-r1-ozmake.patch +++ /dev/null @@ -1,78 +0,0 @@ -diff -ur mozart-1.3.2.20060615-std.orig/Makefile.in mozart-1.3.2.20060615-std/Makefile.in ---- mozart-1.3.2.20060615-std.orig/Makefile.in 2004-05-19 02:22:05.000000000 +1200 -+++ mozart-1.3.2.20060615-std/Makefile.in 2007-02-17 11:12:09.000000000 +1300 -@@ -12,6 +12,7 @@ - NOTDIRSRCDIR = $(notdir $(SRCDIR)) - BUILDDATE = $(shell date '+%Y%m%d') - VERSION = $(shell $(OZTOOL) version) -+BINDIR = $(PREFIX)/bin - - ifeq ($(PLATFORM),win32-i486) - OZEMULATOR = $(shell $(CYGPATH) $(PREFIX)/platform/win32-i486/emulator.dll) -@@ -22,11 +23,14 @@ - $(OZENGINE) ozmake/ozmake.ozf --prefix=$(CYG_PREFIX) --srcdir=$(CYG_SRCDIR) - - build.ozmake: -- cd ozmake && $(MAKE) ozmake.ozf -+ cd ozmake && $(MAKE) ozmake - - install: all - $(OZENGINE) ozmake/ozmake.ozf --prefix=$(CYG_PREFIX) --srcdir=$(CYG_SRCDIR) --install --nosavedb - $(OZENGINE) ozmake/ozmake.ozf --prefix=$(CYG_PREFIX) --srcdir=$(CYG_SRCDIR)/ozmake --builddir=$(CYG_BUILDDIR_OZMAKE) --install --nosavedb -+ mkdir -p $(BINDIR) -+ cp ozmake/ozmake $(BINDIR) -+ chmod +x $(BINDIR)/ozmake - - export CLEANDIR - -diff -ur mozart-1.3.2.20060615-std.orig/ozmake/Attribs.oz mozart-1.3.2.20060615-std/ozmake/Attribs.oz ---- mozart-1.3.2.20060615-std.orig/ozmake/Attribs.oz 2004-05-15 03:21:43.000000000 +1200 -+++ mozart-1.3.2.20060615-std/ozmake/Attribs.oz 2007-02-17 09:29:47.000000000 +1300 -@@ -458,7 +458,7 @@ - end - - meth get_oz_home($) {Path.expand {Property.get 'oz.home'}} end -- meth get_oz_bindir($) {Path.resolve Attribs,get_oz_home($) 'bin'} end -+ meth get_oz_bindir($) {Path.resolve '/usr/lib/mozart' 'bin'} end - meth get_oz_engine($) - if @OzEngine==unit then - P={Path.resolveAtom Attribs,get_oz_bindir($) 'ozengine.exe'} -diff -ur mozart-1.3.2.20060615-std.orig/ozmake/Makefile.in mozart-1.3.2.20060615-std/ozmake/Makefile.in ---- mozart-1.3.2.20060615-std.orig/ozmake/Makefile.in 2004-04-01 00:52:55.000000000 +1200 -+++ mozart-1.3.2.20060615-std/ozmake/Makefile.in 2007-02-17 10:55:26.000000000 +1300 -@@ -37,8 +37,8 @@ - - # these additional 2 lines makes it possible to build in a directory - # different from the source directory --OZLOAD = prefix=$(CYGSRCDIR)=$(CYGBUILDDIR)$(OZLOADSEP)root=$(CYGBUILDDIR)$(OZLOADSEP)root=$(CYGSRCDIR)$(OZLOADSEP)cache=~/.oz/cache$(OZLOADSEP)cache=$(OZHOME)/cache --export OZLOAD -+# OZLOAD = prefix=$(CYGSRCDIR)=$(CYGBUILDDIR)$(OZLOADSEP)root=$(CYGBUILDDIR)$(OZLOADSEP)root=$(CYGSRCDIR)$(OZLOADSEP)cache=~/.oz/cache$(OZLOADSEP)cache=$(OZHOME)/cache -+# export OZLOAD - - XSLTPROC = @VAR_XSLTPROC@ - LYNX = @VAR_LYNX@ -diff -ur mozart-1.3.2.20060615-std.orig/ozmake/Makefile.vars mozart-1.3.2.20060615-std/ozmake/Makefile.vars ---- mozart-1.3.2.20060615-std.orig/ozmake/Makefile.vars 2005-06-05 01:47:45.000000000 +1200 -+++ mozart-1.3.2.20060615-std/ozmake/Makefile.vars 2007-02-17 08:42:20.000000000 +1300 -@@ -13,6 +13,6 @@ - MakeGUI.oz Fixes.oz DatabaseLib.oz CHANGES Config.oz Mogul.oz \ - Pickler.oz ExecutorFast.oz Depends.oz Requires.oz - PKG_INSTALLS = ozmake.ozf --PKG_INSTALLS_BIN= ozmake ozmake.win -+PKG_INSTALLS_BIN= ozmake - PKG_UPDATE = tgz tarz - PKG_INSTALLS_DOC= index.html CHANGES -diff -ur mozart-1.3.2.20060615-std.orig/ozmake/makefile.oz mozart-1.3.2.20060615-std/ozmake/makefile.oz ---- mozart-1.3.2.20060615-std.orig/ozmake/makefile.oz 2004-05-22 09:37:24.000000000 +1200 -+++ mozart-1.3.2.20060615-std/ozmake/makefile.oz 2007-02-17 12:15:46.000000000 +1300 -@@ -4,8 +4,8 @@ - mogul : 'mogul:/mozart/ozmake' - author: 'mogul:/duchier/denys' - lib : ['ozmake.ozf'] -- bin : ['ozmake.exe'] -- doc : ['index.html' 'CHANGES'] -+% bin : ['ozmake.exe'] -+% doc : ['index.html' 'CHANGES'] - rules : - o( - 'ozmake.ozf' : ozl('Main.ozf') diff --git a/dev-lang/spidermonkey/files/spidermonkey-1.8.7-symbol-versions.patch b/dev-lang/spidermonkey/files/spidermonkey-1.8.7-symbol-versions.patch deleted file mode 100644 index 3945172688d0..000000000000 --- a/dev-lang/spidermonkey/files/spidermonkey-1.8.7-symbol-versions.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff -Naur js/src/configure.in js.new/src/configure.in ---- a/js/src/symverscript.in 2012-11-07 09:36:16.000000000 -0500 -+++ b/js/src/symverscript.in 2012-11-07 09:37:05.000000000 -0500 -@@ -0,0 +1,4 @@ -+mozjs187 { -+ global: *; -+}; -+ -diff -Naur js/src/Makefile.in js.new/src/Makefile.in ---- a/js/src/Makefile.in 2012-11-07 09:36:16.000000000 -0500 -+++ b/js/src/Makefile.in 2012-11-07 09:37:09.000000000 -0500 -@@ -837,7 +837,10 @@ - mozjs185.pc \ - $(NULL) - --GARBAGE += $(pkg_config_files) -+symverscript: symverscript.in -+ cat $< > $@ -+ -+GARBAGE += $(pkg_config_files) symverscript - - %.pc: $(srcdir)/%.pc.in Makefile - cat $< | sed \ -@@ -872,6 +875,8 @@ - SHLIB_ABI_VER := $(DESTDIR)$(libdir)/$(SHARED_LIBRARY).$(SRCREL_ABI_VERSION) - SHLIB_EXACT_VER := $(DESTDIR)$(libdir)/$(SHARED_LIBRARY).$(SRCREL_VERSION) - $(SHARED_LIBRARY): EXTRA_DSO_LDOPTS += -Wl,-soname,$(notdir $(SHLIB_ABI_VER)) -+$(SHARED_LIBRARY): EXTRA_DSO_LDOPTS += -Wl,-version-script,symverscript -+$(SHARED_LIBRARY): symverscript - endif - endif - diff --git a/dev-libs/dee/files/dee-1.0.10-gcc-4.5.patch b/dev-libs/dee/files/dee-1.0.10-gcc-4.5.patch deleted file mode 100644 index 11854a96e3b2..000000000000 --- a/dev-libs/dee/files/dee-1.0.10-gcc-4.5.patch +++ /dev/null @@ -1,30 +0,0 @@ - src/dee-filter.h | 2 +- - src/dee-model-reader.h | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/dee-filter.h b/src/dee-filter.h -index de8d252..327f512 100644 ---- a/src/dee-filter.h -+++ b/src/dee-filter.h -@@ -30,7 +30,7 @@ - - G_BEGIN_DECLS - --typedef struct _DeeFilter DeeFilter; -+//typedef struct _DeeFilter DeeFilter; - - /** - * DeeFilterMapFunc: -diff --git a/src/dee-model-reader.h b/src/dee-model-reader.h -index a249149..dd23de6 100644 ---- a/src/dee-model-reader.h -+++ b/src/dee-model-reader.h -@@ -30,7 +30,7 @@ - - G_BEGIN_DECLS - --typedef struct _DeeFilter DeeFilter; -+//typedef struct _DeeFilter DeeFilter; - - /** - * DeeModelReaderFunc: diff --git a/dev-libs/dee/files/dee-1.0.10-vapigen.patch b/dev-libs/dee/files/dee-1.0.10-vapigen.patch deleted file mode 100644 index 25fb7a97406a..000000000000 --- a/dev-libs/dee/files/dee-1.0.10-vapigen.patch +++ /dev/null @@ -1,16 +0,0 @@ - vapi/Makefile.am | 2 +- - 1 files changed, 1 insertions(+), 1 deletions(-) - -diff --git a/vapi/Makefile.am b/vapi/Makefile.am -index c384ecd..413a96a 100644 ---- a/vapi/Makefile.am -+++ b/vapi/Makefile.am -@@ -6,7 +6,7 @@ if HAVE_INTROSPECTION - if HAVE_VAPIGEN - - dee-1.0.vapi: $(top_builddir)/src/Dee-$(DEE_MAJOR_VERSION).$(DEE_MINOR_VERSION).gir $(srcdir)/Dee-1.0-custom.vala $(srcdir)/Dee-1.0.metadata -- $(AM_V_GEN)$(VALA_API_GEN) --library dee-1.0 --metadatadir=$(srcdir) $(filter %.gir %.vala,$^) -+ $(AM_V_GEN)$(VALA_API_GEN) --library dee-1.0 --metadatadir=$(srcdir) $(filter %.gir %.vala,$^) --pkg gtk+-3.0 - @touch $@ - - endif diff --git a/dev-libs/glib/files/glib-2.48.0-gobject.stp.in b/dev-libs/glib/files/glib-2.48.0-gobject.stp.in deleted file mode 100644 index edcdb5033cd8..000000000000 --- a/dev-libs/glib/files/glib-2.48.0-gobject.stp.in +++ /dev/null @@ -1,199 +0,0 @@ -global gtypes -global gtypenames -global gsignalnames - -/* These are needed to keep track of gtype and signal names for the below - * probes. - */ -probe process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("type__new") -{ - gtypes[pid(),user_string($arg1)] = $arg3; - gtypenames[pid(),$arg3] = user_string($arg1); -} -probe process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__new") -{ - gsignalnames[pid(),$arg1] = user_string($arg2); -} - -/** - * probe gobject.type_new - Called when any entity registered with the #GType system is created - * @name: String name of type - * @parent_gtype: The parent #GType of this type - * @gtype: The #GType for this type - */ -probe gobject.type_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("type__new") -{ - name = user_string($arg1); - parent_gtype = $arg2; - gtype = $arg3; - probestr = sprintf("gobject.type_new(%s, %d) -> %d", name, parent_gtype, gtype); -} - -/** - * probe gobject.object_new - Called when a #GObject is created - * @object: Raw pointer to object - * @gtype: #GType for this object - * @type: String name of object type - */ -probe gobject.object_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__new") -{ - object = $arg1; - gtype = $arg2; - type = gtypenames[pid(),$arg2]; - probestr = sprintf("gobject.object_new(%s) -> %p", type, object); -} - -/** - * probe gobject.object_ref - Called when a new reference is added to a #GObject - * @object: Raw pointer to object - * @gtype: #GType for this object - * @type: String name of object type - * @old_refcount: Original value of the reference count - * @refcount: New value of the reference count - */ -probe gobject.object_ref = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__ref") -{ - object = $arg1; - gtype = $arg2; - type = gtypenames[pid(),gtype]; - old_refcount = $arg3; - refcount = old_refcount+1; - probestr = sprintf("gobject.object_ref(%p[%s]) -> %d", object, type, refcount); -} - -/** - * probe gobject.object_unref - Called when a reference is removed from a #GObject - * @object: Raw pointer to object - * @gtype: #GType for this object - * @type: String name of object type - * @old_refcount: Original value of the reference count - */ -probe gobject.object_unref = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__unref") -{ - object = $arg1; - gtype = $arg2; - type = gtypenames[pid(),gtype]; - old_refcount = $arg3; - refcount = old_refcount-1; - probestr = sprintf("gobject.object_unref(%p [%s]) -> %d", object, type, refcount); -} - -/** - * probe gobject.object_dispose - Called when a g_object_dispose() run for a #GObject is initiated - * @object: Raw pointer to object - * @gtype: #GType for this object - * @type: String name of object type - * @last_unref: FIXME - */ -probe gobject.object_dispose = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__dispose") -{ - object = $arg1; - gtype = $arg2; - type = gtypenames[pid(),$arg2]; - last_unref = $arg3; - probestr = sprintf("gobject.object_dispose(%p[%s])", object, type); -} - -/** - * probe gobject.object_dispose_end - Called when a g_object_dispose() run for a #GObject is completed - * @object: Raw pointer to object - * @gtype: #GType for this object - * @type: String name of object type - * @last_unref: FIXME - */ -probe gobject.object_dispose_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__dispose__end") -{ - object = $arg1; - gtype = $arg2; - type = gtypenames[pid(),$arg2]; - last_unref = $arg3; - probestr = sprintf("gobject.object_dispose_end(%p[%s])", object, type); -} - -/** - * probe gobject.object_finalize - Called when finalization for a #GObject is started - * @object: Raw pointer to object - * @gtype: #GType for this object - * @type: String name of object type - */ -probe gobject.object_finalize = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__finalize") -{ - object = $arg1; - gtype = $arg2; - type = gtypenames[pid(),$arg2]; - probestr = sprintf("gobject.object_finalize(%p[%s])", object, type); -} - -/** - * probe gobject.object_finalize - Called when finalization for a #GObject is completed - * @object: Raw pointer to object - * @gtype: #GType for this object - * @type: String name of object type - */ -probe gobject.object_finalize_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__finalize__end") -{ - object = $arg1; - gtype = $arg2; - type = gtypenames[pid(),$arg2]; - probestr = sprintf("gobject.object_finalize_end(%p[%s])", object, type); -} - -/** - * probe gobject.signal_new - Called when a new signal is registered for a #GObject - * @gsignal: Integer value for this signal - * @name: String name for this signal - * @gtype: #GType for the type which will gain the new signal - * @type: String name of the type which will gain the new signal - */ -probe gobject.signal_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__new") -{ - gsignal = $arg1; - name = user_string($arg2); - gtype = $arg3; - type = gtypenames[pid(),$arg3]; - probestr = sprintf("gobject.signal_new(%s, %s) -> %d", name, type, gsignal); -} - -/** - * probe gobject.signal_emit - Called when a signal emission for a #GObject is started - * @gsignal: Integer value for this signal - * @detail: String containing signal "detail" - * @signal: String name of the signal - * @object: Raw pointer for object emitting signal - * @gtype: #GType for the type emitting the signal - * @type: String name of the type emitting the signal - */ -probe gobject.signal_emit = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__emit") -{ - gsignal = $arg1; - detail = $arg2; - signal = gsignalnames[pid(),$arg1]; - if (detail != 0) - signal = signal . "::" . gquarks[pid(), detail] - object = $arg3; - gtype = $arg4; - type = gtypenames[pid(),$arg4]; - probestr = sprintf("gobject.signal_emit(%p[%s], %s)", object, type, signal); -} - -/** - * probe gobject.signal_emit_end - Called when a signal emission for a #GObject is completed - * @gsignal: Integer value for this signal - * @detail: String containing signal "detail" - * @signal: String name of the signal - * @object: Raw pointer for object emitting signal - * @gtype: #GType for the type emitting the signal - * @type: String name of the type emitting the signal - */ -probe gobject.signal_emit_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__emit__end") -{ - gsignal = $arg1; - detail = $arg2; - signal = gsignalnames[pid(),$arg1]; - if (detail != 0) - signal = signal . "::" . gquarks[pid(), detail] - object = $arg3; - gtype = $arg4; - type = gtypenames[pid(),$arg4]; - probestr = sprintf("gobject.signal_emit_end(%p[%s], %s)", object, type, signal); -} diff --git a/dev-libs/gobject-introspection/files/gobject-introspection-1.42.0-cpp-flags.patch b/dev-libs/gobject-introspection/files/gobject-introspection-1.42.0-cpp-flags.patch deleted file mode 100644 index 8195cdf362da..000000000000 --- a/dev-libs/gobject-introspection/files/gobject-introspection-1.42.0-cpp-flags.patch +++ /dev/null @@ -1,32 +0,0 @@ -From d2dce55c971fc44cc327818b0341eb89f1243db6 Mon Sep 17 00:00:00 2001 -From: Michael Catanzaro -Date: Wed, 28 Jan 2015 21:55:20 -0600 -Subject: scanner: don't pass certain debug level flags to cpp - -These may cause cpp to output code that still has #defines in them, -which the scanner does not expect. - -https://bugzilla.gnome.org/show_bug.cgi?id=720504 - -diff --git a/giscanner/sourcescanner.py b/giscanner/sourcescanner.py -index dab1602..9a81421 100644 ---- a/giscanner/sourcescanner.py -+++ b/giscanner/sourcescanner.py -@@ -294,6 +294,14 @@ class SourceScanner(object): - cpp_args += ['-E', '-C', '-I.', '-'] - cpp_args += self._cpp_options - -+ # We expect the preprocessor to remove macros. If debugging is turned -+ # up high enough that won't happen, so strip these out. Bug #720504 -+ for flag in ['-g3', '-ggdb3', '-gstabs3', '-gcoff3', '-gxcoff3', '-gvms3']: -+ try: -+ cpp_args.remove(flag) -+ except ValueError: -+ pass -+ - proc = subprocess.Popen(cpp_args, - stdin=subprocess.PIPE, - stdout=subprocess.PIPE) --- -cgit v0.10.2 - diff --git a/dev-libs/icu-layoutex/Manifest b/dev-libs/icu-layoutex/Manifest new file mode 100644 index 000000000000..18f5e73ccb97 --- /dev/null +++ b/dev-libs/icu-layoutex/Manifest @@ -0,0 +1 @@ +DIST icu4c-58_1-src.tgz 23366443 SHA256 0eb46ba3746a9c2092c8ad347a29b1a1b4941144772d13a88667a7b11ea30309 SHA512 59b2a76834192a35125fda326587e613ef4486152cf0278c6f22568d4ae02c4b2d897efcea2654ef2b11bd1c3154aecd38cb68a70f69430736f343689f94c155 WHIRLPOOL faf2624a83f0d6f874166b328522dc9c89088db2690433ab05e96371722b635b81fd5210c7e87fe8e5df6681e881cf10204832925b448552affe8c2f6c851e37 diff --git a/dev-libs/icu-layoutex/files/icu-layoutex-58.1-remove-bashisms.patch b/dev-libs/icu-layoutex/files/icu-layoutex-58.1-remove-bashisms.patch new file mode 100644 index 000000000000..ef60ce4569b8 --- /dev/null +++ b/dev-libs/icu-layoutex/files/icu-layoutex-58.1-remove-bashisms.patch @@ -0,0 +1,224 @@ +diff -ruN a/config/Makefile.inc.in b/config/Makefile.inc.in +--- a/config/Makefile.inc.in 2016-09-09 23:28:18.000000000 +0200 ++++ b/config/Makefile.inc.in 2016-11-05 19:43:07.688466668 +0100 +@@ -124,12 +124,6 @@ + # with usually. Many applications will want to add $(ICULIBS_I18N) as well. + ICULIBS = $(ICULIBS_BASE) $(ICULIBS_I18N) $(ICULIBS_COMMON) $(ICULIBS_DATA) + +-# Proper echo newline handling is needed in icu-config +-ECHO_N=@ICU_ECHO_N@ +-ECHO_C=@ICU_ECHO_C@ +-# Not currently being used but good to have for proper tab handling +-ECHO_T=@ICU_ECHO_T@ +- + ################################################################## + ################################################################## + # +diff -ruN a/config/icu-config-bottom b/config/icu-config-bottom +--- a/config/icu-config-bottom 2016-09-09 23:28:18.000000000 +0200 ++++ b/config/icu-config-bottom 2016-11-05 19:49:00.854481361 +0100 +@@ -218,65 +218,65 @@ + ;; + + --cflags) +- echo $ECHO_N "${CFLAGS} ${ECHO_C}" ++ printf "%s" "${CFLAGS} " + ;; + + --cc) +- echo $ECHO_N "${CC} ${ECHO_C}" ++ printf "%s" "${CC} " + ;; + + --cxx) +- echo $ECHO_N "${CXX} ${ECHO_C}" ++ printf "%s" "${CXX} " + ;; + + --cxxflags) +- echo $ECHO_N "${CXXFLAGS} ${ECHO_C}" ++ printf "%s" "${CXXFLAGS} " + ;; + + --cppflags) + # Don't echo the -I. - it's unneeded. +- echo $ECHO_N "${CPPFLAGS} ${ECHO_C}" | sed -e 's/-I. //' ++ printf "%s" "${CPPFLAGS} " | sed -e 's/-I. //' + ;; + + --cppflags-searchpath) +- echo $ECHO_N "-I${prefix}/include ${ECHO_C}" ++ printf "%s" "-I${prefix}/include " + ;; + + --cppflags-dynamic) +- echo $ECHO_N "${SHAREDLIBCPPFLAGS} ${ECHO_C}" ++ printf "%s" "${SHAREDLIBCPPFLAGS} " + ;; + + --cxxflags-dynamic) +- echo $ECHO_N "${SHAREDLIBCXXFLAGS} ${ECHO_C}" ++ printf "%s" "${SHAREDLIBCXXFLAGS} " + ;; + + --cflags-dynamic) +- echo $ECHO_N "${SHAREDLIBCFLAGS} ${ECHO_C}" ++ printf "%s" "${SHAREDLIBCFLAGS} " + ;; + + --ldflags-system) +- echo $ECHO_N "${LIBS} ${ECHO_C}" ++ printf "%s" "${LIBS} " + ;; + + --ldflags) +- echo $ECHO_N "${LDFLAGS} ${ICULIBS} ${ECHO_C}" ++ printf "%s" "${LDFLAGS} ${ICULIBS} " + # $RPATH_LDFLAGS + ;; + + --ldflags-libsonly) +- echo $ECHO_N "${ICULIBS_I18N} ${ICULIBS_COMMON} ${ICULIBS_DATA} ${ECHO_C}" ++ printf "%s" "${ICULIBS_I18N} ${ICULIBS_COMMON} ${ICULIBS_DATA} " + ;; + + --ldflags-icuio) +- echo $ECHO_N " ${ICULIBS_ICUIO} ${ECHO_C}" ++ printf "%s" " ${ICULIBS_ICUIO} " + ;; + + --ldflags-obsolete) +- echo $ECHO_N "${ICULIBS_OBSOLETE} ${ECHO_C}" ++ printf "%s" "${ICULIBS_OBSOLETE} " + ;; + + --ldflags-toolutil) +- echo $ECHO_N " ${ICULIBS_TOOLUTIL} ${ECHO_C}" ++ printf "%s" " ${ICULIBS_TOOLUTIL} " + ;; + + --ldflags-layout) +@@ -285,7 +285,7 @@ + ;; + + --ldflags-searchpath) +- echo $ECHO_N "-L${libdir} ${ECHO_C}" ++ printf "%s" "-L${libdir} " + ;; + + --detect-prefix) +@@ -321,47 +321,47 @@ + ;; + + --shared-datadir) +- echo $ECHO_N "${datadir} ${ECHO_C}" ++ printf "%s" "${datadir} " + ;; + + --incfile) +- echo $ECHO_N "${pkglibdir}/Makefile.inc ${ECHO_C}" ++ printf "%s" "${pkglibdir}/Makefile.inc " + ;; + + --incpkgdatafile) +- echo $ECHO_N "${pkglibdir}/pkgdata.inc ${ECHO_C}" ++ printf "%s" "${pkglibdir}/pkgdata.inc " + ;; + + --icudata) +- echo $ECHO_N "${ICUDATA_NAME} ${ECHO_C}" ++ printf "%s" "${ICUDATA_NAME} " + ;; + + --icudata-mode) +- echo $ECHO_N "${PKGDATA_MODE} ${ECHO_C}" ++ printf "%s" "${PKGDATA_MODE} " + ;; + + --icudata-install-dir) +- echo $ECHO_N "${ICUPKGDATA_DIR} ${ECHO_C}" ++ printf "%s" "${ICUPKGDATA_DIR} " + ;; + + --icudatadir) +- echo $ECHO_N "${ICUDATA_DIR} ${ECHO_C}" ++ printf "%s" "${ICUDATA_DIR} " + ;; + + --shlib-c) +- echo $ECHO_N "${SHLIB_c} ${ECHO_C}" ++ printf "%s" "${SHLIB_c} " + ;; + + --shlib-cc) +- echo $ECHO_N "${SHLIB_cc} ${ECHO_C}" ++ printf "%s" "${SHLIB_cc} " + ;; + + --version) +- echo $ECHO_N $VERSION ++ printf "%s" "$VERSION" + ;; + + --unicode-version) +- echo $ECHO_N $UNICODE_VERSION ++ printf "%s" "$UNICODE_VERSION" + ;; + + --host) +diff -ruN a/configure.ac b/configure.ac +--- a/configure.ac 2016-10-04 21:30:20.000000000 +0200 ++++ b/configure.ac 2016-11-05 19:43:07.688466668 +0100 +@@ -22,24 +22,6 @@ + PACKAGE="icu" + AC_SUBST(PACKAGE) + +-# Use custom echo test for newline option +-# Current autoconf (2.65) gives incorrect echo newline option +-# for icu-config +-# This may be removed later - mow (June 17, 2010) +-ICU_ECHO_C= ICU_ECHO_N= ICU_ECHO_T= +-case `/bin/sh -c "echo -n x"` in +--n*) +- case `/bin/sh -c "echo 'x\c'"` in +- *c*) ICU_ECHO_T=' ';; # ECHO_T is single tab character. +- *) ICU_ECHO_C='\c';; +- esac;; +-*) +- ICU_ECHO_N='-n';; +-esac +-AC_SUBST(ICU_ECHO_N) +-AC_SUBST(ICU_ECHO_C) +-AC_SUBST(ICU_ECHO_T) +- + AC_MSG_CHECKING(for ICU version numbers) + + # Get the ICU version from uversion.h or other headers +diff -ruN a/icudefs.mk.in b/icudefs.mk.in +--- a/icudefs.mk.in 2016-09-09 23:28:18.000000000 +0200 ++++ b/icudefs.mk.in 2016-11-05 19:43:07.688466668 +0100 +@@ -157,11 +157,6 @@ + ENABLE_STATIC = @ENABLE_STATIC@ + ENABLE_SHARED = @ENABLE_SHARED@ + +-# Echo w/o newline +- +-#ECHO_N = @ICU_ECHO_N@ +-#ECHO_C = @ICU_ECHO_C@ +- + # Commands to compile + COMPILE.c= $(CC) $(CPPFLAGS) $(DEFS) $(CFLAGS) -c + COMPILE.cc= $(CXX) $(CPPFLAGS) $(DEFS) $(CXXFLAGS) -c +diff -ruN a/test/hdrtst/Makefile.in b/test/hdrtst/Makefile.in +--- a/test/hdrtst/Makefile.in 2016-09-28 06:17:24.000000000 +0200 ++++ b/test/hdrtst/Makefile.in 2016-11-05 19:43:07.688466668 +0100 +@@ -35,9 +35,6 @@ + include $(shell icu-config --incfile) + DIRS=$(prefix)/include/unicode + LDIRS=$(prefix)/include/layout +-ECHO_T=@ECHO_T@ +-ECHO_C=@ECHO_C@ +-ECHO_N=@ECHO_N@ + + all: + @echo Please read this Makefile for more information. diff --git a/dev-libs/icu-layoutex/icu-layoutex-58.1.ebuild b/dev-libs/icu-layoutex/icu-layoutex-58.1.ebuild new file mode 100644 index 000000000000..15056baf4172 --- /dev/null +++ b/dev-libs/icu-layoutex/icu-layoutex-58.1.ebuild @@ -0,0 +1,116 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils flag-o-matic toolchain-funcs autotools multilib-minimal + +DESCRIPTION="External layout part of International Components for Unicode" +HOMEPAGE="http://www.icu-project.org/" +SRC_URI="http://download.icu-project.org/files/icu4c/${PV/_/}/icu4c-${PV//./_}-src.tgz" + +LICENSE="BSD" + +SLOT="0/${PV}" + +KEYWORDS="~amd64 ~x86" +IUSE="debug static-libs" + +RDEPEND=" + ~dev-libs/icu-${PV} + dev-libs/icu-le-hb +" + +DEPEND=" + virtual/pkgconfig + ${RDEPEND} +" + +S="${WORKDIR}/${PN/-layoutex}/source" + +PATCHES=( + "${FILESDIR}/${PN}-58.1-remove-bashisms.patch" +) + +src_prepare() { + # apply patches + default + + local variable + + # Disable renaming as it is stupid thing to do + sed -i \ + -e "s/#define U_DISABLE_RENAMING 0/#define U_DISABLE_RENAMING 1/" \ + common/unicode/uconfig.h || die + + # Fix linking of icudata + sed -i \ + -e "s:LDFLAGSICUDT=-nodefaultlibs -nostdlib:LDFLAGSICUDT=:" \ + config/mh-linux || die + + eautoreconf +} + +src_configure() { + # Use C++14 + append-cxxflags -std=c++14 + + if tc-is-cross-compiler; then + mkdir "${WORKDIR}"/host || die + pushd "${WORKDIR}"/host >/dev/null || die + + CFLAGS="" CXXFLAGS="" ASFLAGS="" LDFLAGS="" \ + CC="$(tc-getBUILD_CC)" CXX="$(tc-getBUILD_CXX)" AR="$(tc-getBUILD_AR)" \ + RANLIB="$(tc-getBUILD_RANLIB)" LD="$(tc-getBUILD_LD)" \ + "${S}"/configure --disable-renaming --disable-debug \ + --disable-samples --enable-static || die + emake + + popd >/dev/null || die + fi + + multilib-minimal_src_configure +} + +multilib_src_configure() { + local myeconfargs=( + --disable-renaming + --disable-samples + --enable-layoutex + $(use_enable debug) + $(use_enable static-libs static) + ) + + tc-is-cross-compiler && myeconfargs+=( + --with-cross-build="${WORKDIR}"/host + ) + + # icu tries to use clang by default + tc-export CC CXX + + ECONF_SOURCE=${S} \ + econf "${myeconfargs[@]}" +} + +multilib_src_test() { + # INTLTEST_OPTS: intltest options + # -e: Exhaustive testing + # -l: Reporting of memory leaks + # -v: Increased verbosity + # IOTEST_OPTS: iotest options + # -e: Exhaustive testing + # -v: Increased verbosity + # CINTLTST_OPTS: cintltst options + # -e: Exhaustive testing + # -v: Increased verbosity + pushd layoutex &>/dev/null || die + emake -j1 VERBOSE="1" check + popd &>/dev/null || die +} + +multilib_src_install() { + pushd layoutex &>/dev/null || die + default + popd &>/dev/null || die +} diff --git a/dev-libs/icu-layoutex/metadata.xml b/dev-libs/icu-layoutex/metadata.xml new file mode 100644 index 000000000000..1e2a3b43bac3 --- /dev/null +++ b/dev-libs/icu-layoutex/metadata.xml @@ -0,0 +1,12 @@ + + + + + polynomial-c@gentoo.org + Lars Wendler + + + office@gentoo.org + Gentoo Office project + + diff --git a/dev-libs/icu-le-hb/Manifest b/dev-libs/icu-le-hb/Manifest new file mode 100644 index 000000000000..14434e0fb6dd --- /dev/null +++ b/dev-libs/icu-le-hb/Manifest @@ -0,0 +1 @@ +DIST icu-le-hb-1.0.3.tar.gz 39352 SHA256 1c759ec8ab979bcd2fdf13bf398aa255fa6b8dc002e4232f8187b4b288f91907 SHA512 06dff69bc17c39c13bd5bc801dbe09e2dc2f0cdf1acd774fa863e09f4a65820b2f330d4836da6748c077365f685fa74452ec1924785e3191cc2925036803cbb4 WHIRLPOOL 6cb6341126b1bdc38de6a3c66e9182c2c6cb0bef2bbfe294cbf3f785e942be02201c7afb13df5316fa40f6fbcda4edb845e6827e39942004c43a3a33eaebdbfb diff --git a/dev-libs/icu-le-hb/icu-le-hb-1.0.3.ebuild b/dev-libs/icu-le-hb/icu-le-hb-1.0.3.ebuild new file mode 100644 index 000000000000..5f7d3b72e190 --- /dev/null +++ b/dev-libs/icu-le-hb/icu-le-hb-1.0.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools multilib-minimal + +DESCRIPTION="ICU Layout Engine API on top of HarfBuzz shaping library" +HOMEPAGE="http://www.harfbuzz.org https://github.com/behdad/icu-le-hb" +SRC_URI="https://github.com/behdad/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="icu" +SLOT="0" + +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + media-libs/harfbuzz:= +" + +DEPEND=" + ${RDEPEND} + >=dev-libs/icu-58.1 + virtual/pkgconfig +" + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" \ + econf +} diff --git a/dev-libs/icu-le-hb/metadata.xml b/dev-libs/icu-le-hb/metadata.xml new file mode 100644 index 000000000000..29a8001dfe99 --- /dev/null +++ b/dev-libs/icu-le-hb/metadata.xml @@ -0,0 +1,15 @@ + + + + + polynomial-c@gentoo.org + Lars Wendler + + + office@gentoo.org + Gentoo Office project + + + behdad/icu-le-hb + + diff --git a/dev-libs/icu/icu-58.1.ebuild b/dev-libs/icu/icu-58.1.ebuild index e5fd0fdac8a3..cd75f8bec1c5 100644 --- a/dev-libs/icu/icu-58.1.ebuild +++ b/dev-libs/icu/icu-58.1.ebuild @@ -81,8 +81,10 @@ src_configure() { multilib_src_configure() { local myeconfargs=( + --disable-layoutex --disable-renaming --disable-samples + --disable-layoutex $(use_enable debug) $(use_enable static-libs static) ) diff --git a/dev-libs/libgit2/Manifest b/dev-libs/libgit2/Manifest index 2a229137e905..c6cdb969ba14 100644 --- a/dev-libs/libgit2/Manifest +++ b/dev-libs/libgit2/Manifest @@ -1,9 +1,4 @@ -DIST libgit2-0.20.0.tar.gz 3255478 SHA256 509ab8091623df5b745cd13682539ca2dc2372051d3418355a7acc5b4a20c2f1 SHA512 0512a2d6daa149f6c6bada3b9ea8b228d6ba9180d7030cf41f3e9888fb15f068ef7c7722f636f8750c4643b58453299179d73e0b71e08ae79439060a27efe9d6 WHIRLPOOL 996a3639bd8f598b07f12115a2af0b5d28de51163338c34b39872046776a0144e57a0598ab493dcf717fa16ed093d9b00546009d2a4426a27a0451e97759783b -DIST libgit2-0.21.5.tar.gz 3460366 SHA256 46ca07becbdcda0da96a553d9f45e64ead29276ba14049e4bc8e2730ed1aa494 SHA512 080624aa1479b9b393d4b3341b2dd5640e7d61f21c44b04c54bdd6be589fcdfc628219046f3dfda48f563560a1db1f9ddf0626d2802a1f60122b9609d0412dce WHIRLPOOL 6bdc7d40afb9bf427ffe96d87a920b4421f902f0548018477324d69a563751696a1288c5564d87efbabac779273f1992f6d79f9ac101814cfbcbcdc11584dba3 DIST libgit2-0.22.3.tar.gz 3594098 SHA256 511fe60e7c12c3525b4e0489861e5c1fe0e331d604bee9a3dfb8420c2f288f60 SHA512 2bbb04789702d206e65b18d96752113d2c1b0af7b7779cf7c90c326ec47f535b36327b0171ae1f614179c24275e2c04c51d62e44eedba87530509a29c15ab25c WHIRLPOOL 2fbb2739856e6cef3ae1a103e1b999b3362c79536423e5cd6d46d60276a14e87298ec36e2e03e8ea0fa8ebe28a140ba20ce077fb30ab3fc0d1337ec3b04fde87 -DIST libgit2-0.23.2.tar.gz 3717748 SHA256 20c0a6ee92c0e19207dac6ddc336b4ae4a1c4ddf91be0891e4b6e6ccba16df0b SHA512 aa11be93a135eeddd07d2f2a4cba019d42e33f185141caac1d0f89083652aa612f1381e3011396c6078b46f8bbeea894eb5fc25fcebbe13cb14dd9dfd8f40240 WHIRLPOOL 0f83fb7a15f77a13b5e06d81337f0f28bc2e55340b204d8009f5fb7e6ab47e7beb4c79c264a27e581696c87c5fe42927bbef15124c036d2f634ff47a5f8197a9 -DIST libgit2-0.23.3.tar.gz 3718675 SHA256 2d5c80426675928cda6e9a313ae38b2a72c1a55b7c3d4884dc21f7b312ff1eae SHA512 5c4a33e9d0a34bd3c4ab61c9c3fd45fe84204c6941506cd989acda552932205e2edadd9b731cb19c650b1ea69e5ac1ac313c55ea7881ccb8a17f3a3c8db03ef8 WHIRLPOOL 068d1de53a7f8d832ebf38dec674de613327a9ba7c791c270f63e681c5ca09ed578e87361d5f69976883e109b7e818d3b3c7b27c6ae474db197cfe0fe5f735be DIST libgit2-0.23.4.tar.gz 4065303 SHA256 c7f5e2d7381dbc4d7e878013d14f9993ae8a41bd23f032718e39ffba57894029 SHA512 f2f6244dfee4dab2dc5ef9607808404467a1f6baa684aa4e24b7116e7e7f63f396eef3282c1bcffbef47f19824731c2887deadbe3b2dad8a075b0639e5965d9e WHIRLPOOL 7346fd24616ba68929f02d686229a2f91caf2bf44ff88aadbb663ffb776dc6a5a222f0a9d7145ac9ef08ebcd321671e5c3d0175eca77230955bfaa2ca375ca6a -DIST libgit2-0.24.0.tar.gz 4169652 SHA256 1c6693f943bee3f634b9094376f93e7e03b9ca77354a33f4e903fdcb2ee8b2b0 SHA512 f41e8f9d4b03b392fb7f3a8a7e2ee806760d4c43fdc4270ef59d42c9d57f1f93681216ff4cfdfc6512b212bf7a37a4fe0fe9c44a04742fb3e2aef54c016136ba WHIRLPOOL 98117ab066a51a39042b0862ac3df872d72e1214518a8d5733bc0a92f2cad3eb18ced56f715075276aba527f824eae58f643a8b12115134da9122b7d902652ae DIST libgit2-0.24.1.tar.gz 4173317 SHA256 60198cbb34066b9b5c1613d15c0479f6cd25f4aef42f7ec515cd1cc13a77fede SHA512 7ad06cef694a293eb90569b042270425f1d012c1c9de8db595dd841942072110bc5342f0d9782479abbba355f5db170b9dad778e79dd23857003e9668cdc1e13 WHIRLPOOL a808c530c4abfe1b54deb9d479d607dffc9b3c9a8f5ecd1121477cd3d33dfb282e7f23ba86ec8cc74bdebe5b0cf4dd650e8928b1017e75fc499e4cc29e21fa18 DIST libgit2-0.24.2.tar.gz 4177238 SHA256 00f0a7403143fba69601accc80cacf49becc568b890ba232f300c1b2a37475e6 SHA512 aaba85ef65e00b5916642121dbf0e785c20332f29312e772186eef0eebba5c997a60f94dfb651cbab25c3070c7b4cc37e8619d9cb9fed590e1fb0460bcb7af02 WHIRLPOOL 090cc7b3f8ec3db468128d1441b4c4b02e8ec02b1e9f3d73ced5973083c81a811ac0e50ecfb61470e4a85a57af94772a74e9cf9d71fccac17e36938b05892e8a diff --git a/dev-libs/libgit2/libgit2-0.20.0-r1.ebuild b/dev-libs/libgit2/libgit2-0.20.0-r1.ebuild deleted file mode 100644 index 655222ce6ccd..000000000000 --- a/dev-libs/libgit2/libgit2-0.20.0-r1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit cmake-utils multilib - -DESCRIPTION="A linkable library for Git" -HOMEPAGE="https://libgit2.github.com/" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0" -KEYWORDS="amd64 x86 ~ppc-macos" -IUSE="examples ssh test threads trace" - -RDEPEND=" - sys-libs/zlib - net-libs/http-parser - ssh? ( net-libs/libssh2 )" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md ) - -PATCHES=( "${FILESDIR}"/${P}-skip-blame-test.patch ) - -src_prepare() { - # skip online tests - sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die - - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" - $(cmake-utils_use_build test CLAR) - $(cmake-utils_use_enable trace TRACE) - $(cmake-utils_use_use ssh SSH) - $(cmake-utils_use threads THREADSAFE) - ) - cmake-utils_src_configure -} - -src_test() { - if [[ ${EUID} -eq 0 ]] ; then - # repo::iterator::fs_preserves_error fails if run as root - # since root can still access dirs with 0000 perms - ewarn "Skipping tests: non-root privileges are required for all tests to pass" - else - local TEST_VERBOSE=1 - cmake-utils_src_test - fi -} - -src_install() { - cmake-utils_src_install - - if use examples ; then - egit_clean examples - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi -} diff --git a/dev-libs/libgit2/libgit2-0.21.5.ebuild b/dev-libs/libgit2/libgit2-0.21.5.ebuild deleted file mode 100644 index 974af82008fa..000000000000 --- a/dev-libs/libgit2/libgit2-0.21.5.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit cmake-utils multilib - -DESCRIPTION="A linkable library for Git" -HOMEPAGE="https://libgit2.github.com/" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0/21" -KEYWORDS="amd64 x86 ~ppc-macos" -IUSE="examples ssh test threads trace" - -RDEPEND=" - sys-libs/zlib - net-libs/http-parser - ssh? ( net-libs/libssh2 )" -DEPEND="${RDEPEND}" - -DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md ) - -src_prepare() { - # skip online tests - sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die - - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" - $(cmake-utils_use_build test CLAR) - $(cmake-utils_use_enable trace TRACE) - $(cmake-utils_use_use ssh SSH) - $(cmake-utils_use threads THREADSAFE) - ) - cmake-utils_src_configure -} - -src_test() { - if [[ ${EUID} -eq 0 ]] ; then - # repo::iterator::fs_preserves_error fails if run as root - # since root can still access dirs with 0000 perms - ewarn "Skipping tests: non-root privileges are required for all tests to pass" - else - local TEST_VERBOSE=1 - cmake-utils_src_test - fi -} - -src_install() { - cmake-utils_src_install - - if use examples ; then - egit_clean examples - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi -} diff --git a/dev-libs/libgit2/libgit2-0.23.2-r1.ebuild b/dev-libs/libgit2/libgit2-0.23.2-r1.ebuild deleted file mode 100644 index 9d9e4458c633..000000000000 --- a/dev-libs/libgit2/libgit2-0.23.2-r1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit cmake-utils multilib - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" - inherit git-r3 -else - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~ppc-macos" -fi - -DESCRIPTION="A linkable library for Git" -HOMEPAGE="https://libgit2.github.com/" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0/23" -IUSE="examples gssapi libressl ssh test threads trace" - -RDEPEND=" - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) - sys-libs/zlib - net-libs/http-parser - gssapi? ( virtual/krb5 ) - ssh? ( net-libs/libssh2 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md ) - -src_prepare() { - # skip online tests - sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die - - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" - $(cmake-utils_use_build test CLAR) - $(cmake-utils_use_enable trace TRACE) - $(cmake-utils_use_use gssapi GSSAPI) - $(cmake-utils_use_use ssh SSH) - $(cmake-utils_use threads THREADSAFE) - ) - cmake-utils_src_configure -} - -src_test() { - if [[ ${EUID} -eq 0 ]] ; then - # repo::iterator::fs_preserves_error fails if run as root - # since root can still access dirs with 0000 perms - ewarn "Skipping tests: non-root privileges are required for all tests to pass" - else - local TEST_VERBOSE=1 - cmake-utils_src_test - fi -} - -src_install() { - cmake-utils_src_install - - if use examples ; then - egit_clean examples - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi -} diff --git a/dev-libs/libgit2/libgit2-0.23.3.ebuild b/dev-libs/libgit2/libgit2-0.23.3.ebuild deleted file mode 100644 index 9d9e4458c633..000000000000 --- a/dev-libs/libgit2/libgit2-0.23.3.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit cmake-utils multilib - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" - inherit git-r3 -else - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86 ~ppc-macos" -fi - -DESCRIPTION="A linkable library for Git" -HOMEPAGE="https://libgit2.github.com/" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0/23" -IUSE="examples gssapi libressl ssh test threads trace" - -RDEPEND=" - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) - sys-libs/zlib - net-libs/http-parser - gssapi? ( virtual/krb5 ) - ssh? ( net-libs/libssh2 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md ) - -src_prepare() { - # skip online tests - sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die - - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" - $(cmake-utils_use_build test CLAR) - $(cmake-utils_use_enable trace TRACE) - $(cmake-utils_use_use gssapi GSSAPI) - $(cmake-utils_use_use ssh SSH) - $(cmake-utils_use threads THREADSAFE) - ) - cmake-utils_src_configure -} - -src_test() { - if [[ ${EUID} -eq 0 ]] ; then - # repo::iterator::fs_preserves_error fails if run as root - # since root can still access dirs with 0000 perms - ewarn "Skipping tests: non-root privileges are required for all tests to pass" - else - local TEST_VERBOSE=1 - cmake-utils_src_test - fi -} - -src_install() { - cmake-utils_src_install - - if use examples ; then - egit_clean examples - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi -} diff --git a/dev-libs/libgit2/libgit2-0.24.0.ebuild b/dev-libs/libgit2/libgit2-0.24.0.ebuild deleted file mode 100644 index 4f16b6b73eac..000000000000 --- a/dev-libs/libgit2/libgit2-0.24.0.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit cmake-utils multilib - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" - inherit git-r3 -else - SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~ppc ~x86 ~ppc-macos" -fi - -DESCRIPTION="A linkable library for Git" -HOMEPAGE="https://libgit2.github.com/" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0/24" -IUSE="examples gssapi libressl ssh test threads trace" - -RDEPEND=" - !libressl? ( dev-libs/openssl:0 ) - libressl? ( dev-libs/libressl ) - sys-libs/zlib - net-libs/http-parser:= - gssapi? ( virtual/krb5 ) - ssh? ( net-libs/libssh2 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -DOCS=( AUTHORS CONTRIBUTING.md CONVENTIONS.md README.md ) - -src_prepare() { - # skip online tests - sed -i '/libgit2_clar/s/-ionline/-xonline/' CMakeLists.txt || die - - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" - $(cmake-utils_use_build test CLAR) - $(cmake-utils_use_enable trace TRACE) - $(cmake-utils_use_use gssapi GSSAPI) - $(cmake-utils_use_use ssh SSH) - $(cmake-utils_use threads THREADSAFE) - ) - cmake-utils_src_configure -} - -src_test() { - if [[ ${EUID} -eq 0 ]] ; then - # repo::iterator::fs_preserves_error fails if run as root - # since root can still access dirs with 0000 perms - ewarn "Skipping tests: non-root privileges are required for all tests to pass" - else - local TEST_VERBOSE=1 - cmake-utils_src_test - fi -} - -src_install() { - cmake-utils_src_install - - if use examples ; then - egit_clean examples - dodoc -r examples - docompress -x /usr/share/doc/${PF}/examples - fi -} diff --git a/dev-libs/libxslt/files/libxslt-1.1.26-disable_static_modules.patch b/dev-libs/libxslt/files/libxslt-1.1.26-disable_static_modules.patch deleted file mode 100644 index fad067ff4348..000000000000 --- a/dev-libs/libxslt/files/libxslt-1.1.26-disable_static_modules.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- python/Makefile.am -+++ python/Makefile.am -@@ -24,7 +24,8 @@ - libxslt-python-api.xml \ - $(DOCS) - --libxsltmod_la_LDFLAGS = $(WIN32_EXTRA_LDFLAGS) -module -avoid-version -+libxsltmod_la_CPPFLAGS = -shared -+libxsltmod_la_LDFLAGS = $(WIN32_EXTRA_LDFLAGS) -module -avoid-version -shared - - if WITH_PYTHON - mylibs = \ diff --git a/dev-libs/qof/files/qof-0.8.0-remove_spurious_CFLAGS.patch b/dev-libs/qof/files/qof-0.8.0-remove_spurious_CFLAGS.patch deleted file mode 100644 index 56c217592e2f..000000000000 --- a/dev-libs/qof/files/qof-0.8.0-remove_spurious_CFLAGS.patch +++ /dev/null @@ -1,57 +0,0 @@ ---- configure.orig 2009-06-09 19:15:07.000384982 +0200 -+++ configure 2009-06-09 19:17:31.320384334 +0200 -@@ -22653,18 +22653,18 @@ - $as_echo_n "checking what extra warning flags to pass to the C compiler... " >&6; } - if test ${GCC}x = yesx; then - warnFLAGS= -- CFLAGS="${CFLAGS} -g2 -Wall" -+ CFLAGS="${CFLAGS}" - # Check whether --enable-error-on-warning was given. - if test "${enable_error_on_warning+set}" = set; then - enableval=$enable_error_on_warning; case "${enableval}" in -- yes) warnFLAGS="${warnFLAGS} -Werror" ;; -+ yes) warnFLAGS="${warnFLAGS}" ;; - no) ;; - *) { { $as_echo "$as_me:$LINENO: error: bad value ${enableval} for --enable-error-on-warning" >&5 - $as_echo "$as_me: error: bad value ${enableval} for --enable-error-on-warning" >&2;} - { (exit 1); exit 1; }; } ;; - esac - else -- warnFLAGS="${warnFLAGS} -Werror" -+ warnFLAGS="${warnFLAGS}" - fi - - GCC_VERSION=`${CC} -dumpversion` -@@ -22672,10 +22672,10 @@ - # This is gcc >= 3.x.x - if test `echo ${GCC_VERSION} | cut -d. -f2` -ge 4; then - # This is gcc >= 3.4.x -- warnFLAGS="${warnFLAGS} -Wdeclaration-after-statement" -+ warnFLAGS="${warnFLAGS}" - else if test `echo ${GCC_VERSION} | cut -d. -f1` -ge 4; then - # This is gcc == 4.x.x -- warnFLAGS="${warnFLAGS} -Wdeclaration-after-statement -Wno-pointer-sign" -+ warnFLAGS="${warnFLAGS}" - fi - fi - fi -@@ -22693,19 +22693,6 @@ - enableval=$enable_compile_warnings; set_compile_warnings=yes - fi - -- --if test "$GCC" = "yes" -a "$set_compile_warnings" != "no"; then -- warnFLAGS="$warnFLAGS -Wcast-align -Wsign-compare \ -- -Wmissing-prototypes -Wmissing-declarations -Werror -Wmissing-include-dirs \ -- -Wstrict-prototypes -Winline -Wnested-externs -Wpointer-arith \ -- -Wmissing-field-initializers" --# LDFLAGS="$LDFLAGS -Wl,-z,defs" --fi -- -- -- -- -- - DATADIR=`eval echo $datadir` - QSF_SCHEMA_DIR=`eval echo $DATADIR`"/xml/qof/qsf" - diff --git a/dev-lua/luasec/Manifest b/dev-lua/luasec/Manifest index 76a9fc9218fa..50d27e04a7a3 100644 --- a/dev-lua/luasec/Manifest +++ b/dev-lua/luasec/Manifest @@ -2,3 +2,4 @@ DIST luasec-0.4.1.tar.gz 28646 SHA256 9a9ea9f23044d41be29aea3de1bd795118a29e7311 DIST luasec-0.4.1_p20130620.tar.gz 45297 SHA256 8bb3e8c5c3a4980f027b7ab41d5a08a2d44834e4230bcb6a2638ba4a7a3dc53f SHA512 914ae2adf7ce48c78d972ae5cbe2b52cbd42083cbe98063c36bd52af52b3bdec4cb389b8599928b2703436fc8eaf70de3212def0adaf936c7bbedf650f9c8c4e WHIRLPOOL 7a7c8e43ae846a8351c39a1dbfaab091a9d12c197538413137c0de807da6d20b894155fd9ec1f4bdefd7090a7b7cdb7ef195165870a6b5addd1ad66ad7208d11 DIST luasec-0.5.1.tar.gz 46820 SHA256 6d5c5f8e0521f3194668d9a839774e079e2fd5c45b15538dc7b8cacc56719406 SHA512 c7c92c79d0ec3e12b69f88d810a19397eaf570957d1f13b9695ee435cb6f0f9c31f5bc20a7252aac93d18eed98a5d3fc8a181cd85845a704e469055f215609a8 WHIRLPOOL 69bc39c8f91a0b4be9fbe9a6531e110cabb25b2f09a1588510a5e993d1f6da7f93154647b8265ee028f4dbc45f65febf0066c3bbb62a59fd3be2761fe5c70798 DIST luasec-0.5.tar.gz 46738 SHA256 6480598f7492ac479b6b608b5fb1488226bfa6ef675e29f6b24dbe9099083523 SHA512 fcf88f2566952c4d12be95531991180a1f3bd60f7dda41997f93c80ccc8d9dfd44b00e3330a07e451489dc9cd0640f7841101c10867e270608187df78549fe2f WHIRLPOOL 46d87a3ee3a6cf1413696c1dee0ea77913e6ffce94789e36f28ca5b2ec737cd1d2c81852c5b96958dcf53c22eee20d24102fb3ceea923692dbfb848b2fc52215 +DIST luasec-0.6.tar.gz 51071 SHA256 cef3a35c18beb8a54d9c8ce6260a4cabbd9a386de8711320d084daffad0aed5d SHA512 f7004a329153d0126a3ea27b4986e9d83fb8f2de9c5c2f0c96427c50cc42e1252c69fd8cc69e2e8d423745d2dbfdb5a781b609938f7f502c7aedeb99fd0778cd WHIRLPOOL 4dc5a58adb1a1e38d1301bdd6f9fbb7e551d3b1f2e729d6e9c892ab75188628862369565d1f6699a405c6dc1e19fe448d029a8ca29b857318a3cd44f2da077d1 diff --git a/dev-lua/luasec/luasec-0.6.ebuild b/dev-lua/luasec/luasec-0.6.ebuild new file mode 100644 index 000000000000..3a1f33912bc0 --- /dev/null +++ b/dev-lua/luasec/luasec-0.6.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit multilib toolchain-funcs eutils + +DESCRIPTION="Lua binding for OpenSSL library to provide TLS/SSL communication" +HOMEPAGE="https://github.com/brunoos/luasec http://www.inf.puc-rio.br/~brunoos/luasec/" +SRC_URI="https://github.com/brunoos/luasec/archive/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="libressl" + +RDEPEND=" + >=dev-lang/lua-5.1:0[deprecated] + dev-lua/luasocket + !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl:= )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/${PN}-${P} + +src_prepare() { + sed -i -e "s/-O2//" src/Makefile || die + lua src/options.lua -g /usr/include/openssl/ssl.h > src/options.h || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + LD="$(tc-getCC)" \ + linux +} + +src_install() { + emake \ + LUAPATH="${D}/$(pkg-config --variable INSTALL_LMOD lua)" \ + LUACPATH="${D}/$(pkg-config --variable INSTALL_CMOD lua)" \ + install +} diff --git a/dev-perl/DBD-mysql/DBD-mysql-4.38.0.ebuild b/dev-perl/DBD-mysql/DBD-mysql-4.38.0.ebuild new file mode 100644 index 000000000000..16525da79d83 --- /dev/null +++ b/dev-perl/DBD-mysql/DBD-mysql-4.38.0.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=CAPTTOFU +DIST_VERSION=4.038 +inherit eutils perl-module + +DESCRIPTION="MySQL driver for the Perl5 Database Interface (DBI)" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" + +# embedded=on disables ssl support +# https://metacpan.org/source/MICHIELB/DBD-mysql-4.036/dbdimp.c#L1886 +REQUIRED_USE="?? ( embedded ssl )" +IUSE="embedded test +ssl" + +RDEPEND=">=dev-perl/DBI-1.609.0 + virtual/libmysqlclient:= + embedded? ( virtual/mysql[embedded] ) +" +DEPEND="${RDEPEND} + virtual/perl-ExtUtils-MakeMaker + virtual/perl-Data-Dumper + test? ( + dev-perl/Test-Deep + >=virtual/perl-Test-Simple-0.900.0 + virtual/perl-Time-HiRes + ) +" +PATCHES=( + "${FILESDIR}"/${PN}-print_embedded_options.patch +) + +src_configure() { + if use test; then + myconf="${myconf} --testdb=test \ + --testhost=localhost \ + --testuser=test \ + --testpassword=test" + fi + myconf="${myconf} --$(usex ssl ssl nossl)" + use embedded && myconf="${myconf} --force-embedded --embedded=mysql_config" + perl-module_src_configure +} + +# Parallel testing is broken as 2 tests create the same table +# and mysql isn't acid compliant and can't limit visibility of tables +# to a transaction... +DIST_TEST="do" + +src_test() { + einfo + einfo "If tests fail, you have to configure your MySQL instance to create" + einfo "and grant some privileges to the test user." + einfo "You can run the following commands at the MySQL prompt: " + einfo "> CREATE USER 'test'@'localhost' IDENTIFIED BY 'test';" + einfo "> CREATE DATABASE test;" + einfo "> GRANT ALL PRIVILEGES ON test.* TO 'test'@'localhost';" + einfo + sleep 5 + perl_rm_files t/pod.t t/manifest.t + # Don't be a hero and try to do EXTENDED_TESTING=1 unless you can figure + # out why 60leaks.t fails + perl-module_src_test +} diff --git a/dev-perl/DBD-mysql/Manifest b/dev-perl/DBD-mysql/Manifest index 0e623be8502c..a322ef83f132 100644 --- a/dev-perl/DBD-mysql/Manifest +++ b/dev-perl/DBD-mysql/Manifest @@ -1,3 +1,4 @@ DIST DBD-mysql-4.032.tar.gz 146476 SHA256 b8e681e719d8f2d1cecb9e8603e13483b09b56508629b079022778e7dfd7bfb6 SHA512 7e7ebaed07f0540079854294cc3ab4a4554fd0f850dd0927b2485cc985c2c9f5b70a650d971027c883cc4d8450020245656f6ff1f792a56d1a2d4b45402d73d0 WHIRLPOOL 79b94c7c85406e0f3a0469c8017594f81f6151eab3059d483c50326222fdb920d12db04a5382dbdc2862cf853e1c421fe0d7acc4a35b131a0f9d39c2d79f5d0b DIST DBD-mysql-4.036.tar.gz 146513 SHA256 5c48a823f86b8110ccb6504c6176ca248b52f56829dd4548bc39c3509f4154cf SHA512 2bfc5151b54559277f5e1949abc702eb373323998c641d199e3b2ba30f4b4ca449fc728fbd4f5ed05af53602e8f8772c2de9b1dd6db36f5af85a3c7799daab19 WHIRLPOOL db173ca8ce560bdbf4120b992c7ebb40feb73a3bd12b1a4f773a5ae7f4daadb77f65111cd3b97329470eaf1f9b7702d0a501180bb12ad622892126cb8e1fcd3d DIST DBD-mysql-4.037.tar.gz 146639 SHA256 df578acef28ed3f6aaae52dc98e6821a1407d3bfa88585255729bb0ebfed3cfc SHA512 3bda6ea18d29e32028b7eb93cd06fdbabbadafa66f982556298a68980c42a7b5236872113696e6d2df66a345049d1e63bc90ab358c8631f0cbea187780e514af WHIRLPOOL 2cd51fb258de4877010d6d5f88a27f8e251d86b311d5d7dc3b62a46e7d6ac87facaad7c2bbba6c7f306d91d106e7a713fb21c2f1b7d2934e989aa30794d38a7f +DIST DBD-mysql-4.038.tar.gz 149016 SHA256 4174bb885a5ccb34d942fc10fafb8bfcbc6d4b4311681ed90727ae1d3bd122e8 SHA512 ba9515f3fe0a5afdede86bdfdeb2b06dafe9251650e868da6d3630e593d2992b292eb8027c964f15c6cbfc80c2fb67270e13ccd013e83d0c55ac503c99d2e1c2 WHIRLPOOL 1f18c7629a5e185d60e14df339f9a6c50e1234a732d7da2a91d10b0b874bfafa0b9c87aa41132581b869def9ff2c0869a0d8a6af985a9e84f81930970e4c2982 diff --git a/dev-perl/DBI/DBI-1.636.0.ebuild b/dev-perl/DBI/DBI-1.636.0.ebuild new file mode 100644 index 000000000000..a73e925d6447 --- /dev/null +++ b/dev-perl/DBI/DBI-1.636.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=TIMB +DIST_VERSION=1.636 +DIST_EXAMPLES=("ex/*") +inherit perl-module eutils + +DESCRIPTION="Database independent interface for Perl" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="test" + +RDEPEND=" + >=dev-perl/PlRPC-0.200.0 + >=virtual/perl-Sys-Syslog-0.170.0 + virtual/perl-File-Spec + !<=dev-perl/SQL-Statement-1.330.0 +" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.480.0 + test? ( + >=virtual/perl-Test-Simple-0.900.0 + ) +" +src_test() { + perl_rm_files t/pod-coverage.t t/pod.t + perl-module_src_test +} diff --git a/dev-perl/DBI/Manifest b/dev-perl/DBI/Manifest index 5f08f1dfe6ef..4bf0d2dbd636 100644 --- a/dev-perl/DBI/Manifest +++ b/dev-perl/DBI/Manifest @@ -1 +1,2 @@ DIST DBI-1.634.tar.gz 595020 SHA256 250712f385864818abfba409420d16d9ee61f1cc73ac85159d054a5ee86d1450 SHA512 42e2b94d5e4cdcd57aaa43519fa1464a4d7132ed09426bb8cb7092b0ee57edde168105a25d02dcdeb304c6bc13c1ad97bc27b54b5f6af05eeaba011d5dab3c44 WHIRLPOOL 53b4b8caa8161b6d6fd999b039c31018060e018bc1b0e24163017e1128db1b29e2c798f8d91e64d2e3653088fd502efb440f21ae0fd8754d3d29803ea405057d +DIST DBI-1.636.tar.gz 595433 SHA256 8f7ddce97c04b4b7a000e65e5d05f679c964d62c8b02c94c1a7d815bb2dd676c SHA512 8d541ada1fabb7e82dd4f47c43edf79cc70c783ef3582a9911b13239734876aee9f27095f2526e6923d07b7ac86df48ee081af1ca6000df0559a13c75b6f6ed3 WHIRLPOOL 15f437a0288458b3405cdc6b8f08c0f89f72bc77776cbcae33eb3a25bb92b8b7b3aae6e1e12fee9aae81723425b307a0017d65186d066c374062e9c4455eaf02 diff --git a/dev-perl/DBI/metadata.xml b/dev-perl/DBI/metadata.xml index c4bb752d03b1..162537fa5d08 100644 --- a/dev-perl/DBI/metadata.xml +++ b/dev-perl/DBI/metadata.xml @@ -71,7 +71,6 @@ DBI::DBD::SqlEngine::db DBI::DBD::SqlEngine::dr DBI::DBD::SqlEngine::st - DBI::FAQ DBI::Gofer::Execute DBI::Gofer::Request DBI::Gofer::Response @@ -90,7 +89,6 @@ DBI::ProxyServer::db DBI::ProxyServer::dr DBI::ProxyServer::st - DBI::PurePerl DBI::SQL::Nano DBI::SQL::Nano::Statement_ DBI::SQL::Nano::Table_ diff --git a/dev-perl/DBICx-TestDatabase/DBICx-TestDatabase-0.50.0.ebuild b/dev-perl/DBICx-TestDatabase/DBICx-TestDatabase-0.50.0.ebuild new file mode 100644 index 000000000000..0144b365625d --- /dev/null +++ b/dev-perl/DBICx-TestDatabase/DBICx-TestDatabase-0.50.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=JROCKWAY +DIST_VERSION=0.05 +inherit perl-module + +DESCRIPTION="create a temporary database from a DBIx::Class::Schema" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="virtual/perl-File-Temp + >=dev-perl/DBD-SQLite-1.290.0 + dev-perl/SQL-Translator +" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.360.0 + test? ( + dev-perl/DBIx-Class + >=virtual/perl-Test-Simple-1.1.10 + ) +" +PERL_RM_FILES=("MYMETA.json" "MYMETA.yml") # https://rt.cpan.org/Ticket/Display.html?id=108141 diff --git a/dev-perl/DBICx-TestDatabase/Manifest b/dev-perl/DBICx-TestDatabase/Manifest index adb8f197e0fe..378161335e30 100644 --- a/dev-perl/DBICx-TestDatabase/Manifest +++ b/dev-perl/DBICx-TestDatabase/Manifest @@ -1 +1,2 @@ DIST DBICx-TestDatabase-0.04.tar.gz 20120 SHA256 5c67cbe777fd0de8f37c546d2d558398f7b64d049728015fad3a8dc73a58e97b SHA512 1f4ec9154bda073f08bd8191919ed32901a39a647d5df4e2bd2572fc2b6adbc72b25abbe5db28fe01e6da17cc81fce74ac40f4cc6f619cbe4f40ad5d74c93f1b WHIRLPOOL 417dc40ba5b4c409d64513c74ff491d5f666a8f8ae27811d1c61c34028772f63a1799850bbce68434fed7bb049d8193f43f1684858eab269c68bf323a8abd18a +DIST DBICx-TestDatabase-0.05.tar.gz 21574 SHA256 8e3bc2530b01216188c3aa65acdbd2f59c4e631f3ae085dfc439abd89f8f0acf SHA512 df17c75594998e4a17b284d5c20809019f31e5ab20dd354e2d7e159d1d76554e3c08bd1797277b9909efe8ecd10aa82b606b325e1759258521c7e3cd5995c2c1 WHIRLPOOL 4a2b81e096d2afaf50f87ba8f4f1d7f77053c788e55cfd4c08a4f0b54c1d63d96164d6b1b5fc52c0806fd81f82bfd00961ffd31c0a687507fe668bfc0e0abf90 diff --git a/dev-perl/DBIx-Class/DBIx-Class-0.82.840.ebuild b/dev-perl/DBIx-Class/DBIx-Class-0.82.840.ebuild new file mode 100644 index 000000000000..d43541058991 --- /dev/null +++ b/dev-perl/DBIx-Class/DBIx-Class-0.82.840.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=RIBASUSHI +DIST_VERSION=0.082840 +DIST_EXAMPLES=("examples/*") +inherit perl-module + +DESCRIPTION="Extensible and flexible object <-> relational mapper" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~ppc-aix" +IUSE="test admin admin_script deploy replicated" + +RDEPEND_MOOSE_BASIC=" + >=dev-perl/Moose-0.980.0 + >=dev-perl/MooseX-Types-0.210.0 +" +RDEPEND_ADMIN_BASIC=" + >=dev-perl/JSON-Any-1.220.0 + >=dev-perl/MooseX-Types-JSON-0.20.0 + >=dev-perl/MooseX-Types-Path-Class-0.50.0 + >=dev-perl/namespace-autoclean-0.90.0 +" + +# >=dev-perl/Class-DBI-Plugin-DeepAbstractSearch-0.08 +# dev-perl/Class-Trigger +# >=dev-perl/DBIx-ContextualFetch-1.03 +# >=dev-perl/Date-Simple-3.03 +# dev-perl/DateTime-Format-MySQL +# dev-perl/DateTime-Format-Pg +# dev-perl/DateTime-Format-SQLite +# dev-perl/DateTime-Format-Strptime +# dev-perl/Devel-Cycle +# dev-perl/Time-Piece-MySQL + +RDEPEND=" + admin? ( + ${RDEPEND_MOOSE_BASIC} + ${RDEPEND_ADMIN_BASIC} + ) + admin_script? ( + ${RDEPEND_MOOSE_BASIC} + ${RDEPEND_ADMIN_BASIC} + >=dev-perl/Getopt-Long-Descriptive-0.81.0 + >=dev-perl/Text-CSV-1.160.0 + ) + deploy? ( + >=dev-perl/SQL-Translator-0.110.60 + ) + replicated? ( + ${RDEPEND_MOOSE_BASIC} + >=dev-perl/Hash-Merge-0.120.0 + ) + >=dev-perl/Class-Accessor-Grouped-0.100.120 + >=dev-perl/Class-C3-Componentised-1.0.900 + >=dev-perl/Class-Inspector-1.240.0 + >=dev-perl/Config-Any-0.200.0 + >=dev-perl/Context-Preserve-0.10.0 + >=dev-perl/Data-Dumper-Concise-2.20.0 + >=dev-perl/Data-Page-2.10.0 + >=dev-perl/DBI-1.570.0 + >=dev-perl/Devel-GlobalDestruction-0.90.0 + virtual/perl-File-Path + >=dev-perl/Hash-Merge-0.120.0 + >=dev-perl/MRO-Compat-0.120.0 + >=dev-perl/Math-Base36-0.70.0 + >=virtual/perl-Math-BigInt-1.80 + >=dev-perl/Module-Find-0.70.0 + >=dev-perl/Moo-2.0.0 + >=dev-perl/Path-Class-0.180.0 + >=dev-perl/SQL-Abstract-1.810.0 + >=virtual/perl-Scalar-List-Utils-1.160.0 + >=dev-perl/Scope-Guard-0.30.0 + >=dev-perl/Sub-Name-0.40.0 + >=virtual/perl-Text-Balanced-2.0.0 + >=dev-perl/Try-Tiny-0.70.0 + >=dev-perl/namespace-clean-0.240.0 +" +DEPEND="${RDEPEND} + >=virtual/perl-ExtUtils-MakeMaker-6.590.0 + test? ( + >=dev-perl/DBD-SQLite-1.290.0 + >=virtual/perl-File-Temp-0.220.0 + >=dev-perl/Package-Stash-0.280.0 + >=dev-perl/Test-Deep-0.101.0 + >=dev-perl/Test-Exception-0.310.0 + >=virtual/perl-Test-Simple-0.940.0 + >=dev-perl/Test-Warn-0.210.0 + )" diff --git a/dev-perl/DBIx-Class/Manifest b/dev-perl/DBIx-Class/Manifest index c85af5b2321f..82988dbd9780 100644 --- a/dev-perl/DBIx-Class/Manifest +++ b/dev-perl/DBIx-Class/Manifest @@ -1 +1,2 @@ DIST DBIx-Class-0.08270.tar.gz 808377 SHA256 6deccac1a195429324c811a31f4b24515ddf7ee2893d1c299852cac6e782e3c5 SHA512 bd9a52e933e57266a81ea25330672af254ed669be47acf8164426a9a803b6a4c81ab0a6a663f5b13ade0ff8c749bf5c68fa114b0c89b236e7a8d53beeff0bc10 WHIRLPOOL 07047213399215841e4c49cd2f9053d3e1a07b915b959355495d6a2ecaf9aa44f48a6540bc112306c7a21096f99c2afb617517e2405334991533b4c10385cbc3 +DIST DBIx-Class-0.082840.tar.gz 860243 SHA256 4049afd175e315ebcab945b19030aec40bcec46cc5611b0286a5a267ca7181ef SHA512 0ae0c724c57cd2b62b9d711633bfc2ba4320c15f6e9d0253381c9ffae495355e32888ec87d6a85c85000d434cedb51789f4b7807da157de8b08723333b66a0d2 WHIRLPOOL 01b1d19b2ae5fcc5c665906d55c950b0bd18835e8d5f97cc85ac4ea98bf7916b411295b714c16a317ac487a6f2ae1bab0ec33ef77d9f2a9e5d8814d8f35f2f62 diff --git a/dev-perl/DBIx-Class/metadata.xml b/dev-perl/DBIx-Class/metadata.xml index e390f922af1f..1f83f98f50af 100644 --- a/dev-perl/DBIx-Class/metadata.xml +++ b/dev-perl/DBIx-Class/metadata.xml @@ -26,6 +26,9 @@ DBIx::Class::AccessorGroup DBIx::Class::Admin DBIx::Class::CDBICompat + DBIx::Class::CDBICompat::Iterator + DBIx::Class::CDBICompat::SQLTransformer + DBIx::Class::CDBICompat::Tied::ColumnValue DBIx::Class::Core DBIx::Class::Cursor DBIx::Class::DB diff --git a/dev-perl/Glib-Object-Introspection/Glib-Object-Introspection-0.40.0.ebuild b/dev-perl/Glib-Object-Introspection/Glib-Object-Introspection-0.40.0.ebuild new file mode 100644 index 000000000000..098e06451df1 --- /dev/null +++ b/dev-perl/Glib-Object-Introspection/Glib-Object-Introspection-0.40.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DIST_AUTHOR=XAOC +DIST_VERSION=0.040 +inherit perl-module + +DESCRIPTION="Dynamically create Perl language bindings" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + >=dev-perl/glib-perl-1.320.0 + >=dev-libs/gobject-introspection-1.0 + >=dev-libs/libffi-3.0.0 + >=dev-libs/glib-2.0.0 +" +DEPEND=" + >=dev-perl/ExtUtils-Depends-0.300.0 + >=dev-perl/extutils-pkgconfig-1.0.0 + ${RDEPEND} +" diff --git a/dev-perl/Glib-Object-Introspection/Manifest b/dev-perl/Glib-Object-Introspection/Manifest new file mode 100644 index 000000000000..2c98ef413126 --- /dev/null +++ b/dev-perl/Glib-Object-Introspection/Manifest @@ -0,0 +1 @@ +DIST Glib-Object-Introspection-0.040.tar.gz 79009 SHA256 515d6af0e085c9cbed3f1a1215d1fae46dac31a8459dc950f896f368df1488bb SHA512 bd5e4db8b6e331fb9641e75a50a95fff1a823597a8e4c4e9f99a81e7aa2ee30d93856c56ecfea3785b8719dba6590169bcd006ea06d97170889091e6b9480e9f WHIRLPOOL 875399d816076495a667df589d1dcfaa0486caab9990389d4af75445ee536c59dfb6658050ce4db65509cda8e5df8285de8b2b2a1f5dc729c6ddc9ca3f99bd18 diff --git a/dev-perl/Glib-Object-Introspection/metadata.xml b/dev-perl/Glib-Object-Introspection/metadata.xml new file mode 100644 index 000000000000..b05808dbb5e1 --- /dev/null +++ b/dev-perl/Glib-Object-Introspection/metadata.xml @@ -0,0 +1,12 @@ + + + + + perl@gentoo.org + Gentoo Perl Project + + + Glib-Object-Introspection + Glib::Object::Introspection + + diff --git a/dev-python/Babel/Babel-2.3.4.ebuild b/dev-python/Babel/Babel-2.3.4.ebuild index 316a8a6f4ec1..45edf6a28a4a 100644 --- a/dev-python/Babel/Babel-2.3.4.ebuild +++ b/dev-python/Babel/Babel-2.3.4.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc test" RDEPEND="dev-python/pytz[${PYTHON_USEDEP}] diff --git a/dev-python/alembic/alembic-0.8.7.ebuild b/dev-python/alembic/alembic-0.8.7.ebuild index 1b363c9d38c2..297f334edd07 100644 --- a/dev-python/alembic/alembic-0.8.7.ebuild +++ b/dev-python/alembic/alembic-0.8.7.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test doc" # requires.txt cites 'SQLAlchemy>=0.7.3' which is really both old and silly diff --git a/dev-python/aodhclient/aodhclient-0.6.0.ebuild b/dev-python/aodhclient/aodhclient-0.6.0.ebuild index a52e007cbde0..9eae4ad552d8 100644 --- a/dev-python/aodhclient/aodhclient-0.6.0.ebuild +++ b/dev-python/aodhclient/aodhclient-0.6.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/bandit/bandit-1.1.0.ebuild b/dev-python/bandit/bandit-1.1.0.ebuild index 723b7be190c4..6a81f8f07584 100644 --- a/dev-python/bandit/bandit-1.1.0.ebuild +++ b/dev-python/bandit/bandit-1.1.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=">=dev-python/pbr-1.8.0[${PYTHON_USEDEP}]" diff --git a/dev-python/bitstring/Manifest b/dev-python/bitstring/Manifest index 547af6618824..1347696dfe19 100644 --- a/dev-python/bitstring/Manifest +++ b/dev-python/bitstring/Manifest @@ -1,2 +1 @@ -DIST bitstring-3.1.1.zip 620317 SHA256 52de6257e95f923284d4c1fdce8287df65a2c677f26d73d288ed06188586ab6f SHA512 856fca0d16929e1fd6e78e9b5fe63fbbabe35bd0c49ef188b24ee0585feea36a485506a2fb8d87e1515ed4162d83c70faa5af59abfe95cef212c6ebaf9fa90d2 WHIRLPOOL 305521c110601f1145344d2423bd91f901c58f08759b4a7c0865cc342d12d9dc4f633e81fc260032e3c41aa73472aa452de476dd418cdb5051957908c7078d47 DIST bitstring-3.1.5.tar.gz 761527 SHA256 b769620c1b52d6c1548c6c4f055613f4eee3120ed8a5cff4ba4ffbbc8a582286 SHA512 2c98768c98fc5ab99eeb4ac089ec66f091949e5e4f326563b1b480981ac2aa40258fe0065809eed9c08a71fae3cf09254a8a2465e86635db5287c0d2f241d75f WHIRLPOOL c059af1f54e46cc92acfbc40ef3e7461f6bd55739e552a8cc58dabe3bbd0140ad8d1084cd85540aebdfaf3fe68c98471679bc6db684190740cd55931285241d2 diff --git a/dev-python/bitstring/bitstring-3.1.1.ebuild b/dev-python/bitstring/bitstring-3.1.1.ebuild deleted file mode 100644 index 6681e9c227a4..000000000000 --- a/dev-python/bitstring/bitstring-3.1.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} ) -inherit distutils-r1 - -DESCRIPTION="A pure Python module for creation and analysis of binary data" -HOMEPAGE="https://python-bitstring.googlecode.com/" -SRC_URI="https://python-bitstring.googlecode.com/files/${P}.zip" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="test" -DEPEND="app-arch/unzip" -RDEPEND="" - -python_test() { - if [[ ${EPYTHON} == python2.6 ]]; then - local runner=( unit2.py ) - else - local runner=( "${PYTHON}" -m unittest ) - fi - pushd test > /dev/null || die - "${runner[@]}" discover || die "Testing failed with ${EPYTHON}" - popd test > /dev/null || die -} diff --git a/dev-python/bitstring/bitstring-3.1.5.ebuild b/dev-python/bitstring/bitstring-3.1.5.ebuild index aa4812ed96e8..5d034c250f5e 100644 --- a/dev-python/bitstring/bitstring-3.1.5.ebuild +++ b/dev-python/bitstring/bitstring-3.1.5.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/scott-griffiths/${PN}/archive/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" S=${WORKDIR}/${PN}-${P} diff --git a/dev-python/cliff/cliff-2.2.0.ebuild b/dev-python/cliff/cliff-2.2.0.ebuild index 210240577689..046066185e33 100644 --- a/dev-python/cliff/cliff-2.2.0.ebuild +++ b/dev-python/cliff/cliff-2.2.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="doc test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/croniter/croniter-0.3.11.ebuild b/dev-python/croniter/croniter-0.3.11.ebuild index b53b942d7882..837cb0c000fb 100644 --- a/dev-python/croniter/croniter-0.3.11.ebuild +++ b/dev-python/croniter/croniter-0.3.11.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/cryptography-vectors/cryptography-vectors-1.5.2.ebuild b/dev-python/cryptography-vectors/cryptography-vectors-1.5.2.ebuild index 20efc8e9828d..75a6e95469de 100644 --- a/dev-python/cryptography-vectors/cryptography-vectors-1.5.2.ebuild +++ b/dev-python/cryptography-vectors/cryptography-vectors-1.5.2.ebuild @@ -17,7 +17,7 @@ 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" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/cryptography/cryptography-1.5.2.ebuild b/dev-python/cryptography/cryptography-1.5.2.ebuild index e60cfd9c6801..25278c1f6427 100644 --- a/dev-python/cryptography/cryptography-1.5.2.ebuild +++ b/dev-python/cryptography/cryptography-1.5.2.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${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 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux" IUSE="libressl test" RDEPEND=" diff --git a/dev-python/cursive/cursive-0.1.1.ebuild b/dev-python/cursive/cursive-0.1.1.ebuild index 05b5cad14bf2..773dfb42dbf3 100644 --- a/dev-python/cursive/cursive-0.1.1.ebuild +++ b/dev-python/cursive/cursive-0.1.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/dogpile-cache/dogpile-cache-0.6.2.ebuild b/dev-python/dogpile-cache/dogpile-cache-0.6.2.ebuild index e3ddf056f9aa..d81a4c9fa74a 100644 --- a/dev-python/dogpile-cache/dogpile-cache-0.6.2.ebuild +++ b/dev-python/dogpile-cache/dogpile-cache-0.6.2.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/dogpile.cache-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" RDEPEND="" diff --git a/dev-python/fixtures/fixtures-3.0.0.ebuild b/dev-python/fixtures/fixtures-3.0.0.ebuild index fcd4444cb7e8..07d098b290a9 100644 --- a/dev-python/fixtures/fixtures-3.0.0.ebuild +++ b/dev-python/fixtures/fixtures-3.0.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${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 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux" IUSE="test" # nose not listed but provides coverage output of tests diff --git a/dev-python/flask-admin/flask-admin-1.4.2-r1.ebuild b/dev-python/flask-admin/flask-admin-1.4.2-r1.ebuild new file mode 100644 index 000000000000..4371358b01c4 --- /dev/null +++ b/dev-python/flask-admin/flask-admin-1.4.2-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 + +#RESTRICT="test" # we're still missing some of the dependencies + +MY_PN="Flask-Admin" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Simple and extensible admin interface framework for Flask" +HOMEPAGE="https://pypi.python.org/pypi/Flask-Admin" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples test" + +RDEPEND=" + >=dev-python/flask-0.7[${PYTHON_USEDEP}] + dev-python/wtforms[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/flask-wtf[${PYTHON_USEDEP}] + dev-python/peewee[${PYTHON_USEDEP}] + dev-python/wtf-peewee[${PYTHON_USEDEP}] + dev-python/flask-pymongo[${PYTHON_USEDEP}] + dev-python/flask-mongoengine[${PYTHON_USEDEP}] + dev-python/flask-sqlalchemy[${PYTHON_USEDEP}] + dev-python/flask-babelex[${PYTHON_USEDEP}] + dev-python/shapely[${PYTHON_USEDEP}] + dev-python/geoalchemy2[${PYTHON_USEDEP}] + >=dev-python/pillow-2.9[${PYTHON_USEDEP},jpeg] + )" + +S="${WORKDIR}/${MY_P}" + +python_prepare_all() { + sed \ + -e 's:find_packages():find_packages(exclude=["*.examples", "*.examples.*", "examples.*", "examples"]):g' \ + -i setup.py || die + distutils-r1_python_prepare_all +} + +python_test() { + nosetests || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use examples && dodoc -r examples + distutils-r1_python_install_all +} diff --git a/dev-python/flask-babelex/Manifest b/dev-python/flask-babelex/Manifest new file mode 100644 index 000000000000..38c0a13e2dd5 --- /dev/null +++ b/dev-python/flask-babelex/Manifest @@ -0,0 +1 @@ +DIST Flask-BabelEx-0.9.3.tar.gz 41040 SHA256 cf79cdedb5ce860166120136b0e059e9d97b8df07a3bc2411f6243de04b754b4 SHA512 c759f990c4c96dab7cf2fbe83c1ac6dde4606adfd2f5d03ed293578bec621170be319b71fc3e38c1910d2edaba3e4394f32ede3754940e315abd917beaf3982c WHIRLPOOL 73566e75f7fa178598752a4778824b641d12c89de1f044141566cff1f92326ae1d1bfebad8b69c75507e11a622127d24e645122a09cea9856614456be72ac045 diff --git a/dev-python/flask-babelex/files/flask-babelex-0.9.3-tests-fix.patch b/dev-python/flask-babelex/files/flask-babelex-0.9.3-tests-fix.patch new file mode 100644 index 000000000000..5b11f1ae6e46 --- /dev/null +++ b/dev-python/flask-babelex/files/flask-babelex-0.9.3-tests-fix.patch @@ -0,0 +1,41 @@ +From d56d2c9a42c291a3592f3d7977b4dcca9ac755b3 Mon Sep 17 00:00:00 2001 +From: Jeffrey Kyllo +Date: Mon, 25 Jan 2016 14:00:04 +0000 +Subject: [PATCH] Updated DateFormattingTestCase with new datetime formats from + babel. + +--- + tests/tests.py | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/tests/tests.py b/tests/tests.py +index 63c2ecf..2df68ee 100644 +--- a/tests/tests.py ++++ b/tests/tests.py +@@ -35,7 +35,7 @@ def test_basics(self): + with app.test_request_context(): + app.config['BABEL_DEFAULT_LOCALE'] = 'de_DE' + assert babel.format_datetime(d, 'long') == \ +- '12. April 2010 15:46:00 MESZ' ++ '12. April 2010 um 15:46:00 MESZ' + + def test_init_app(self): + b = babel.Babel() +@@ -57,7 +57,7 @@ def test_init_app(self): + with app.test_request_context(): + app.config['BABEL_DEFAULT_LOCALE'] = 'de_DE' + assert babel.format_datetime(d, 'long') == \ +- '12. April 2010 15:46:00 MESZ' ++ '12. April 2010 um 15:46:00 MESZ' + + def test_custom_formats(self): + app = flask.Flask(__name__) +@@ -95,7 +95,7 @@ def select_timezone(): + the_timezone = 'Europe/Vienna' + + with app.test_request_context(): +- assert babel.format_datetime(d) == '12.04.2010 15:46:00' ++ assert babel.format_datetime(d) == '12.04.2010, 15:46:00' + + def test_refreshing(self): + app = flask.Flask(__name__) diff --git a/dev-python/flask-babelex/flask-babelex-0.9.3.ebuild b/dev-python/flask-babelex/flask-babelex-0.9.3.ebuild new file mode 100644 index 000000000000..2a3b9ac45609 --- /dev/null +++ b/dev-python/flask-babelex/flask-babelex-0.9.3.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +MY_PN="Flask-BabelEx" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Adds i18n/l10n support to Flask applications" +HOMEPAGE="http://github.com/mrjoes/flask-babelex https://pypi.python.org/pypi/Flask-BabelEx" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND="dev-python/flask[${PYTHON_USEDEP}] + >=dev-python/Babel-1[${PYTHON_USEDEP}] + >=dev-python/speaklater-1.2[${PYTHON_USEDEP}] + >=dev-python/jinja-2.5[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/flask-sphinx-themes[${PYTHON_USEDEP}] + )" + +PATCHES=( "${FILESDIR}/${P}-tests-fix.patch" ) + +S="${WORKDIR}/${MY_P}" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + cd tests || die + "${PYTHON}" tests.py || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +} diff --git a/kde-base/kwin/metadata.xml b/dev-python/flask-babelex/metadata.xml similarity index 56% rename from kde-base/kwin/metadata.xml rename to dev-python/flask-babelex/metadata.xml index 62b500d604bf..1f4e3c30751f 100644 --- a/kde-base/kwin/metadata.xml +++ b/dev-python/flask-babelex/metadata.xml @@ -2,10 +2,10 @@ - kde@gentoo.org - Gentoo KDE Project + python@gentoo.org + Python - - Enable support for GLES. - + + Flask-BabelEx + diff --git a/dev-python/flask-migrate/Manifest b/dev-python/flask-migrate/Manifest index 736684b67272..a6fb76f87185 100644 --- a/dev-python/flask-migrate/Manifest +++ b/dev-python/flask-migrate/Manifest @@ -1,6 +1,3 @@ -DIST Flask-Migrate-1.2.0.tar.gz 7288 SHA256 37e548cd0c497194243c8c2e2c6296e72ac7d65ba4ad1fd3d8cd5848af5fed2a SHA512 56e9223be0c30179dd0f117b60650e484528650da24acf852c52c1c7f0554d83d6f2ba35191c02cc0cb72091dee48b0888183b560f439d42fa09e0f86524f6b9 WHIRLPOOL 869f37262fde54e69a245d725be80e773d635397bd8afc112f264ef76939f34a81bdee8bf4ef510399b604552d9ad2fc79bcffcb975cf7070157cbebce639a20 DIST Flask-Migrate-1.3.0.tar.gz 8400 SHA256 8d142bcae64d45eda6efab821283841380749653e49030aea59f0059071d134a SHA512 dbec7fee9027f9446c57a3d24b171a59dcde1e7023e20efc7eb578f41b7c5228a6704edf2cf7afec5e2fc5f8c37a76abeae5a1b9cf0d95c132e7e834f31f7b14 WHIRLPOOL f8c43f3427cbd6cc72e39cfb4f4329f9e826b2b71ca3310d6831121c5a6c9f7915d3a5308f885cb27ad2d3d77197d411bda026d9636c25bbc122069c41a011f6 -DIST Flask-Migrate-1.3.1.tar.gz 8608 SHA256 d16342313936b383f30e7bc1863bd38686ac9f187a50df4161014f0207bf290b SHA512 3ed504811560e7af509187fc6850204244dc295a6d7d43505e98363af2ea282fabd2cfc2b54d5f8f5d847a8569c3a4e3fe28a7996bbb28ed829975c4014da324 WHIRLPOOL 09fcc61de8654a257257959af90917afb83b5fc9ffaee1f131eeaf557797e048c8ea740875b8c0cd7de8f10c48b5c5f2bcd33047f6f73b730d001432c1f32da3 -DIST Flask-Migrate-1.4.0.zip 12820 SHA256 e63b1aafc7bec62a63ccb8e0f5856a271ab986a044aa81a022e0c68243439258 SHA512 ca9a94fd18d302f1448c0cc188749a4585cb108efdd02ef5a51d295207a48d54540818734dcc831a068d968a1cf166d45f1815b4f0e44f4fe7455b982293a3da WHIRLPOOL f1dd52a9af10ac6cb4598f544a151e15eba51ceb5b3c742f66299f0e4870a96ce571ca59dc52e01836721add741bf32d2959377804b0f09a14ab4ef76361aaaa -DIST Flask-Migrate-1.7.0.tar.gz 12895 SHA256 fb74af64d861932e0c0c427813ff87cd353a2a54b0b285c7dabdf62495dda799 SHA512 a6f5bdfe6d0fac166dae852228b7b96c7951df61e21ae503a35f6535c06c31f552afddf95988159b53cf0389b14bd3a3920b5994ce2ef01718906fd8b2647f35 WHIRLPOOL 96c4269409300c43d7c41573c411375000754a2264a9cd5e756bddddef8deed0eaa03d61db04d7615a6f2bfc177563dd2e92c6d302b50374a765ada55ecea0f3 DIST Flask-Migrate-1.8.0.tar.gz 9492 SHA256 e85b06a96a25a5d917cff106386a4c1fe853a4bd2d0df31c3332f2a4788d9e5c SHA512 c2dfd1fe6a8db6ba7998b0f23a274c74ad2db4d886f2ef255f28978a37fc17620de36182b45ef69f26312ef3f0589ea86b474af6f91e063dbce7870dcbdcbff8 WHIRLPOOL 8e1dfc7ff15e54f0f0eddfe0dd2591708288a7fe6b1f4259f46a6c13f777f51378a9885e14faacf3ad442949c898630468b81d434be2e76e8bd015d6ebfc4f4d +DIST Flask-Migrate-2.0.0.tar.gz 10774 SHA256 c621f5ea230bdef22bed47f4905bd8979446e1c7f9d61ec1668b2c49549787d7 SHA512 7a4118ba5089bb9f7660ec64407793c5bf9436ac21dc5d8f406294b08bade175f385e2e5eab35f33480df730aee6b580cd181f2a970b2cd7c9072dec4e7bb55e WHIRLPOOL 9df589dc9266148833e1bf15b533678b722e0d62fb9cd53cb4681d79585979854e39324a960357a9732c74d05a5f2998d833bfb32ef4cd16dfae80c0555faf6c diff --git a/dev-python/flask-migrate/flask-migrate-1.2.0.ebuild b/dev-python/flask-migrate/flask-migrate-1.2.0.ebuild deleted file mode 100644 index 2211f269fe3a..000000000000 --- a/dev-python/flask-migrate/flask-migrate-1.2.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -MY_PN="Flask-Migrate" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="SQLAlchemy database migrations for Flask applications using Alembic" -HOMEPAGE="https://pypi.python.org/pypi/Flask-Migrate" -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND="dev-python/flask[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/alembic[${PYTHON_USEDEP}] - dev-python/flask-sqlalchemy[${PYTHON_USEDEP}] - dev-python/flask-script[${PYTHON_USEDEP}] - " - -S="${WORKDIR}/${MY_P}" - -python_test() { - nosetests || die "Testing failed with ${EPYTHON}" -} diff --git a/dev-python/flask-migrate/flask-migrate-1.3.1.ebuild b/dev-python/flask-migrate/flask-migrate-1.3.1.ebuild deleted file mode 100644 index 2211f269fe3a..000000000000 --- a/dev-python/flask-migrate/flask-migrate-1.3.1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -MY_PN="Flask-Migrate" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="SQLAlchemy database migrations for Flask applications using Alembic" -HOMEPAGE="https://pypi.python.org/pypi/Flask-Migrate" -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND="dev-python/flask[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/alembic[${PYTHON_USEDEP}] - dev-python/flask-sqlalchemy[${PYTHON_USEDEP}] - dev-python/flask-script[${PYTHON_USEDEP}] - " - -S="${WORKDIR}/${MY_P}" - -python_test() { - nosetests || die "Testing failed with ${EPYTHON}" -} diff --git a/dev-python/flask-migrate/flask-migrate-1.4.0.ebuild b/dev-python/flask-migrate/flask-migrate-1.4.0.ebuild deleted file mode 100644 index 0dc6de007605..000000000000 --- a/dev-python/flask-migrate/flask-migrate-1.4.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) - -inherit distutils-r1 - -MY_PN="Flask-Migrate" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="SQLAlchemy database migrations for Flask applications using Alembic" -HOMEPAGE="https://pypi.python.org/pypi/Flask-Migrate" -SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.zip" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND="dev-python/flask[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/alembic[${PYTHON_USEDEP}] - dev-python/flask-sqlalchemy[${PYTHON_USEDEP}] - dev-python/flask-script[${PYTHON_USEDEP}] - " - -S="${WORKDIR}/${MY_P}" - -python_test() { - nosetests || die "Testing failed with ${EPYTHON}" -} diff --git a/dev-python/flask-migrate/flask-migrate-1.7.0.ebuild b/dev-python/flask-migrate/flask-migrate-2.0.0.ebuild similarity index 61% rename from dev-python/flask-migrate/flask-migrate-1.7.0.ebuild rename to dev-python/flask-migrate/flask-migrate-2.0.0.ebuild index 2211f269fe3a..a3acf0938c9f 100644 --- a/dev-python/flask-migrate/flask-migrate-1.7.0.ebuild +++ b/dev-python/flask-migrate/flask-migrate-2.0.0.ebuild @@ -2,8 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 -PYTHON_COMPAT=( python2_7 ) +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} ) inherit distutils-r1 @@ -19,16 +19,16 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" -RDEPEND="dev-python/flask[${PYTHON_USEDEP}]" +RDEPEND=">=dev-python/flask-0.9[${PYTHON_USEDEP}] + >=dev-python/alembic-0.6[${PYTHON_USEDEP}] + >=dev-python/flask-sqlalchemy-1.0[${PYTHON_USEDEP}] + >=dev-python/flask-script-0.6[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] - dev-python/alembic[${PYTHON_USEDEP}] - dev-python/flask-sqlalchemy[${PYTHON_USEDEP}] - dev-python/flask-script[${PYTHON_USEDEP}] - " + test? ( dev-python/nose[${PYTHON_USEDEP}] )" S="${WORKDIR}/${MY_P}" python_test() { - nosetests || die "Testing failed with ${EPYTHON}" + nosetests -v || die "Testing failed with ${EPYTHON}" } diff --git a/dev-python/flask-mongoengine/Manifest b/dev-python/flask-mongoengine/Manifest index 6cf7d424d288..6479e2fe67dc 100644 --- a/dev-python/flask-mongoengine/Manifest +++ b/dev-python/flask-mongoengine/Manifest @@ -1,2 +1,3 @@ DIST flask-mongoengine-0.7.0.tar.gz 103676 SHA256 e5031d1f812181699b10fec76d7c9c6633f19f8b686dcee48371e9216884f2b4 SHA512 3a9ce923b5d391e4fbdacc87d32e6cd8e0ada592c9fce585cf6dc38b8c116966cd70c83c2f2b77f580348722351c129ef38d7788f9ae2bd27d043de0d5487493 WHIRLPOOL 20583285ec18871b750c045a1dc911d6c836b152a27816b81805f12808dd68450236139245fd6ea07c9239544a7a62dafd358feaf13304910b6c6301f5f32567 DIST flask-mongoengine-0.7.1.tar.gz 103947 SHA256 8ab895611a92b1e16f8467ddda0d4e8addee0ccf478f61d161ff58417caa06f2 SHA512 5da5c0a9794a108c2ff3adc3a6a415216841f060db54483b96421769879e7961c1137b787ad2ebd0ceb80a2187e4c7eaaecca4cb57c517e43aaf4845ac618c99 WHIRLPOOL afb4cf0a02678d1f4cfaa9c6d35d6086cf2e1f49a4b739348463173175f5928c7bacb2eecd3257bb0782021a5276761c187377ca3f2ec80560cdd086a86aa5c9 +DIST flask-mongoengine-0.8.tar.gz 115524 SHA256 24b30f3cfce95a53f0ad7ce14aa5eb24db7a6db756e1549056fb2b4b397b045e SHA512 fe64765f5ce5e9d9b6919b29bae5ed0faff98e42f2ae99283c8492e5c82def0ec90afabade92dd8ee7805ca65dd6f529b266c8518a95328422f57d5ab18283e3 WHIRLPOOL c38f5c00de4f8bbebe045a1b7d4ef7f9460209c4f2eac17e0a00dc7b86f1550a5e6f3a601ee00f9f107d05345e07b195ece63198bd31ecaad72dacd4e38acb88 diff --git a/dev-python/flask-mongoengine/flask-mongoengine-0.8.ebuild b/dev-python/flask-mongoengine/flask-mongoengine-0.8.ebuild new file mode 100644 index 000000000000..a236962f5f1f --- /dev/null +++ b/dev-python/flask-mongoengine/flask-mongoengine-0.8.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +RESTRICT="test" # requires running MongoDB server + +DESCRIPTION="Flask support for MongoDB and with WTF model forms" +HOMEPAGE="https://pypi.python.org/pypi/flask-mongoengine/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +RDEPEND=">=dev-python/flask-0.8[${PYTHON_USEDEP}] + >=dev-python/mongoengine-0.7.10[${PYTHON_USEDEP}] + dev-python/flask-wtf[${PYTHON_USEDEP}]" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] ) + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +python_prepare_all() { + # fix distutils sandbox violation due to missing test-deps in normal build + sed -i '/test_requirements/d' setup.py || die + distutils-r1_python_prepare_all +} + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + nosetests || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/flask-pymongo/Manifest b/dev-python/flask-pymongo/Manifest index b4f8dbd61700..01e8ab1d6617 100644 --- a/dev-python/flask-pymongo/Manifest +++ b/dev-python/flask-pymongo/Manifest @@ -1,2 +1,3 @@ DIST flask-pymongo-0.3.0.tar.gz 21019 SHA256 b1ab5c38f43a8f7ae3e981fb8e0a5d58fb47b066ba0c1b647738e68690f62473 SHA512 669e2c2df4c3378aec0a9f401120ceee2bfb0452a093beca6e7adaffd764bfe0a90a5e5b82d0945933693c3c179f3a0bf56cd4a2e03ab0522065eb650550ff44 WHIRLPOOL 4563628d4d77dbcc9253520636875774655865ba9510b955afe5509da3e9e872b97355649b61ad59e4693c018216f82b7757129d32c112cb95212bfa0c703c23 DIST flask-pymongo-0.3.1.tar.gz 21712 SHA256 21f807bd6c46d16203a9bb056a01516d6bd437a8a34b28ae38f345c3d16e9dc9 SHA512 cae90061b25187ebdd321af584fc7d6a8497c373dcde63641c60e6c77c985740f613043fd9efffe011486178cd3b7ff8b770ab9ccd5a37cadbfd9fd2ddbae4b5 WHIRLPOOL 8303233be2fff47fcccf363bdbebd29522fac2e00dc17dd90af275a7be77edb325772cb21c3e2cb4d7fca7eb64176c9b231c09b7c8af5a7dadc41279a5398d36 +DIST flask-pymongo-0.4.1.tar.gz 22323 SHA256 0187dcbdf6a724556b3a88cc58b7c425449b0524568288894ac1c18f3762a73e SHA512 2d64ae430ee9592204462b5b81b4fe2d0f5fa8e17e03e1b139acf28b11330d7ef990108f1d49e3b968618acaa2ffdd4e26901b1e03b85f8f25ef05d59f5d6d83 WHIRLPOOL efc38195a1ea321ab5392b8b0c13c0327fcba4ebb163d87ea01245f60c59b8f2473b9c7bd349e47c9535d5089ac9934ca0b2135b54b2a7045cc5770eda2eadf9 diff --git a/dev-python/flask-pymongo/flask-pymongo-0.4.1.ebuild b/dev-python/flask-pymongo/flask-pymongo-0.4.1.ebuild new file mode 100644 index 000000000000..6c15ccf6c0bf --- /dev/null +++ b/dev-python/flask-pymongo/flask-pymongo-0.4.1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +DESCRIPTION="PyMongo support for Flask" +HOMEPAGE="https://pypi.python.org/pypi/Flask-PyMongo" +SRC_URI="https://github.com/dcrosta/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +RESTRICT="test" +# Testsuite appears to require a running local instance of a pymongo server + +RDEPEND=">=dev-python/flask-0.8[${PYTHON_USEDEP}] + >=dev-python/pymongo-2.4[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +PATCHES=( "${FILESDIR}"/docbuild.patch ) + +python_prepare_all() { + # Req'd to avoid file collisions + sed -e s":find_packages():find_packages(exclude=['tests']):" -i setup.py || die + + distutils-r1_python_prepare_all +} + +python_compile_all() { + use doc && emake -C docs html +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + use examples && dodoc -r examples + distutils-r1_python_install_all +} diff --git a/dev-python/flask-script/flask-script-2.0.5-r1.ebuild b/dev-python/flask-script/flask-script-2.0.5-r1.ebuild new file mode 100644 index 000000000000..ca9038816fba --- /dev/null +++ b/dev-python/flask-script/flask-script-2.0.5-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy ) + +inherit distutils-r1 + +MY_PN="Flask-Script" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Flask support for writing external scripts" +HOMEPAGE="http://packages.python.org/Flask-Script/ https://pypi.python.org/pypi/Flask-Script" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc test" + +RDEPEND=">=dev-python/flask-0.10.1-r1[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" + +python_compile_all() { + use doc && emake -C docs html +} + +python_test() { + py.test tests.py || die "Tests failed under ${EPYTHON}" +} + +python_install_all() { + use doc && local HTML_DOCS=( docs/_build/html/. ) + distutils-r1_python_install_all +} diff --git a/dev-python/flask-security/flask-security-1.7.5-r1.ebuild b/dev-python/flask-security/flask-security-1.7.5-r1.ebuild new file mode 100644 index 000000000000..09b5e6b22ed8 --- /dev/null +++ b/dev-python/flask-security/flask-security-1.7.5-r1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +MY_PN="Flask-Security" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Simple security for Flask apps" +HOMEPAGE="http://pythonhosted.org/Flask-Security/ https://pypi.python.org/pypi/Flask-Security" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +# tests are foobar +RESTRICT="test" + +RDEPEND=">=dev-python/flask-0.9[${PYTHON_USEDEP}] + >=dev-python/itsdangerous-0.17[${PYTHON_USEDEP}] + >=dev-python/passlib-1.6.1[${PYTHON_USEDEP}] + >=dev-python/flask-login-0.1.3[${PYTHON_USEDEP}] + >=dev-python/flask-mail-0.7.3[${PYTHON_USEDEP}] + >=dev-python/flask-wtf-0.8[${PYTHON_USEDEP}] + >=dev-python/flask-principal-0.3.3[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/flask-sqlalchemy[${PYTHON_USEDEP}] + dev-python/flask-mongoengine[${PYTHON_USEDEP}] + dev-python/bcrypt[${PYTHON_USEDEP}] + dev-python/simplejson[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/flask-peewee[${PYTHON_USEDEP}]' 'python2*') + )" + +S="${WORKDIR}/${MY_P}" + +python_test() { + nosetests -v || die "Testing failed with ${EPYTHON}" +} diff --git a/dev-python/flask-sphinx-themes/Manifest b/dev-python/flask-sphinx-themes/Manifest new file mode 100644 index 000000000000..27497f3b9e32 --- /dev/null +++ b/dev-python/flask-sphinx-themes/Manifest @@ -0,0 +1 @@ +DIST Flask-Sphinx-Themes-1.0.1.tar.gz 8150 SHA256 a83eebca95fc5b8adbae4e65926961912edd52a1b6a422c0301a750d1ae31747 SHA512 65ab8dcc75697fc61e6f6f78ec497ece99eba19c48e778f79e3883079cd0d5e42a2e0f1cf3d656dedf92423d1758caf6fd2279907dd87b50f3a79700f66c5e65 WHIRLPOOL 8d918d348c72e5ce4c47c50a0652299624a71cae7d1f7a3740360101269c04c5757682f7237b21b2be04260f606b1157f8f96d55b364f4c617e2c05a3da24226 diff --git a/dev-python/flask-sphinx-themes/files/flask-sphinx-themes-1.0.1-python2-encoding-kw.patch b/dev-python/flask-sphinx-themes/files/flask-sphinx-themes-1.0.1-python2-encoding-kw.patch new file mode 100644 index 000000000000..5f4f5d4d3bbf --- /dev/null +++ b/dev-python/flask-sphinx-themes/files/flask-sphinx-themes-1.0.1-python2-encoding-kw.patch @@ -0,0 +1,12 @@ +diff --git a/setup.py b/setup.py +index d14f27b..40bffcc 100755 +--- a/setup.py ++++ b/setup.py +@@ -1,6 +1,7 @@ + #!/usr/bin/env python + import os + import re ++from io import open # for python 2 compat (missing 'encoding' kw) + + from setuptools import setup + diff --git a/dev-python/flask-sphinx-themes/flask-sphinx-themes-1.0.1.ebuild b/dev-python/flask-sphinx-themes/flask-sphinx-themes-1.0.1.ebuild new file mode 100644 index 000000000000..61a7be0e055c --- /dev/null +++ b/dev-python/flask-sphinx-themes/flask-sphinx-themes-1.0.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +MY_PN="Flask-Sphinx-Themes" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Sphinx Themes for Flask related projects and Flask itself" +HOMEPAGE="https://github.com/pallets/flask-sphinx-themes https://pypi.python.org/pypi/Flask-Sphinx-Themes" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +PATCHES=( "${FILESDIR}/${P}-python2-encoding-kw.patch" ) + +S="${WORKDIR}/${MY_P}" diff --git a/dev-python/flask-sphinx-themes/metadata.xml b/dev-python/flask-sphinx-themes/metadata.xml new file mode 100644 index 000000000000..9a38b6080158 --- /dev/null +++ b/dev-python/flask-sphinx-themes/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + Flask-Sphinx-Themes + + diff --git a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild index 3d4f8c6c0310..e022a8b7e0e1 100644 --- a/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild +++ b/dev-python/funcsigs/funcsigs-1.0.2-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="Apache-2.0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux" IUSE="test" DEPEND=" diff --git a/dev-python/functools32/functools32-3.2.3.ebuild b/dev-python/functools32/functools32-3.2.3.ebuild index bda80af91dca..1a7587a77bcc 100644 --- a/dev-python/functools32/functools32-3.2.3.ebuild +++ b/dev-python/functools32/functools32-3.2.3.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}-2.tar.gz" SLOT="0" LICENSE="PSF-2.4" -KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux" IUSE="" S="${WORKDIR}"/${P}-2 diff --git a/dev-python/future/future-0.15.2.ebuild b/dev-python/future/future-0.15.2.ebuild index 5f71b9a32670..53a662a5a763 100644 --- a/dev-python/future/future-0.15.2.ebuild +++ b/dev-python/future/future-0.15.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~x86" +KEYWORDS="~alpha amd64 x86" IUSE="" PATCHES=( "${FILESDIR}/${P}-fix-py35-test-failures.patch" ) diff --git a/dev-python/geoalchemy2/Manifest b/dev-python/geoalchemy2/Manifest new file mode 100644 index 000000000000..af7253d45cba --- /dev/null +++ b/dev-python/geoalchemy2/Manifest @@ -0,0 +1 @@ +DIST geoalchemy2-0.3.tar.gz 93256 SHA256 029550f36695b48452907c834cf23ef24390d81e1e59d19bc2ba2de89e9a4835 SHA512 5f94f6459eba1266c3b31b6d0b1f16478c1641a29b3dbe26cfdc3983d3aa5642b075871fb4722e6bccca7d1960ac1d87103351d846a061891f17d407df4867c8 WHIRLPOOL e99361c67b8cb1ad727d20e649e51f898ed6d426eae866464db7460d8ca36fa78fa5fb055d0e63474b38df42d4f7f2492fe162729b1beb5a1ce27ac1891d14d6 diff --git a/dev-python/geoalchemy2/geoalchemy2-0.3.ebuild b/dev-python/geoalchemy2/geoalchemy2-0.3.ebuild new file mode 100644 index 000000000000..6654abbd6cd3 --- /dev/null +++ b/dev-python/geoalchemy2/geoalchemy2-0.3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +DESCRIPTION="Geospatial extension to SQLAlchemy with PostGIS support" +HOMEPAGE="http://geoalchemy.org/ http://geoalchemy-2.readthedocs.org" +SRC_URI="https://github.com/geoalchemy/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +# ^^ tarball on pypi is missing tests +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=">=dev-python/sqlalchemy-0.8[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/shapely[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + )" + +RESTRICT="test" +# tests require a running PostgreSQL database + +python_test() { + py.test tests || die +} diff --git a/dev-python/geoalchemy2/metadata.xml b/dev-python/geoalchemy2/metadata.xml new file mode 100644 index 000000000000..4f16fb134ac1 --- /dev/null +++ b/dev-python/geoalchemy2/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + GeoAlchemy2 + + diff --git a/dev-python/glance_store/glance_store-0.18.0.ebuild b/dev-python/glance_store/glance_store-0.18.0.ebuild index 9a4d8731d341..91d141c10cbb 100644 --- a/dev-python/glance_store/glance_store-0.18.0.ebuild +++ b/dev-python/glance_store/glance_store-0.18.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="+cinder" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest index 66d5ad2eb33e..246a11792d9a 100644 --- a/dev-python/hypothesis/Manifest +++ b/dev-python/hypothesis/Manifest @@ -1,3 +1,2 @@ DIST hypothesis-1.19.0.tar.gz 86227 SHA256 0e977a3492f5488ed9dd4a872cefae0934ad4ccd0229a6c483ef5ca0aaaddd6d SHA512 3b2cd671498bd0bc88c93b2753f35b02f737533dd8dbc786420a37a417d145e4f1c579741966394f85b7df4939e61f77315e6158b29e22f9bde07d31e161e009 WHIRLPOOL 52b444e6e3fa0c514ebb9816cd489b2441b213581e241f76ab5aa5c410ca08bedef92f0b608c32c421f74ba84a0e26850a2aaf9f2d9f7229aa176d9e501175a0 -DIST hypothesis-3.4.2.tar.gz 71270 SHA256 87a6b96670d52d9c30fff1342adec178822cd472775588d998bd860c05409688 SHA512 355815a11c57448a175a984d1ad6e87dcd9cc954acf312bfeff4ec499678166be6b9751173307748ff8b2d325b502cd31151e883e2a52f2d51a0395436bdb039 WHIRLPOOL 839bdc774f3889b0243119a81a9caa9eb29918dbf79ed7f5d7a1d15bab2e2ad6cfcd41948ab8b249c7bfecec3271aab99724b2eb2bde340136d9d9253f1fdeef -DIST hypothesis-3.5.3.tar.gz 73052 SHA256 25bdf9bd507f6c66b33c11c8c8ba31c3a6a6969e9b2035554fde69ceed84633d SHA512 1b22715e3ead84075d58c3e6ddfc074f542b2bce077e4e63fadd5910266bad81b3393b8a5c8d3b77e6f73e6987428fc92bd38a2d02003b5f490dd4ce08bca34c WHIRLPOOL 61ae670ca5167bdf5dae3fccb53bca9504d7470a6a5f159e5631b8a772da66f94ef5f0113029f189137757a70c261fb8ec2efdc2e92ab9060f19cdf4a1156698 +DIST hypothesis-3.6.0.tar.gz 73586 SHA256 ecb0e711ab83032c54605d88fda1e07ca5c6025bdb5e91deab96eca29491f678 SHA512 cb885628e5c38ab9312cfb177ebc3c014617d21031737f5fba343ba485c1b8ff82b1302e7bc1d3e79192bfd8324fd0501498c968f3ac8343829f8965f6354389 WHIRLPOOL 189c788fdd0a326879a468061c271b14056da5f7dc1d5975e8f360cd5a91957eb8f79c26a045fbe49d7b11f7cc09024d3d09a353321b1dda1d4d96b452fd9e7b diff --git a/dev-python/hypothesis/hypothesis-3.4.2.ebuild b/dev-python/hypothesis/hypothesis-3.4.2.ebuild deleted file mode 100644 index f72cf3ebc00e..000000000000 --- a/dev-python/hypothesis/hypothesis-3.4.2.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 ) -PYTHON_REQ_USE="threads(+)" - -inherit distutils-r1 - -DESCRIPTION="A library for property based testing" -HOMEPAGE="https://github.com/DRMacIver/hypothesis" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MPL-2.0" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="" - -RDEPEND="" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" - -pkg_postinst() { - optfeature "datetime support" dev-python/pytz - optfeature "numpy support" dev-python/numpy - optfeature "django support" dev-python/django dev-python/pytz - optfeature "pytest support" dev-python/pytest -# optfeature "fake-factory support" dev-python/fake-factory -} diff --git a/dev-python/hypothesis/hypothesis-3.5.3.ebuild b/dev-python/hypothesis/hypothesis-3.6.0-r1.ebuild similarity index 60% rename from dev-python/hypothesis/hypothesis-3.5.3.ebuild rename to dev-python/hypothesis/hypothesis-3.6.0-r1.ebuild index 30fce5cbc8cd..507ba7044c01 100644 --- a/dev-python/hypothesis/hypothesis-3.5.3.ebuild +++ b/dev-python/hypothesis/hypothesis-3.6.0-r1.ebuild @@ -2,12 +2,12 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{4,5} pypy ) -PYTHON_REQ_USE="threads(+)" +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy{,3} ) +PYTHON_REQ_USE="threads(+),sqlite" -inherit distutils-r1 +inherit distutils-r1 eutils DESCRIPTION="A library for property based testing" HOMEPAGE="https://github.com/DRMacIver/hypothesis https://pypi.python.org/pypi/hypothesis" @@ -15,19 +15,16 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MPL-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" IUSE="" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7) - dev-python/uncompyle6[${PYTHON_USEDEP}] -" -RDEPEND="${DEPEND}" +RDEPEND="$(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' 'python2*')" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" pkg_postinst() { optfeature "datetime support" dev-python/pytz optfeature "numpy support" dev-python/numpy optfeature "django support" dev-python/django dev-python/pytz optfeature "pytest support" dev-python/pytest -# optfeature "fake-factory support" dev-python/fake-factory } diff --git a/dev-python/icalendar/icalendar-3.9.2.ebuild b/dev-python/icalendar/icalendar-3.9.2.ebuild index 96cac1646f08..18474d30ee29 100644 --- a/dev-python/icalendar/icalendar-3.9.2.ebuild +++ b/dev-python/icalendar/icalendar-3.9.2.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI="5" -PYTHON_COMPAT=( python{2_7,3_4} pypy ) +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy ) inherit distutils-r1 diff --git a/dev-python/iso8601/iso8601-0.1.11.ebuild b/dev-python/iso8601/iso8601-0.1.11.ebuild index bfcdfdb632f6..9ae2172d3309 100644 --- a/dev-python/iso8601/iso8601-0.1.11.ebuild +++ b/dev-python/iso8601/iso8601-0.1.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/jsonschema/jsonschema-2.5.1-r2.ebuild b/dev-python/jsonschema/jsonschema-2.5.1-r2.ebuild index e877491bbbb7..4f16c238079e 100644 --- a/dev-python/jsonschema/jsonschema-2.5.1-r2.ebuild +++ b/dev-python/jsonschema/jsonschema-2.5.1-r2.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux" IUSE="test" RDEPEND=" diff --git a/dev-python/keystoneauth/keystoneauth-2.12.2.ebuild b/dev-python/keystoneauth/keystoneauth-2.12.2.ebuild index 4364126c8458..2b574fdf1b66 100644 --- a/dev-python/keystoneauth/keystoneauth-2.12.2.ebuild +++ b/dev-python/keystoneauth/keystoneauth-2.12.2.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/${PN}1-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/keystonemiddleware/keystonemiddleware-4.9.0.ebuild b/dev-python/keystonemiddleware/keystonemiddleware-4.9.0.ebuild index 7e79ebf72408..509f42dbb8f7 100644 --- a/dev-python/keystonemiddleware/keystonemiddleware-4.9.0.ebuild +++ b/dev-python/keystonemiddleware/keystonemiddleware-4.9.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="doc examples test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/ldappool/ldappool-2.0.0.ebuild b/dev-python/ldappool/ldappool-2.0.0.ebuild index e86a50dfd578..f20197d7f582 100644 --- a/dev-python/ldappool/ldappool-2.0.0.ebuild +++ b/dev-python/ldappool/ldappool-2.0.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND=" diff --git a/dev-python/louie/louie-1.1-r1.ebuild b/dev-python/louie/louie-1.1-r1.ebuild index eefc6df2e3c1..55472ce1d57a 100644 --- a/dev-python/louie/louie-1.1-r1.ebuild +++ b/dev-python/louie/louie-1.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86" IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/microversion-parse/microversion-parse-0.1.4.ebuild b/dev-python/microversion-parse/microversion-parse-0.1.4.ebuild index 47766e86d07e..02926f736a1d 100644 --- a/dev-python/microversion-parse/microversion-parse-0.1.4.ebuild +++ b/dev-python/microversion-parse/microversion-parse-0.1.4.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/microversion_parse-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/mock/mock-2.0.0.ebuild b/dev-python/mock/mock-2.0.0.ebuild index 19314cc06fa5..88603ee211f0 100644 --- a/dev-python/mock/mock-2.0.0.ebuild +++ b/dev-python/mock/mock-2.0.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos" IUSE="test" CDEPEND=" diff --git a/dev-python/msgpack/msgpack-0.4.8.ebuild b/dev-python/msgpack/msgpack-0.4.8.ebuild index fa01d1ec4c68..95f5d40558cf 100644 --- a/dev-python/msgpack/msgpack-0.4.8.ebuild +++ b/dev-python/msgpack/msgpack-0.4.8.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="test" DEPEND=" diff --git a/dev-python/netifaces/netifaces-0.10.5.ebuild b/dev-python/netifaces/netifaces-0.10.5.ebuild index b646b588689a..221d71d43744 100644 --- a/dev-python/netifaces/netifaces-0.10.5.ebuild +++ b/dev-python/netifaces/netifaces-0.10.5.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/neutron-lib/neutron-lib-0.4.0.ebuild b/dev-python/neutron-lib/neutron-lib-0.4.0.ebuild index 97b3d7ed48f2..a253b2c0d591 100644 --- a/dev-python/neutron-lib/neutron-lib-0.4.0.ebuild +++ b/dev-python/neutron-lib/neutron-lib-0.4.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/oauthlib/oauthlib-1.1.2.ebuild b/dev-python/oauthlib/oauthlib-1.1.2.ebuild index c72f8b950cc2..e8b7bbd9816c 100644 --- a/dev-python/oauthlib/oauthlib-1.1.2.ebuild +++ b/dev-python/oauthlib/oauthlib-1.1.2.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~x86" +KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="test" # optional extras hard set as RDEPs. See setup.py diff --git a/dev-python/openstacksdk/openstacksdk-0.9.5.ebuild b/dev-python/openstacksdk/openstacksdk-0.9.5.ebuild index 5d9a64e278d3..9a93d3845173 100644 --- a/dev-python/openstacksdk/openstacksdk-0.9.5.ebuild +++ b/dev-python/openstacksdk/openstacksdk-0.9.5.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/os-brick/os-brick-1.6.1.ebuild b/dev-python/os-brick/os-brick-1.6.1.ebuild index efcc52b61c29..5f1fe8f4d48e 100644 --- a/dev-python/os-brick/os-brick-1.6.1.ebuild +++ b/dev-python/os-brick/os-brick-1.6.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=" diff --git a/dev-python/os-client-config/os-client-config-1.21.1.ebuild b/dev-python/os-client-config/os-client-config-1.21.1.ebuild index 1590a40beed0..f86a9236842b 100644 --- a/dev-python/os-client-config/os-client-config-1.21.1.ebuild +++ b/dev-python/os-client-config/os-client-config-1.21.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="doc test" CDEPEND="dev-python/pbr[${PYTHON_USEDEP}]" diff --git a/dev-python/os-testr/os-testr-0.8.0.ebuild b/dev-python/os-testr/os-testr-0.8.0.ebuild index 66aa5ce3fadf..1bb53dfd6b1e 100644 --- a/dev-python/os-testr/os-testr-0.8.0.ebuild +++ b/dev-python/os-testr/os-testr-0.8.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/os-vif/os-vif-1.2.1.ebuild b/dev-python/os-vif/os-vif-1.2.1.ebuild index ff54910659fd..5a2056ac41d3 100644 --- a/dev-python/os-vif/os-vif-1.2.1.ebuild +++ b/dev-python/os-vif/os-vif-1.2.1.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/os_vif-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=" diff --git a/dev-python/os-win/os-win-1.2.1.ebuild b/dev-python/os-win/os-win-1.2.1.ebuild index 6cab5f245063..b50ac8a43522 100644 --- a/dev-python/os-win/os-win-1.2.1.ebuild +++ b/dev-python/os-win/os-win-1.2.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/osc-lib/osc-lib-1.1.0.ebuild b/dev-python/osc-lib/osc-lib-1.1.0.ebuild index 522b51ed2604..7cbf146fac7b 100644 --- a/dev-python/osc-lib/osc-lib-1.1.0.ebuild +++ b/dev-python/osc-lib/osc-lib-1.1.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/oslo-cache/oslo-cache-1.14.0.ebuild b/dev-python/oslo-cache/oslo-cache-1.14.0.ebuild index b8f8aee70567..75a1b211faf8 100644 --- a/dev-python/oslo-cache/oslo-cache-1.14.0.ebuild +++ b/dev-python/oslo-cache/oslo-cache-1.14.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" DEPEND=" diff --git a/dev-python/oslo-concurrency/oslo-concurrency-3.14.0.ebuild b/dev-python/oslo-concurrency/oslo-concurrency-3.14.0.ebuild index e5fcd8ae535b..20f2d72c5bc9 100644 --- a/dev-python/oslo-concurrency/oslo-concurrency-3.14.0.ebuild +++ b/dev-python/oslo-concurrency/oslo-concurrency-3.14.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.concurrency-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDPEND=" diff --git a/dev-python/oslo-config/oslo-config-3.14.0.ebuild b/dev-python/oslo-config/oslo-config-3.14.0.ebuild index d7e0db6041c4..c2c6849dad09 100644 --- a/dev-python/oslo-config/oslo-config-3.14.0.ebuild +++ b/dev-python/oslo-config/oslo-config-3.14.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="doc test" CDEPEND=">=dev-python/pbr-1.3[${PYTHON_USEDEP}]" diff --git a/dev-python/oslo-context/oslo-context-2.9.0.ebuild b/dev-python/oslo-context/oslo-context-2.9.0.ebuild index d84ca16c6406..3734a088a4c8 100644 --- a/dev-python/oslo-context/oslo-context-2.9.0.ebuild +++ b/dev-python/oslo-context/oslo-context-2.9.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/oslo-db/oslo-db-4.13.3.ebuild b/dev-python/oslo-db/oslo-db-4.13.3.ebuild index 306e70a4ca96..bc4e92bfe461 100644 --- a/dev-python/oslo-db/oslo-db-4.13.3.ebuild +++ b/dev-python/oslo-db/oslo-db-4.13.3.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.db-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="+sqlite mysql postgres" REQUIRED_USE="|| ( mysql postgres sqlite )" diff --git a/dev-python/oslo-i18n/oslo-i18n-3.9.0.ebuild b/dev-python/oslo-i18n/oslo-i18n-3.9.0.ebuild index 423834e5a861..57be5c366ff7 100644 --- a/dev-python/oslo-i18n/oslo-i18n-3.9.0.ebuild +++ b/dev-python/oslo-i18n/oslo-i18n-3.9.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="doc test" CDEPEND=">dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]" diff --git a/dev-python/oslo-log/oslo-log-3.16.0.ebuild b/dev-python/oslo-log/oslo-log-3.16.0.ebuild index 0145e4b2661f..773420b25b92 100644 --- a/dev-python/oslo-log/oslo-log-3.16.0.ebuild +++ b/dev-python/oslo-log/oslo-log-3.16.0.ebuild @@ -15,7 +15,7 @@ S="${WORKDIR}/oslo.log-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/oslo-messaging/oslo-messaging-5.10.0.ebuild b/dev-python/oslo-messaging/oslo-messaging-5.10.0.ebuild index bb165ddd6b25..126a84e53695 100644 --- a/dev-python/oslo-messaging/oslo-messaging-5.10.0.ebuild +++ b/dev-python/oslo-messaging/oslo-messaging-5.10.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.messaging-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/oslo-middleware/oslo-middleware-3.19.0.ebuild b/dev-python/oslo-middleware/oslo-middleware-3.19.0.ebuild index a58c69a89a7b..7cdf258aa63c 100644 --- a/dev-python/oslo-middleware/oslo-middleware-3.19.0.ebuild +++ b/dev-python/oslo-middleware/oslo-middleware-3.19.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.middleware-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=" diff --git a/dev-python/oslo-policy/oslo-policy-1.14.0.ebuild b/dev-python/oslo-policy/oslo-policy-1.14.0.ebuild index eff7fe122ba2..fc6c0c27fed2 100644 --- a/dev-python/oslo-policy/oslo-policy-1.14.0.ebuild +++ b/dev-python/oslo-policy/oslo-policy-1.14.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.policy-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/oslo-privsep/oslo-privsep-1.13.0.ebuild b/dev-python/oslo-privsep/oslo-privsep-1.13.0.ebuild index db38ecf820cd..5f9a538d099d 100644 --- a/dev-python/oslo-privsep/oslo-privsep-1.13.0.ebuild +++ b/dev-python/oslo-privsep/oslo-privsep-1.13.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.privsep-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=" diff --git a/dev-python/oslo-reports/oslo-reports-1.14.0.ebuild b/dev-python/oslo-reports/oslo-reports-1.14.0.ebuild index 7acb41782d43..4de8736e41b7 100644 --- a/dev-python/oslo-reports/oslo-reports-1.14.0.ebuild +++ b/dev-python/oslo-reports/oslo-reports-1.14.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.reports-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=" diff --git a/dev-python/oslo-rootwrap/oslo-rootwrap-5.1.1.ebuild b/dev-python/oslo-rootwrap/oslo-rootwrap-5.1.1.ebuild index d3093616b124..796aa8c37bd4 100644 --- a/dev-python/oslo-rootwrap/oslo-rootwrap-5.1.1.ebuild +++ b/dev-python/oslo-rootwrap/oslo-rootwrap-5.1.1.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.rootwrap-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=" diff --git a/dev-python/oslo-serialization/oslo-serialization-2.13.0.ebuild b/dev-python/oslo-serialization/oslo-serialization-2.13.0.ebuild index 2b123ea9e7c4..ce77cf90e860 100644 --- a/dev-python/oslo-serialization/oslo-serialization-2.13.0.ebuild +++ b/dev-python/oslo-serialization/oslo-serialization-2.13.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="doc test" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/oslo-service/oslo-service-1.16.0.ebuild b/dev-python/oslo-service/oslo-service-1.16.0.ebuild index fcfaa8ddd556..12171034b5ea 100644 --- a/dev-python/oslo-service/oslo-service-1.16.0.ebuild +++ b/dev-python/oslo-service/oslo-service-1.16.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.service-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=" diff --git a/dev-python/oslo-sphinx/oslo-sphinx-4.7.0.ebuild b/dev-python/oslo-sphinx/oslo-sphinx-4.7.0.ebuild index cf9727682f36..fb99e7ee030f 100644 --- a/dev-python/oslo-sphinx/oslo-sphinx-4.7.0.ebuild +++ b/dev-python/oslo-sphinx/oslo-sphinx-4.7.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86" IUSE="doc" DEPEND=" diff --git a/dev-python/oslo-utils/oslo-utils-3.16.0.ebuild b/dev-python/oslo-utils/oslo-utils-3.16.0.ebuild index db0a7e1d070e..481b2d620c89 100644 --- a/dev-python/oslo-utils/oslo-utils-3.16.0.ebuild +++ b/dev-python/oslo-utils/oslo-utils-3.16.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.g LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="doc test" CDEPEND=" diff --git a/dev-python/oslo-versionedobjects/oslo-versionedobjects-1.17.0.ebuild b/dev-python/oslo-versionedobjects/oslo-versionedobjects-1.17.0.ebuild index f9714113f0c0..f6267ec3a54b 100644 --- a/dev-python/oslo-versionedobjects/oslo-versionedobjects-1.17.0.ebuild +++ b/dev-python/oslo-versionedobjects/oslo-versionedobjects-1.17.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.versionedobjects-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=">=dev-python/pbr-1.8.0[${PYTHON_USEDEP}]" diff --git a/dev-python/oslo-vmware/oslo-vmware-2.14.0.ebuild b/dev-python/oslo-vmware/oslo-vmware-2.14.0.ebuild index ed5abd91cea0..862a3044cbf7 100644 --- a/dev-python/oslo-vmware/oslo-vmware-2.14.0.ebuild +++ b/dev-python/oslo-vmware/oslo-vmware-2.14.0.ebuild @@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.vmware-${PV}" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/osprofiler/osprofiler-1.4.0.ebuild b/dev-python/osprofiler/osprofiler-1.4.0.ebuild index 509e1135ed46..22dfe0238bdd 100644 --- a/dev-python/osprofiler/osprofiler-1.4.0.ebuild +++ b/dev-python/osprofiler/osprofiler-1.4.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND=" diff --git a/dev-python/ovs/ovs-2.6.0.ebuild b/dev-python/ovs/ovs-2.6.0.ebuild index ddc92417204c..879bda5518d9 100644 --- a/dev-python/ovs/ovs-2.6.0.ebuild +++ b/dev-python/ovs/ovs-2.6.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/paramiko/paramiko-2.0.2.ebuild b/dev-python/paramiko/paramiko-2.0.2.ebuild index 51fef39fd1c7..6a5d2e62f679 100644 --- a/dev-python/paramiko/paramiko-2.0.2.ebuild +++ b/dev-python/paramiko/paramiko-2.0.2.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris" IUSE="doc examples" RDEPEND=" diff --git a/dev-python/paste/paste-2.0.3.ebuild b/dev-python/paste/paste-2.0.3.ebuild index 1be0b12b5a9e..ae4d44d7d7ee 100644 --- a/dev-python/paste/paste-2.0.3.ebuild +++ b/dev-python/paste/paste-2.0.3.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris" +KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris" IUSE="doc flup openid" RDEPEND=" diff --git a/dev-python/pecan/pecan-1.1.2.ebuild b/dev-python/pecan/pecan-1.1.2.ebuild index 121095c220b5..c2f1d5fa85d6 100644 --- a/dev-python/pecan/pecan-1.1.2.ebuild +++ b/dev-python/pecan/pecan-1.1.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/positional/positional-1.1.1.ebuild b/dev-python/positional/positional-1.1.1.ebuild index 10d783e49663..2e8c9fca1317 100644 --- a/dev-python/positional/positional-1.1.1.ebuild +++ b/dev-python/positional/positional-1.1.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/psycopg/psycopg-2.6.2.ebuild b/dev-python/psycopg/psycopg-2.6.2.ebuild index 769062251402..0467eba86684 100644 --- a/dev-python/psycopg/psycopg-2.6.2.ebuild +++ b/dev-python/psycopg/psycopg-2.6.2.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="LGPL-3+" SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="debug doc examples" RDEPEND=">=dev-db/postgresql-8.1" diff --git a/dev-python/pycadf/pycadf-2.4.0.ebuild b/dev-python/pycadf/pycadf-2.4.0.ebuild index 3ef3707f0cd4..3ecdf041c284 100644 --- a/dev-python/pycadf/pycadf-2.4.0.ebuild +++ b/dev-python/pycadf/pycadf-2.4.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="doc test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/pygit2/Manifest b/dev-python/pygit2/Manifest index 9a8399ff6a05..c89697a1b11a 100644 --- a/dev-python/pygit2/Manifest +++ b/dev-python/pygit2/Manifest @@ -1,6 +1 @@ -DIST pygit2-0.20.3.tar.gz 141887 SHA256 2957db7d9616db910e9274051fbfe66a496b910113548fbf2a7acdeef01e9ef9 SHA512 13355f2eccb591c7e1e18f66724aa0b68b94e65580aa20464e8669a8f54844557902f029127a9c5e50c3d4dafdc504f1d3aca65c0d26d9f147ff08eab2b002dc WHIRLPOOL a4496cb3dd2799c77240e1eae9c06f167727cb5948081da6f8864feb5ab38a046f8382e994dd3cdf28f4ac8b9e7675b3671b4369a8268f7f09b3c11d3e8bee3d -DIST pygit2-0.21.4.tar.gz 417750 SHA256 1952332b48e87e918bc807305220075bfb611c96fbc529a43c78d73fdce25593 SHA512 835369ec9302d27ed361ccf3317fece4192e765c5e6e014ed6dd87cba38fe833eff3ba36558aa2951f42542408e3dba07777937aedaf539583db4454198d3112 WHIRLPOOL 90204b7dd28216ddfa82667e246bdaf154b19753b6382b7467a3cae85140a4672342045ba2713ba0eba8e0add5b6facd2ae4f72a0214d3eca0b49acccf14744f -DIST pygit2-0.22.1.tar.gz 451351 SHA256 54b6e229ca2bf87efe4b5b8279d8f355b8c49613f0b8cbe7e0c1c98c001c39e0 SHA512 8ffcea4a94ca4667112b79e4adda43a75a9b677e609af528f79d4e6f8e84873a4c8478b89743d1de35d28ae00b1254e2287cd912776d96e3bf6a0030477e86a3 WHIRLPOOL 8eeec7ae2bc29264022f59067f93cb5375ead2285a30c27bd9f0c48c1be2b308c5413a3b3b8ede4a9be152727978971b0a6d2f23aeafc7f985ee0eeaf29aa72b -DIST pygit2-0.23.3.tar.gz 467484 SHA256 aaff3646ac2e19fe9c2b022a85f91814698c7573f3a962dedcf3da9cdecc47c5 SHA512 8da98b254fc000987acf65ac118ba38ce8eb91345fa6540c22e8e8d304f1c4f3a92db6fb90e6641f69c58622cbda7c75401644237184cf02d03aeff7300dc593 WHIRLPOOL 4a00c6e4708f8d12dee4fd5a9ae2e1e98343daec1598f04d2890574334e9e7849249b73cca998e60256b633aee575f031560948e64ffa1e9dbb8860226e4e46c -DIST pygit2-0.24.1.tar.gz 468951 SHA256 4d1d0196b38d6012faf0a7c45e235c208315672b6035da504566c605ba494064 SHA512 517f32e3be5684f3ea521419608dd1e61ebe7a052ccf8da0b8ddf79022971966dfa87b8b7aae5280fdcecafb2cbb05d951a9f647c83d65f61fea3d64949eff59 WHIRLPOOL 1c7e34097eb79812a67c2b84191eedb44d6850951a2088a6b88c5651339ff28d1566fde42b96ddc40be6c2851513129819983197f80601865f06d49ed3b73a1d DIST pygit2-0.24.2.tar.gz 470732 SHA256 2aae85836c3a8da686220db7db05f91f8797e37edf91cc2a1f88b09fb653166a SHA512 95593944fc290d310d66295cf9a8e7723edd668d85377f6bec05a5237e6ae72402d73595d146950231b9f30ee3e3c123fbfdc25cc36d0bd71c5fcb1dff53527e WHIRLPOOL 41155e89deda3d0dfbad6ce94122ad08e01e9c7abc0fd4c07ff366c761835b3bd92ef9e4fcee09cc25f07bcbb829f36e1c353acf30c6ff76c42c938e16335885 diff --git a/dev-python/pygit2/pygit2-0.20.3.ebuild b/dev-python/pygit2/pygit2-0.20.3.ebuild deleted file mode 100644 index b7fc3b50e457..000000000000 --- a/dev-python/pygit2/pygit2-0.20.3.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit distutils-r1 versionator - -DESCRIPTION="Python bindings for libgit2" -HOMEPAGE="https://github.com/libgit2/pygit2" -SRC_URI="https://github.com/libgit2/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND="=dev-libs/libgit2-$(get_version_component_range 1-2)*" -DEPEND="${RDEPEND}" - -python_test() { - esetup.py test -} diff --git a/dev-python/pygit2/pygit2-0.21.4-r1.ebuild b/dev-python/pygit2/pygit2-0.21.4-r1.ebuild deleted file mode 100644 index bbfe0bcf74fd..000000000000 --- a/dev-python/pygit2/pygit2-0.21.4-r1.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit distutils-r1 versionator - -DESCRIPTION="Python bindings for libgit2" -HOMEPAGE="https://github.com/libgit2/pygit2" -SRC_URI="https://github.com/libgit2/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - =dev-libs/libgit2-$(get_version_component_range 1-2)* - dev-python/cffi:=[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" - -python_test() { - esetup.py test -} diff --git a/dev-python/pygit2/pygit2-0.22.1.ebuild b/dev-python/pygit2/pygit2-0.22.1.ebuild deleted file mode 100644 index 75fdc263c643..000000000000 --- a/dev-python/pygit2/pygit2-0.22.1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit distutils-r1 versionator - -# infinite hang -RESTRICT="test" - -DESCRIPTION="Python bindings for libgit2" -HOMEPAGE="https://github.com/libgit2/pygit2" -SRC_URI="https://github.com/libgit2/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - =dev-libs/libgit2-$(get_version_component_range 1-2)* - dev-python/cffi:=[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" - -python_test() { - esetup.py test -} diff --git a/dev-python/pygit2/pygit2-0.23.3.ebuild b/dev-python/pygit2/pygit2-0.23.3.ebuild deleted file mode 100644 index 1f2ae0840593..000000000000 --- a/dev-python/pygit2/pygit2-0.23.3.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit distutils-r1 versionator - -DESCRIPTION="Python bindings for libgit2" -HOMEPAGE="https://github.com/libgit2/pygit2 https://pypi.python.org/pypi/pygit2" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - =dev-libs/libgit2-$(get_version_component_range 1-2)* - >=dev-python/cffi-1.0:=[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" - -python_test() { - esetup.py test -} diff --git a/dev-python/pygit2/pygit2-0.24.1.ebuild b/dev-python/pygit2/pygit2-0.24.1.ebuild deleted file mode 100644 index d00efa61c561..000000000000 --- a/dev-python/pygit2/pygit2-0.24.1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 -PYTHON_COMPAT=( python{2_7,3_4,3_5} ) - -inherit distutils-r1 versionator - -DESCRIPTION="Python bindings for libgit2" -HOMEPAGE="https://github.com/libgit2/pygit2 https://pypi.python.org/pypi/pygit2" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-2-with-linking-exception" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - =dev-libs/libgit2-$(get_version_component_range 1-2)* - >=dev-python/cffi-1.0:=[${PYTHON_USEDEP}] - dev-python/six[${PYTHON_USEDEP}] -" -DEPEND="${RDEPEND}" - -python_test() { - esetup.py test -} diff --git a/dev-python/pyldap/pyldap-2.4.25.1.ebuild b/dev-python/pyldap/pyldap-2.4.25.1.ebuild index 70e16ed42a4e..f66111fd6f76 100644 --- a/dev-python/pyldap/pyldap-2.4.25.1.ebuild +++ b/dev-python/pyldap/pyldap-2.4.25.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="PSF-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-solaris" IUSE="doc examples sasl ssl" # If you need support for openldap-2.3.x, please use python-ldap-2.3.9. diff --git a/dev-python/pymongo/pymongo-3.3.0.ebuild b/dev-python/pymongo/pymongo-3.3.0.ebuild index 2683f16140a1..4e2768a27129 100644 --- a/dev-python/pymongo/pymongo-3.3.0.ebuild +++ b/dev-python/pymongo/pymongo-3.3.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~hppa ~x86" +KEYWORDS="amd64 ~hppa x86" IUSE="doc kerberos test" RDEPEND=" diff --git a/dev-python/pymysql/pymysql-0.7.6.ebuild b/dev-python/pymysql/pymysql-0.7.6.ebuild index ff47e940a726..6c1d5d855c2e 100644 --- a/dev-python/pymysql/pymysql-0.7.6.ebuild +++ b/dev-python/pymysql/pymysql-0.7.6.ebuild @@ -17,7 +17,7 @@ SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.g LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="test" S=${WORKDIR}/${MY_P} diff --git a/dev-python/pyopenssl/pyopenssl-16.1.0.ebuild b/dev-python/pyopenssl/pyopenssl-16.1.0.ebuild index 78384c6a12aa..de14cf196ee3 100644 --- a/dev-python/pyopenssl/pyopenssl-16.1.0.ebuild +++ b/dev-python/pyopenssl/pyopenssl-16.1.0.ebuild @@ -22,7 +22,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" IUSE="doc examples" RESTRICT="test" # currently pretty broken diff --git a/dev-python/pyparsing/pyparsing-2.1.8.ebuild b/dev-python/pyparsing/pyparsing-2.1.8.ebuild index 1892eafb5a01..c98a1fc4aedf 100644 --- a/dev-python/pyparsing/pyparsing-2.1.8.ebuild +++ b/dev-python/pyparsing/pyparsing-2.1.8.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~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" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~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" IUSE="doc examples" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/pysaml2/pysaml2-4.0.2.ebuild b/dev-python/pysaml2/pysaml2-4.0.2.ebuild index cda3b112956c..1abb69630150 100644 --- a/dev-python/pysaml2/pysaml2-4.0.2.ebuild +++ b/dev-python/pysaml2/pysaml2-4.0.2.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND=" diff --git a/dev-python/pytest-capturelog/pytest-capturelog-0.7.ebuild b/dev-python/pytest-capturelog/pytest-capturelog-0.7.ebuild index 51dab798372e..6228c4d7bf50 100644 --- a/dev-python/pytest-capturelog/pytest-capturelog-0.7.ebuild +++ b/dev-python/pytest-capturelog/pytest-capturelog-0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86" IUSE="test" RDEPEND="dev-python/py[${PYTHON_USEDEP}]" diff --git a/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild b/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild index 5541df47238a..c64c6ee6de85 100644 --- a/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild +++ b/dev-python/pytest-xdist/pytest-xdist-1.15.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="MIT" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" RDEPEND=" diff --git a/dev-python/pytest/pytest-3.0.3.ebuild b/dev-python/pytest/pytest-3.0.3.ebuild index 55fd05566909..bb11033afe91 100644 --- a/dev-python/pytest/pytest-3.0.3.ebuild +++ b/dev-python/pytest/pytest-3.0.3.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="doc test" # When bumping, please check setup.py for the proper py version diff --git a/dev-python/python-barbicanclient/python-barbicanclient-4.0.1.ebuild b/dev-python/python-barbicanclient/python-barbicanclient-4.0.1.ebuild index 10376fad6800..dbae11cba860 100644 --- a/dev-python/python-barbicanclient/python-barbicanclient-4.0.1.ebuild +++ b/dev-python/python-barbicanclient/python-barbicanclient-4.0.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND=" diff --git a/dev-python/python-ceilometerclient/python-ceilometerclient-2.6.1.ebuild b/dev-python/python-ceilometerclient/python-ceilometerclient-2.6.1.ebuild index fae8f4ce393b..f90bebe57022 100644 --- a/dev-python/python-ceilometerclient/python-ceilometerclient-2.6.1.ebuild +++ b/dev-python/python-ceilometerclient/python-ceilometerclient-2.6.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/python-cinderclient/python-cinderclient-1.9.0.ebuild b/dev-python/python-cinderclient/python-cinderclient-1.9.0.ebuild index 78dbc47c4fb6..1e73ffcaf2ab 100644 --- a/dev-python/python-cinderclient/python-cinderclient-1.9.0.ebuild +++ b/dev-python/python-cinderclient/python-cinderclient-1.9.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/python-debian/python-debian-0.1.28.ebuild b/dev-python/python-debian/python-debian-0.1.28.ebuild index e4c27a510823..05e93d0c8551 100644 --- a/dev-python/python-debian/python-debian-0.1.28.ebuild +++ b/dev-python/python-debian/python-debian-0.1.28.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://debian/pool/main/${P:0:1}/${PN}/${PN}_${PV}.tar.xz" LICENSE="GPL-2 GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" RDEPEND=" diff --git a/dev-python/python-designateclient/python-designateclient-2.3.0.ebuild b/dev-python/python-designateclient/python-designateclient-2.3.0.ebuild index 9962031baac2..8334f0945495 100644 --- a/dev-python/python-designateclient/python-designateclient-2.3.0.ebuild +++ b/dev-python/python-designateclient/python-designateclient-2.3.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/python-glanceclient/python-glanceclient-2.5.0.ebuild b/dev-python/python-glanceclient/python-glanceclient-2.5.0.ebuild index 14a4844e0e13..7f6c239ce9f5 100644 --- a/dev-python/python-glanceclient/python-glanceclient-2.5.0.ebuild +++ b/dev-python/python-glanceclient/python-glanceclient-2.5.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="doc test" REQUIRED_USE="test? ( doc )" diff --git a/dev-python/python-heatclient/python-heatclient-1.5.0.ebuild b/dev-python/python-heatclient/python-heatclient-1.5.0.ebuild index 129eeb4e876b..b973d96e1201 100644 --- a/dev-python/python-heatclient/python-heatclient-1.5.0.ebuild +++ b/dev-python/python-heatclient/python-heatclient-1.5.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="doc test" CDEPEND=" diff --git a/dev-python/python-keystoneclient/python-keystoneclient-3.5.0.ebuild b/dev-python/python-keystoneclient/python-keystoneclient-3.5.0.ebuild index 395b823d0144..04717ba9e693 100644 --- a/dev-python/python-keystoneclient/python-keystoneclient-3.5.0.ebuild +++ b/dev-python/python-keystoneclient/python-keystoneclient-3.5.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="" RESTRICT="test" diff --git a/dev-python/python-magnumclient/Manifest b/dev-python/python-magnumclient/Manifest index 8699a67d9c89..4321b6a583a9 100644 --- a/dev-python/python-magnumclient/Manifest +++ b/dev-python/python-magnumclient/Manifest @@ -1 +1 @@ -DIST python-magnumclient-2.3.0.tar.gz 73428 SHA256 f4d2420e6085c56998a41b6ade4e9a7b74058f4f20d515aff3c4e4fdf4174a2e SHA512 00df5f679493937f322b88e5d61c660c475b01665af90e735eb15011d0d60a273550f6a31cc6f9e994ab69204a0723fbc7182730db4977825aa559af512c88b8 WHIRLPOOL ad8a9392b42bbb40da12492fcfe6c42e5f102336647227945d13fab2f44ab0afa19f74cf802551b7819808748d87defeeb5aff7ed24bff9086eb2042d505e59e +DIST python-magnumclient-2.3.1.tar.gz 74501 SHA256 16e2f6923b1ca987bb71f8303b1bab42ed55516cbc9a4845ceebc37c27f3c7f0 SHA512 17af04eeb22d386bd43d7d8e49a418b7b577847fd7ee5751880ac8706fd44993c5af43bd347e0a431013fcbd6ff220e4f38818f95ae0456f7f6cb6ce8de606e3 WHIRLPOOL e72e53bc36196fefa034d3c0bb37dd4ff43a63b69f9516ea1696149b48362dd469dc6f84369b9e4cc64f162cab162bcf6417d9047dc3e15363b4c2c34eb8d3f9 diff --git a/dev-python/python-magnumclient/python-magnumclient-2.3.0.ebuild b/dev-python/python-magnumclient/python-magnumclient-2.3.1.ebuild similarity index 96% rename from dev-python/python-magnumclient/python-magnumclient-2.3.0.ebuild rename to dev-python/python-magnumclient/python-magnumclient-2.3.1.ebuild index 3bde37ababb9..81981c8d7d22 100644 --- a/dev-python/python-magnumclient/python-magnumclient-2.3.0.ebuild +++ b/dev-python/python-magnumclient/python-magnumclient-2.3.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/python-manilaclient/python-manilaclient-1.11.0.ebuild b/dev-python/python-manilaclient/python-manilaclient-1.11.0.ebuild index 51679cd56ecc..c80c6c678ef8 100644 --- a/dev-python/python-manilaclient/python-manilaclient-1.11.0.ebuild +++ b/dev-python/python-manilaclient/python-manilaclient-1.11.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/python-memcached/python-memcached-1.58.ebuild b/dev-python/python-memcached/python-memcached-1.58.ebuild index 171c367ba2c4..a996ddaf7600 100644 --- a/dev-python/python-memcached/python-memcached-1.58.ebuild +++ b/dev-python/python-memcached/python-memcached-1.58.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="OSL-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="amd64 ~arm64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/python-mistralclient/python-mistralclient-2.1.1.ebuild b/dev-python/python-mistralclient/python-mistralclient-2.1.1.ebuild index 2f320415f2b6..60bc5c866196 100644 --- a/dev-python/python-mistralclient/python-mistralclient-2.1.1.ebuild +++ b/dev-python/python-mistralclient/python-mistralclient-2.1.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/python-monascaclient/python-monascaclient-1.2.0.ebuild b/dev-python/python-monascaclient/python-monascaclient-1.2.0.ebuild index 48a00b9898f7..15f157b6816c 100644 --- a/dev-python/python-monascaclient/python-monascaclient-1.2.0.ebuild +++ b/dev-python/python-monascaclient/python-monascaclient-1.2.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/python-neutronclient/python-neutronclient-6.0.0.ebuild b/dev-python/python-neutronclient/python-neutronclient-6.0.0.ebuild index e865f8db4fcc..b9b409d1a91a 100644 --- a/dev-python/python-neutronclient/python-neutronclient-6.0.0.ebuild +++ b/dev-python/python-neutronclient/python-neutronclient-6.0.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="doc test" REQUIRED_USE="test? ( doc )" diff --git a/dev-python/python-novaclient/python-novaclient-6.0.0.ebuild b/dev-python/python-novaclient/python-novaclient-6.0.0.ebuild index 3164de156407..ad0609cbfbc8 100644 --- a/dev-python/python-novaclient/python-novaclient-6.0.0.ebuild +++ b/dev-python/python-novaclient/python-novaclient-6.0.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/python-openstackclient/python-openstackclient-3.2.0.ebuild b/dev-python/python-openstackclient/python-openstackclient-3.2.0.ebuild index 396fa87d4331..67af8e566a9d 100644 --- a/dev-python/python-openstackclient/python-openstackclient-3.2.0.ebuild +++ b/dev-python/python-openstackclient/python-openstackclient-3.2.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/python-senlinclient/python-senlinclient-1.0.0.ebuild b/dev-python/python-senlinclient/python-senlinclient-1.0.0.ebuild index a35f0398d248..9827c4942302 100644 --- a/dev-python/python-senlinclient/python-senlinclient-1.0.0.ebuild +++ b/dev-python/python-senlinclient/python-senlinclient-1.0.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/python-swiftclient/python-swiftclient-3.1.0.ebuild b/dev-python/python-swiftclient/python-swiftclient-3.1.0.ebuild index b9ec30745198..977d0be1799a 100644 --- a/dev-python/python-swiftclient/python-swiftclient-3.1.0.ebuild +++ b/dev-python/python-swiftclient/python-swiftclient-3.1.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="doc test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/python-troveclient/python-troveclient-2.5.0.ebuild b/dev-python/python-troveclient/python-troveclient-2.5.0.ebuild index 30041e2117d3..b150bfb0758a 100644 --- a/dev-python/python-troveclient/python-troveclient-2.5.0.ebuild +++ b/dev-python/python-troveclient/python-troveclient-2.5.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/python-zaqarclient/python-zaqarclient-1.2.0.ebuild b/dev-python/python-zaqarclient/python-zaqarclient-1.2.0.ebuild index 8df77396d218..9148b8269ed3 100644 --- a/dev-python/python-zaqarclient/python-zaqarclient-1.2.0.ebuild +++ b/dev-python/python-zaqarclient/python-zaqarclient-1.2.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/readme/readme-0.6.0.ebuild b/dev-python/readme/readme-0.6.0.ebuild index 21d6653e7084..d0dadf816bf4 100644 --- a/dev-python/readme/readme-0.6.0.ebuild +++ b/dev-python/readme/readme-0.6.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" RDEPEND=" diff --git a/dev-python/reno/reno-1.8.0.ebuild b/dev-python/reno/reno-1.8.0.ebuild index 74f321cb075c..276688215a66 100644 --- a/dev-python/reno/reno-1.8.0.ebuild +++ b/dev-python/reno/reno-1.8.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=" diff --git a/dev-python/requests-mock/requests-mock-1.0.0.ebuild b/dev-python/requests-mock/requests-mock-1.0.0.ebuild index 18c910b9ca31..0db6fc279dac 100644 --- a/dev-python/requests-mock/requests-mock-1.0.0.ebuild +++ b/dev-python/requests-mock/requests-mock-1.0.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="test" DEPEND=" diff --git a/dev-python/requests/requests-2.11.1.ebuild b/dev-python/requests/requests-2.11.1.ebuild index 6a56b5be95c0..9ebb871564b5 100644 --- a/dev-python/requests/requests-2.11.1.ebuild +++ b/dev-python/requests/requests-2.11.1.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos" IUSE="test" RDEPEND=" diff --git a/dev-python/rfc3986/rfc3986-0.4.1.ebuild b/dev-python/rfc3986/rfc3986-0.4.1.ebuild index 7b268677f642..6f09eefe6369 100644 --- a/dev-python/rfc3986/rfc3986-0.4.1.ebuild +++ b/dev-python/rfc3986/rfc3986-0.4.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86" IUSE="test" DEPEND=" diff --git a/dev-python/routes/routes-2.3.1.ebuild b/dev-python/routes/routes-2.3.1.ebuild index 57edb022738b..bf01bbec066a 100644 --- a/dev-python/routes/routes-2.3.1.ebuild +++ b/dev-python/routes/routes-2.3.1.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/rsa/Manifest b/dev-python/rsa/Manifest index 66f0a0c18561..35df1c739a27 100644 --- a/dev-python/rsa/Manifest +++ b/dev-python/rsa/Manifest @@ -2,3 +2,4 @@ DIST rsa-3.1.4.tar.gz 36181 SHA256 e2b0b05936c276b1edd2e1525553233b666df9e29b5c3 DIST rsa-3.2.3.tar.gz 35628 SHA256 14db288cc40d6339dedf60d7a47053ab004b4a8976a5c59402a211d8fc5bf21f SHA512 52b33e0278e6e1fed64b1cdebed29f7caa31fae733c2d5875e6cba5a045aaa829616799d8de84fdb63c546780dbdafcabf1f85f25930b8e663861151479ef7e2 WHIRLPOOL 5814f912849bed4f98f8bef20dcf2fb9b28af70b970f324cadab90f0c67ff42c32792f7a6306edf1884d4cf6fe35d27f47c833358c2d03c582faba60fba1490d DIST rsa-3.2.tar.gz 33686 SHA256 30f371fbb060747aa53e02c2d53067d8a4f776a7f8ba0e9f0e6bd3f392489777 SHA512 cef1f42534d010e1bbaf62838779a54d20dbbee2b190afec662089c47959c490e279150de7c23bf10a0b53c4e7d4478680df1107a911ea42468b3483274aaf50 WHIRLPOOL 99608189a17f829615bee05f309375a0712f9f438161f37642fe09ad9286aea02475ed723e6f36c55c2cb6139bffd32660b169784ba932dd23433e72ea9e3feb DIST rsa-3.3.tar.gz 33449 SHA256 03f3d9bebad06681771016b8752a40b12f615ff32363c7aa19b3798e73ccd615 SHA512 b4d40441454ff4164fb30216bc1bb474d02074e37d012b4af8fd36f14db0a5675f8155058aeabd1e134624b575d8ca2f3ee813ac2d91f93ea8a30f2023bc1eca WHIRLPOOL d6a73217f74e6673ddacdca784e571690b00888d7c6276e492c07353aecb1322765b949acd4c735ae05c029a0e2c7d44c6eb4112f7f07124d59f3cf0f734172c +DIST rsa-3.4.2.tar.gz 40956 SHA256 25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5 SHA512 62b0ff31fb3b9c18ae65bd102329e69726b853560576b1b66b9b89b26d3ff79154239af7e7a581b6a27c7017cc013f738762cd9662777ef594cc11c5b1f8e267 WHIRLPOOL d8d51f7ffc47af5fbc48199860171c38fe6f08b5a510bfed20513c22df8a614565703c9d89939ff1092a7c6392fbdef8bacf41cc839a9943b120b1fa4cf8d496 diff --git a/dev-python/rsa/rsa-3.4.2.ebuild b/dev-python/rsa/rsa-3.4.2.ebuild new file mode 100644 index 000000000000..56fce15122fc --- /dev/null +++ b/dev-python/rsa/rsa-3.4.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Pure-Python RSA implementation" +HOMEPAGE="http://stuvel.eu/rsa https://pypi.python.org/pypi/rsa" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="test" + +RDEPEND=" + >=dev-python/pyasn1-0.1.3[${PYTHON_USEDEP}] + dev-python/traceback2[${PYTHON_USEDEP}] + " +DEPEND="${RDEPEND} + >=dev-python/setuptools-0.6.10[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/unittest2[${PYTHON_USEDEP}] + ) + " + +python_test() { + nosetests --verbose || die +} diff --git a/dev-python/rtslib-fb/rtslib-fb-2.1.58.ebuild b/dev-python/rtslib-fb/rtslib-fb-2.1.58.ebuild index c3038c1adb73..5417af06b8f6 100644 --- a/dev-python/rtslib-fb/rtslib-fb-2.1.58.ebuild +++ b/dev-python/rtslib-fb/rtslib-fb-2.1.58.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm ~arm64 ~mips x86 ~amd64-linux ~x86-linux" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/ryu/ryu-4.5.ebuild b/dev-python/ryu/ryu-4.5.ebuild index 48fd9d09173b..e66c52b5b512 100644 --- a/dev-python/ryu/ryu-4.5.ebuild +++ b/dev-python/ryu/ryu-4.5.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/shapely/Manifest b/dev-python/shapely/Manifest new file mode 100644 index 000000000000..c2ec85e0732c --- /dev/null +++ b/dev-python/shapely/Manifest @@ -0,0 +1 @@ +DIST Shapely-1.5.17.tar.gz 180663 SHA256 31fee47d9208078a19f40a451c0c99c085d16343e66cbd0dd5af0af6f48cfc3a SHA512 eea241942ffbf377001445fab4017c9a2746d6bc0baa6c801a08ca95e608bbdaea7ad9568f00cbecdb559e634402bc6d213ebccb4074e59325e1cc4b3771626d WHIRLPOOL e28ffd196edc0bdfe2da86351410fb57bda774ecf7283c890f002261ab586351625a7d15aede0310de03175330fa522da693e8397c74857d606ed23a2de78547 diff --git a/dev-python/shapely/metadata.xml b/dev-python/shapely/metadata.xml new file mode 100644 index 000000000000..913fbc6e025b --- /dev/null +++ b/dev-python/shapely/metadata.xml @@ -0,0 +1,11 @@ + + + + + python@gentoo.org + Python + + + Shapely + + diff --git a/dev-python/shapely/shapely-1.5.17.ebuild b/dev-python/shapely/shapely-1.5.17.ebuild new file mode 100644 index 000000000000..430e17a174b8 --- /dev/null +++ b/dev-python/shapely/shapely-1.5.17.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +MY_PN="Shapely" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Geometric objects, predicates, and operations" +HOMEPAGE=" https://github.com/Toblerity/Shapely" +SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=">=sci-libs/geos-3.3 + dev-python/numpy[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/cython[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MY_P}" + +python_prepare_all() { + # fix install path for Cython definition file + sed -i \ + -e "s|\(data_files.*\)'shapely'|\1'share/shapely'|" \ + setup.py || die + + distutils-r1_python_prepare_all +} + +python_test() { + distutils_install_for_testing + cd "${TEST_DIR}/lib" || die + cp -r "${S}/tests" . || die + py.test tests || die +} diff --git a/dev-python/sqlalchemy/sqlalchemy-1.0.15.ebuild b/dev-python/sqlalchemy/sqlalchemy-1.0.15.ebuild index 4f161b450ab1..9c5cf9602805 100644 --- a/dev-python/sqlalchemy/sqlalchemy-1.0.15.ebuild +++ b/dev-python/sqlalchemy/sqlalchemy-1.0.15.ebuild @@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc examples +sqlite test" REQUIRED_USE="test? ( sqlite )" diff --git a/dev-python/stevedore/stevedore-1.17.1.ebuild b/dev-python/stevedore/stevedore-1.17.1.ebuild index 6b88fafac944..fe4a609599e7 100644 --- a/dev-python/stevedore/stevedore-1.17.1.ebuild +++ b/dev-python/stevedore/stevedore-1.17.1.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="doc test" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/strict-rfc3339/strict-rfc3339-0.6.ebuild b/dev-python/strict-rfc3339/strict-rfc3339-0.6.ebuild index 8ebd5d5dba01..4dce00a8acfa 100644 --- a/dev-python/strict-rfc3339/strict-rfc3339-0.6.ebuild +++ b/dev-python/strict-rfc3339/strict-rfc3339-0.6.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="GPL-3+" -KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux" IUSE="" # Not shipped diff --git a/dev-python/taskflow/taskflow-2.6.0.ebuild b/dev-python/taskflow/taskflow-2.6.0.ebuild index 2159cc1acfb3..e5452ef529af 100644 --- a/dev-python/taskflow/taskflow-2.6.0.ebuild +++ b/dev-python/taskflow/taskflow-2.6.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-python/tooz/tooz-1.43.0.ebuild b/dev-python/tooz/tooz-1.43.0.ebuild index cc1f1fa28388..6371ff7cce43 100644 --- a/dev-python/tooz/tooz-1.43.0.ebuild +++ b/dev-python/tooz/tooz-1.43.0.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" CDEPEND=">=dev-python/pbr-1.6[${PYTHON_USEDEP}]" diff --git a/dev-python/translate-toolkit/Manifest b/dev-python/translate-toolkit/Manifest index ed3ca0a42d27..996901ff0dd5 100644 --- a/dev-python/translate-toolkit/Manifest +++ b/dev-python/translate-toolkit/Manifest @@ -1,2 +1,2 @@ DIST translate-toolkit-1.12.0.tar.bz2 5329772 SHA256 11e332f2a29d8644364b4ca79b4ac079df328626ec8c27ac0e8cc454696719ca SHA512 c84424790ad66492dec97a5ec5601f5ffa68d23b219836def998847449b902970ac32fcb7d06455365e00c7b06f49d7dedda5257275bf7e845b16100153922dd WHIRLPOOL 866eb62056a30c8042d96a1ec06a23e56c2a5121dd66234a8b0889193548fff962d4c56700bb50a01c793e2443d49e33a02d92d5b53513f6c7b0805af827decf -DIST translate-toolkit-2.0.0_beta6.tar.gz 1096681 SHA256 1abe04be3c886a52bdb90e33dffb7e96d82e7f5ba1fed41f12165a4a4b8def29 SHA512 08b8091b17a96925db09ab42536248c458a895d8a221af8be66bc4737ba233a70341ba9fab7047733ec0ad284b23f3694a361c726a952eb42427b9c01916ad79 WHIRLPOOL 1d9be301036073a1a1c6afb07b2cb77433457e26caf31d0577148b8f076b160d971c08d864e9b2fa947e3e55fbe7ede08af75570cc572422e7dc4c63f55b7863 +DIST translate-toolkit-2.0.0_beta7.tar.gz 1099096 SHA256 87f53a10ce9d2d19b5ff8d83a7b2aa03f30c1c9b2fd742db3909fbbd2f4221c0 SHA512 dd8897532f66aca451a578537038c3adac2a3fbe1e7756febc97e2a2a024e4460806a2a28d2e9e66239eba938d02053616d3c683568a032b5c4c5c0629bd8abc WHIRLPOOL 5301becae7728f761ca142c9e417d04da2e558723cb9fa421ee6c558cfb05ea8bce7eb8e5d4360ecaa2f924776b675879c9f3afca4a958330374839deb2a2ee3 diff --git a/dev-python/translate-toolkit/metadata.xml b/dev-python/translate-toolkit/metadata.xml index 99c20d968b89..2ec8899b6fbb 100644 --- a/dev-python/translate-toolkit/metadata.xml +++ b/dev-python/translate-toolkit/metadata.xml @@ -10,6 +10,7 @@ Support conversion between po and ical files Support conversion between po and ini files Support conversion between po and sub files + Support YAML format translate diff --git a/dev-python/translate-toolkit/translate-toolkit-2.0.0_beta6.ebuild b/dev-python/translate-toolkit/translate-toolkit-2.0.0_beta7.ebuild similarity index 78% rename from dev-python/translate-toolkit/translate-toolkit-2.0.0_beta6.ebuild rename to dev-python/translate-toolkit/translate-toolkit-2.0.0_beta7.ebuild index b88185ba1814..7d093839c34a 100644 --- a/dev-python/translate-toolkit/translate-toolkit-2.0.0_beta6.ebuild +++ b/dev-python/translate-toolkit/translate-toolkit-2.0.0_beta7.ebuild @@ -18,7 +18,7 @@ SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.ta LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="doc +html +ical +ini +subtitles" +IUSE="doc +html +ical +ini +subtitles +yaml" COMMON_DEPEND=" >=dev-python/six-1.10.0[${PYTHON_USEDEP}] @@ -37,7 +37,8 @@ RDEPEND="${COMMON_DEPEND} html? ( dev-python/utidylib[${PYTHON_USEDEP}] ) ical? ( dev-python/vobject[${PYTHON_USEDEP}] ) ini? ( dev-python/iniparse[${PYTHON_USEDEP}] ) - subtitles? ( $(python_gen_cond_dep 'media-video/gaupol[${PYTHON_USEDEP}]' python3_{4,5}) ) + subtitles? ( $(python_gen_cond_dep 'media-video/gaupol[${PYTHON_USEDEP}]' 'python3*') ) + yaml? ( dev-python/pyyaml[${PYTHON_USEDEP}] ) " REQUIRED_USE=" @@ -56,32 +57,26 @@ python_prepare_all() { } python_compile_all() { - use doc && emake -C docs html + if use doc; then + emake -C docs html + HTML_DOCS=( "${S}"/docs/_build/html/. ) + fi } python_install_all() { - use doc && local HTML_DOCS=( "${S}"/docs/_build/html/. ) distutils-r1_python_install_all - rm -Rf docs || die -} - -python_install() { - distutils-r1_python_install + rm -Rf docs || die if ! use html; then - rm "${ED}"usr/bin/html2po || die - rm "${ED}"usr/bin/po2html || die + rm "${ED%/}"/usr/bin/{html2po,po2html} || die fi if ! use ical; then - rm "${ED}"usr/bin/ical2po || die - rm "${ED}"usr/bin/po2ical || die + rm "${ED%/}"/usr/bin/{ical2po,po2ical} || die fi if ! use ini; then - rm "${ED}"usr/bin/ini2po || die - rm "${ED}"usr/bin/po2ini || die + rm "${ED%/}"/usr/bin/{ini2po,po2ini} || die fi if ! use subtitles; then - rm "${ED}"usr/bin/sub2po || die - rm "${ED}"usr/bin/po2sub || die + rm "${ED%/}"/usr/bin/{sub2po,po2sub} || die fi } diff --git a/dev-python/urllib3/urllib3-1.16.ebuild b/dev-python/urllib3/urllib3-1.16.ebuild index 1da545f6f244..c15932c3a306 100644 --- a/dev-python/urllib3/urllib3-1.16.ebuild +++ b/dev-python/urllib3/urllib3-1.16.ebuild @@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-fbsd ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-fbsd ~x86-linux" IUSE="doc test" RDEPEND=" diff --git a/dev-python/vcversioner/vcversioner-2.16.0.0.ebuild b/dev-python/vcversioner/vcversioner-2.16.0.0.ebuild index 71e0e16e5529..d1baaab1ea6f 100644 --- a/dev-python/vcversioner/vcversioner-2.16.0.0.ebuild +++ b/dev-python/vcversioner/vcversioner-2.16.0.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/v/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86" IUSE="test" DEPEND=" diff --git a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild index 56eeca5b03e9..3ed9cdd37418 100644 --- a/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild +++ b/dev-python/virtualenvwrapper/virtualenvwrapper-4.7.1.ebuild @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="test" # testsuite doesn't work out of the box. Demand of a virtualenv outstrips setup by the eclass diff --git a/dev-python/vobject/Manifest b/dev-python/vobject/Manifest index a529ada5f25d..516e7d029030 100644 --- a/dev-python/vobject/Manifest +++ b/dev-python/vobject/Manifest @@ -1,2 +1,3 @@ DIST vobject-0.8.1c.tar.gz 59925 SHA256 594113117f2017ed837c8f3ce727616f9053baa5a5463a7420c8249b8fc556f5 SHA512 3c7071e040172c8ef9e93bb818fb3c5f04912322adaaf56794b00005ff1ee787d54ad6860835be4fb123fa4215c104e1cbc4031dcdab53e96f7dbed771c0fa79 WHIRLPOOL b317c376df74532d6b1f72a64558611edb9b02a2c37c4d98064d28e478580c8138e5144c5e5585d47ea842c52f40abdac8c84095972780e7a5e239b01537ef2e +DIST vobject-0.9.2.tar.gz 56715 SHA256 3df7a6f59a7696932b83ed1da0fc8f84228bbe7456faf395f8c0cbbd988859f0 SHA512 4f749774692792952f897e9e5cbf3967bb803cfe3137b2942a16690121ac1b93f256bdf96a08f1e2192210cf5623e841cd891de81e67c70bab403cee2e37e04c WHIRLPOOL f0175162774842d85b1a6a8aa64e508496be8cb34ba729749ca9ec89fcb2766906702d9daf80cad610aa833be4693c2a3f692cc9d7b0486085fe5ac72d577129 DIST vobject-0.9.3.tar.gz 57744 SHA256 cb79bd61cb54e222496278a90d9f6fe6fc0640ab2c4163f3fbc2942372d09d21 SHA512 d77dac2e885ea752e900a2f6e3d9cf24fdd3365d1e9e2ba51c5c38b2889a62aaa61e5562799eb8063b5d4ded0bcd43108cd7e5d028cf7dbe72008b208b8e2e76 WHIRLPOOL 0776eb5d0e68a1f12b001f55e5ec0032d722f23e2654c6c8f44cd0f23d9e299b7615094a16f8eff431de08ea185300185ab39c49762564db1d95cfdcea144445 diff --git a/dev-python/vobject/vobject-0.9.2.ebuild b/dev-python/vobject/vobject-0.9.2.ebuild new file mode 100644 index 000000000000..90f112695929 --- /dev/null +++ b/dev-python/vobject/vobject-0.9.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} pypy ) + +inherit distutils-r1 + +DESCRIPTION="Python package for parsing and generating vCard and vCalendar files" +HOMEPAGE="http://eventable.github.io/vobject/ + https://pypi.python.org/pypi/vobject + https://github.com/eventable/vobject" +SRC_URI="https://github.com/eventable/vobject/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}] + dev-python/setuptools"[${PYTHON_USEDEP}] +DEPEND="${RDEPEND}" + +DOCS=( ACKNOWLEDGEMENTS.txt README.md ) + +python_test() { + "${EPYTHON}" tests.py || die "Testing failed under ${EPYTHON}" +} diff --git a/dev-python/webcolors/webcolors-1.5.ebuild b/dev-python/webcolors/webcolors-1.5.ebuild index bf29e4c35f9f..7bcb433ddab9 100644 --- a/dev-python/webcolors/webcolors-1.5.ebuild +++ b/dev-python/webcolors/webcolors-1.5.ebuild @@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" SLOT="0" LICENSE="BSD" -KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux" IUSE="test" DEPEND=" diff --git a/dev-python/webob/webob-1.6.1.ebuild b/dev-python/webob/webob-1.6.1.ebuild index d9be5bd14328..4ceed9c30a27 100644 --- a/dev-python/webob/webob-1.6.1.ebuild +++ b/dev-python/webob/webob-1.6.1.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc test" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] diff --git a/dev-python/websockify/websockify-0.8.0.ebuild b/dev-python/websockify/websockify-0.8.0.ebuild index bba0c42100d4..4bbf0caeef3a 100644 --- a/dev-python/websockify/websockify-0.8.0.ebuild +++ b/dev-python/websockify/websockify-0.8.0.ebuild @@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/kanaka/websockify" LICENSE="LGPL-3" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" diff --git a/dev-python/wsgiintercept/wsgiintercept-1.3.1.ebuild b/dev-python/wsgiintercept/wsgiintercept-1.3.1.ebuild index 7fbde76aea56..539f0ee67a8d 100644 --- a/dev-python/wsgiintercept/wsgiintercept-1.3.1.ebuild +++ b/dev-python/wsgiintercept/wsgiintercept-1.3.1.ebuild @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" SLOT="0" LICENSE="MIT" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="doc test" RDEPEND="" DEPEND=" diff --git a/dev-python/wtf-peewee/Manifest b/dev-python/wtf-peewee/Manifest index d673446db421..a2a7ea3b452f 100644 --- a/dev-python/wtf-peewee/Manifest +++ b/dev-python/wtf-peewee/Manifest @@ -1,3 +1,4 @@ DIST wtf-peewee-0.2.3.tar.gz 60654 SHA256 d64bab9c8b9b247f21534e87a94b988afd9655d7abaa14dc7d2af0bea3a3b9da SHA512 0a8e4a6586a4521d99c35b907935286c20b9106214a9826960073e710fc0a91c68402b9812d2b0119263786f8e48bdcacf999044ade9f3a27afa9bc7fd058926 WHIRLPOOL b44d3480d274f26ff84993c8941c473e6104bab8cd65bd8befb903dc9f2d6fad16299d6b4fc5f3b8af822dbc6aa9781dbe9ba43da6fb2f2dcf929578d3eac7ea DIST wtf-peewee-0.2.4.tar.gz 60869 SHA256 e771daf99ec6ecab0771742f3bb104058cd5e0b72ad404c6d278b6eefc116349 SHA512 f63ecae4b39873124d11408a58732cc147a7b8a68b7f19be1f8ff67c4847b7daddd9f62c180a723af00176d2d13531fa30d076cf64ea618c260da522555ec7e7 WHIRLPOOL 0fcbc0c919e1df3af1f5d2787ebb8934c697e7dc6f65c9b264306d62a9b552e8969658c7cf6654f260b0e902b4aa3708aed694b36b4262cbf4e3e49aa2c9e43e DIST wtf-peewee-0.2.5.tar.gz 60905 SHA256 79bc345a1c543d78deaa0767f792c152abb34d9a90b98cbd65ac4cce8849d00b SHA512 10758f0617d28baee850d6a2f6041eaf16ac9accef3be51d8156bd0c387e6324708668c4c681f3a7fd7da309b6546e96e518d219905ac9148d51e59959bb9129 WHIRLPOOL 93c2518e6636536f9f57035468a76d3dd5477e8fdbed3bfbdbe652a91c6abbedd1835c7dd3031f49986786e408ac88d99710bcd40254cb3fe09e25a65e403c6b +DIST wtf-peewee-0.2.6.tar.gz 61072 SHA256 93d36bac202be4d268bd4e4ad188c5160a4c1f3d8a5d5dd8a2d7c106adaeb26e SHA512 073973e1dbec17fb3b036447e5150d5de36aeb47c697878e4e97abec4de53a77275278000f4dc982bc1aa1a76736f5a15053d583ab04316c568085973025f833 WHIRLPOOL 798ec4d858291d6d5ecbe4ea618abae8d5d39c891a037deeebeff85b974cd5574b0ae8063a8170609ac6c924adbe64c6b8c675089750ad5f9af362c8a2cab5aa diff --git a/dev-python/wtf-peewee/wtf-peewee-0.2.6.ebuild b/dev-python/wtf-peewee/wtf-peewee-0.2.6.ebuild new file mode 100644 index 000000000000..e2f0388676ea --- /dev/null +++ b/dev-python/wtf-peewee/wtf-peewee-0.2.6.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +DESCRIPTION="WTForms integration for peewee models" +HOMEPAGE="https://github.com/coleifer/wtf-peewee/" +SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="examples test" + +RDEPEND=">=dev-python/peewee-2.7.4[${PYTHON_USEDEP}] + dev-python/wtforms[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${PYTHON}" ./runtests.py || die "Testing failed with ${EPYTHON}" +} + +python_install_all() { + use examples && dodoc -r example + distutils-r1_python_install_all +} diff --git a/dev-python/yaql/yaql-1.1.1.ebuild b/dev-python/yaql/yaql-1.1.1.ebuild index d5ac6477caee..1b1a47eb6a70 100644 --- a/dev-python/yaql/yaql-1.1.1.ebuild +++ b/dev-python/yaql/yaql-1.1.1.ebuild @@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux" IUSE="" CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]" diff --git a/dev-ruby/blankslate/blankslate-3.1.3.ebuild b/dev-ruby/blankslate/blankslate-3.1.3.ebuild index 8d93e6eb0156..3cfddaaacf79 100644 --- a/dev-ruby/blankslate/blankslate-3.1.3.ebuild +++ b/dev-ruby/blankslate/blankslate-3.1.3.ebuild @@ -20,7 +20,7 @@ HOMEPAGE="https://rubygems.org/gems/blankslate" IUSE="" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" all_ruby_prepare() { # Avoid test failing with rspec 2.x. diff --git a/dev-ruby/instantiator/instantiator-0.0.6.ebuild b/dev-ruby/instantiator/instantiator-0.0.6.ebuild index 5d940adba0f0..275b0eb7bc0e 100644 --- a/dev-ruby/instantiator/instantiator-0.0.6.ebuild +++ b/dev-ruby/instantiator/instantiator-0.0.6.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/floehopper/introspection" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" ruby_add_rdepend "dev-ruby/blankslate:*" diff --git a/dev-ruby/introspection/introspection-0.0.3.ebuild b/dev-ruby/introspection/introspection-0.0.3.ebuild index 0cb7deb66a8a..f7f567688bb4 100644 --- a/dev-ruby/introspection/introspection-0.0.3.ebuild +++ b/dev-ruby/introspection/introspection-0.0.3.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="http://jamesmead.org/" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" ruby_add_rdepend ">=dev-ruby/metaclass-0.0.1 >=dev-ruby/instantiator-0.0.3" diff --git a/dev-ruby/mocha/mocha-0.14.0.ebuild b/dev-ruby/mocha/mocha-0.14.0.ebuild index 72bca97c8bbe..332ff35919cb 100644 --- a/dev-ruby/mocha/mocha-0.14.0.ebuild +++ b/dev-ruby/mocha/mocha-0.14.0.ebuild @@ -20,7 +20,7 @@ HOMEPAGE="http://gofreerange.com/mocha/docs/" LICENSE="MIT" SLOT="0.14" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/mocha/mocha-1.1.0.ebuild b/dev-ruby/mocha/mocha-1.1.0.ebuild index 4f910faa36ef..7a3203c7212a 100644 --- a/dev-ruby/mocha/mocha-1.1.0.ebuild +++ b/dev-ruby/mocha/mocha-1.1.0.ebuild @@ -19,7 +19,7 @@ HOMEPAGE="http://gofreerange.com/mocha/docs/" LICENSE="MIT" SLOT="1.0" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/rcairo/rcairo-1.14.3.ebuild b/dev-ruby/rcairo/rcairo-1.14.3.ebuild index 19a543a1dad0..d1a08f3898fa 100644 --- a/dev-ruby/rcairo/rcairo-1.14.3.ebuild +++ b/dev-ruby/rcairo/rcairo-1.14.3.ebuild @@ -26,7 +26,7 @@ IUSE="" SLOT="0" LICENSE="|| ( Ruby GPL-2 )" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" RDEPEND="${RDEPEND} >=x11-libs/cairo-1.2.0[svg]" diff --git a/dev-ruby/rgen/rgen-0.8.0.ebuild b/dev-ruby/rgen/rgen-0.8.0.ebuild index ffcde6589218..46b775d60301 100644 --- a/dev-ruby/rgen/rgen-0.8.0.ebuild +++ b/dev-ruby/rgen/rgen-0.8.0.ebuild @@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/mthiede/rgen" LICENSE="MIT" SLOT="0" IUSE="" -KEYWORDS="~amd64 hppa ~ppc ~sparc ~x86" +KEYWORDS="amd64 hppa ~ppc ~sparc ~x86" ruby_add_rdepend "dev-ruby/nokogiri" diff --git a/dev-ruby/ruby-atk/Manifest b/dev-ruby/ruby-atk/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-atk/Manifest +++ b/dev-ruby/ruby-atk/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-atk/ruby-atk-2.2.3-r1.ebuild b/dev-ruby/ruby-atk/ruby-atk-2.2.3-r1.ebuild deleted file mode 100644 index e75c5fda626a..000000000000 --- a/dev-ruby/ruby-atk/ruby-atk-2.2.3-r1.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Atk bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" -DEPEND+=" dev-libs/atk" -RDEPEND+=" dev-libs/atk" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV}" diff --git a/dev-ruby/ruby-atk/ruby-atk-2.2.5.ebuild b/dev-ruby/ruby-atk/ruby-atk-2.2.5.ebuild deleted file mode 100644 index e0a0f2e0c3ee..000000000000 --- a/dev-ruby/ruby-atk/ruby-atk-2.2.5.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Atk bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" -DEPEND+=" dev-libs/atk" -RDEPEND+=" dev-libs/atk" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' test/atk-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-atk/ruby-atk-3.0.7.ebuild b/dev-ruby/ruby-atk/ruby-atk-3.0.7.ebuild index 3199fc37a009..d77253b05922 100644 --- a/dev-ruby/ruby-atk/ruby-atk-3.0.7.ebuild +++ b/dev-ruby/ruby-atk/ruby-atk-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit ruby-ng-gnome2 DESCRIPTION="Ruby Atk bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" dev-libs/atk" RDEPEND+=" dev-libs/atk" diff --git a/dev-ruby/ruby-cairo-gobject/Manifest b/dev-ruby/ruby-cairo-gobject/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-cairo-gobject/Manifest +++ b/dev-ruby/ruby-cairo-gobject/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-2.2.3-r1.ebuild b/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-2.2.3-r1.ebuild deleted file mode 100644 index 93fa11d41bcc..000000000000 --- a/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-2.2.3-r1.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -RUBY_S="ruby-gnome2-all-${PV}/cairo-gobject" - -DESCRIPTION="Ruby cairo-gobject bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/cairo" -RDEPEND+=" x11-libs/cairo" - -ruby_add_rdepend "dev-ruby/rcairo - >=dev-ruby/ruby-glib2-${PV}" diff --git a/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-2.2.5.ebuild b/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-2.2.5.ebuild deleted file mode 100644 index 8c6b573be8ac..000000000000 --- a/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-2.2.5.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -RUBY_S="ruby-gnome2-all-${PV}/cairo-gobject" - -DESCRIPTION="Ruby cairo-gobject bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/cairo" -RDEPEND+=" x11-libs/cairo" - -ruby_add_rdepend "dev-ruby/rcairo - >=dev-ruby/ruby-glib2-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' \ - ../gobject-introspection/test/gobject-introspection-test-utils.rb \ - test/cairo-gobject-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-3.0.7.ebuild b/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-3.0.7.ebuild index 4a6f539074c2..e49a352abc71 100644 --- a/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-3.0.7.ebuild +++ b/dev-ruby/ruby-cairo-gobject/ruby-cairo-gobject-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -10,7 +10,7 @@ inherit ruby-ng-gnome2 RUBY_S="ruby-gnome2-all-${PV}/cairo-gobject" DESCRIPTION="Ruby cairo-gobject bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" x11-libs/cairo" diff --git a/dev-ruby/ruby-clutter-gstreamer/Manifest b/dev-ruby/ruby-clutter-gstreamer/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-clutter-gstreamer/Manifest +++ b/dev-ruby/ruby-clutter-gstreamer/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-2.2.3-r1.ebuild b/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-2.2.3-r1.ebuild deleted file mode 100644 index 1de87d9ccebc..000000000000 --- a/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-2.2.3-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Clutter bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RUBY_S=ruby-gnome2-all-${PV}/clutter-gstreamer - -DEPEND+=" media-libs/clutter-gst" -RDEPEND+=" media-libs/clutter-gst" - -ruby_add_rdepend ">=dev-ruby/ruby-clutter-${PV} - >=dev-ruby/ruby-gstreamer-${PV}" - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-2.2.5.ebuild b/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-2.2.5.ebuild deleted file mode 100644 index e17b27d2de1e..000000000000 --- a/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-2.2.5.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby Clutter bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RUBY_S=ruby-gnome2-all-${PV}/clutter-gstreamer - -DEPEND+=" media-libs/clutter-gst" -RDEPEND+=" media-libs/clutter-gst" - -ruby_add_rdepend ">=dev-ruby/ruby-clutter-${PV} - >=dev-ruby/ruby-gstreamer-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' \ - ../gobject-introspection/test/gobject-introspection-test-utils.rb \ - ../clutter/test/clutter-test-utils.rb \ - test/clutter-gstreamer-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/and have_make/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-3.0.7.ebuild b/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-3.0.7.ebuild index db9b1be35a15..e7fe3c8ecca9 100644 --- a/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-3.0.7.ebuild +++ b/dev-ruby/ruby-clutter-gstreamer/ruby-clutter-gstreamer-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby Clutter bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RUBY_S=ruby-gnome2-all-${PV}/clutter-gstreamer diff --git a/dev-ruby/ruby-clutter-gtk/Manifest b/dev-ruby/ruby-clutter-gtk/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-clutter-gtk/Manifest +++ b/dev-ruby/ruby-clutter-gtk/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-2.2.3-r1.ebuild b/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-2.2.3-r1.ebuild deleted file mode 100644 index 3aeaf615f95c..000000000000 --- a/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-2.2.3-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Clutter bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RUBY_S=ruby-gnome2-all-${PV}/clutter-gtk - -DEPEND+=" media-libs/clutter-gtk" -RDEPEND+=" media-libs/clutter-gtk" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-clutter-${PV} - >=dev-ruby/ruby-gtk3-${PV}" - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-2.2.5.ebuild b/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-2.2.5.ebuild deleted file mode 100644 index da80dce5c365..000000000000 --- a/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-2.2.5.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby Clutter bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RUBY_S=ruby-gnome2-all-${PV}/clutter-gtk - -DEPEND+=" media-libs/clutter-gtk" -RDEPEND+=" media-libs/clutter-gtk" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-clutter-${PV} - >=dev-ruby/ruby-gtk3-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' \ - ../gobject-introspection/test/gobject-introspection-test-utils.rb \ - ../clutter/test/clutter-test-utils.rb \ - test/clutter-gtk-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/and have_make/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-3.0.7.ebuild b/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-3.0.7.ebuild index 03d17abf609f..d620c3c56000 100644 --- a/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-3.0.7.ebuild +++ b/dev-ruby/ruby-clutter-gtk/ruby-clutter-gtk-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby Clutter bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RUBY_S=ruby-gnome2-all-${PV}/clutter-gtk diff --git a/dev-ruby/ruby-clutter/Manifest b/dev-ruby/ruby-clutter/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-clutter/Manifest +++ b/dev-ruby/ruby-clutter/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-clutter/ruby-clutter-2.2.3-r1.ebuild b/dev-ruby/ruby-clutter/ruby-clutter-2.2.3-r1.ebuild deleted file mode 100644 index b11b7be8a6e8..000000000000 --- a/dev-ruby/ruby-clutter/ruby-clutter-2.2.3-r1.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Clutter bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RESTRICT="test" - -RUBY_S=ruby-gnome2-all-${PV}/clutter - -DEPEND+=" media-libs/clutter" -RDEPEND+=" media-libs/clutter" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-cairo-gobject-${PV} - >=dev-ruby/ruby-gobject-introspection-${PV}" - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-clutter/ruby-clutter-2.2.5.ebuild b/dev-ruby/ruby-clutter/ruby-clutter-2.2.5.ebuild deleted file mode 100644 index 63392e8baf1f..000000000000 --- a/dev-ruby/ruby-clutter/ruby-clutter-2.2.5.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby Clutter bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RUBY_S=ruby-gnome2-all-${PV}/clutter - -DEPEND+=" media-libs/clutter" -RDEPEND+=" media-libs/clutter" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-cairo-gobject-${PV} - >=dev-ruby/ruby-gobject-introspection-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' \ - ../gobject-introspection/test/gobject-introspection-test-utils.rb \ - ../cairo-gobject/test/cairo-gobject-test-utils.rb \ - test/clutter-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-clutter/ruby-clutter-3.0.7.ebuild b/dev-ruby/ruby-clutter/ruby-clutter-3.0.7.ebuild index 3cb049b1fcc7..ea4878f10563 100644 --- a/dev-ruby/ruby-clutter/ruby-clutter-3.0.7.ebuild +++ b/dev-ruby/ruby-clutter/ruby-clutter-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby Clutter bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RUBY_S=ruby-gnome2-all-${PV}/clutter diff --git a/dev-ruby/ruby-gdk3/Manifest b/dev-ruby/ruby-gdk3/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-gdk3/Manifest +++ b/dev-ruby/ruby-gdk3/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-gdk3/ruby-gdk3-2.2.3-r1.ebuild b/dev-ruby/ruby-gdk3/ruby-gdk3-2.2.3-r1.ebuild deleted file mode 100644 index ced511a1fb87..000000000000 --- a/dev-ruby/ruby-gdk3/ruby-gdk3-2.2.3-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby GDK-3.x bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/gtk+:3" -RDEPEND+=" x11-libs/gtk+:3" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gdkpixbuf2-${PV} - >=dev-ruby/ruby-atk-${PV} - >=dev-ruby/ruby-cairo-gobject-${PV} - >=dev-ruby/ruby-pango-${PV}" - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-gdk3/ruby-gdk3-2.2.5.ebuild b/dev-ruby/ruby-gdk3/ruby-gdk3-2.2.5.ebuild deleted file mode 100644 index 53c849a423b8..000000000000 --- a/dev-ruby/ruby-gdk3/ruby-gdk3-2.2.5.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby GDK-3.x bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/gtk+:3" -RDEPEND+=" x11-libs/gtk+:3" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gdkpixbuf2-${PV} - >=dev-ruby/ruby-atk-${PV} - >=dev-ruby/ruby-cairo-gobject-${PV} - >=dev-ruby/ruby-pango-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' \ - test/gdk-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-gdk3/ruby-gdk3-3.0.7.ebuild b/dev-ruby/ruby-gdk3/ruby-gdk3-3.0.7.ebuild index 0e601a4be97a..eef62d3891c4 100644 --- a/dev-ruby/ruby-gdk3/ruby-gdk3-3.0.7.ebuild +++ b/dev-ruby/ruby-gdk3/ruby-gdk3-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby GDK-3.x bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" x11-libs/gtk+:3" diff --git a/dev-ruby/ruby-gdkpixbuf2/Manifest b/dev-ruby/ruby-gdkpixbuf2/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-gdkpixbuf2/Manifest +++ b/dev-ruby/ruby-gdkpixbuf2/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3-r1.ebuild b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3-r1.ebuild deleted file mode 100644 index ec6aa67d534b..000000000000 --- a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3-r1.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_NAME="gdk_pixbuf2" - -inherit ruby-ng-gnome2 - -RUBY_S=ruby-gnome2-all-${PV}/${RUBY_FAKEGEM_NAME} - -DESCRIPTION="Ruby GdkPixbuf2 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND+=" x11-libs/gtk+:2" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV}" diff --git a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.5.ebuild b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.5.ebuild deleted file mode 100644 index ec6aa67d534b..000000000000 --- a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.5.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_NAME="gdk_pixbuf2" - -inherit ruby-ng-gnome2 - -RUBY_S=ruby-gnome2-all-${PV}/${RUBY_FAKEGEM_NAME} - -DESCRIPTION="Ruby GdkPixbuf2 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND+=" x11-libs/gtk+:2" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV}" diff --git a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-3.0.7.ebuild b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-3.0.7.ebuild index 9f1b62983576..f343d0d2418a 100644 --- a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-3.0.7.ebuild +++ b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -12,7 +12,7 @@ inherit ruby-ng-gnome2 RUBY_S=ruby-gnome2-all-${PV}/${RUBY_FAKEGEM_NAME} DESCRIPTION="Ruby GdkPixbuf2 bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RDEPEND+=" x11-libs/gtk+:2" diff --git a/dev-ruby/ruby-gio2/Manifest b/dev-ruby/ruby-gio2/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-gio2/Manifest +++ b/dev-ruby/ruby-gio2/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-gio2/ruby-gio2-2.2.3-r1.ebuild b/dev-ruby/ruby-gio2/ruby-gio2-2.2.3-r1.ebuild deleted file mode 100644 index 9cda376abaec..000000000000 --- a/dev-ruby/ruby-gio2/ruby-gio2-2.2.3-r1.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby binding of GooCanvas" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+="dev-libs/gobject-introspection" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV}" diff --git a/dev-ruby/ruby-gio2/ruby-gio2-2.2.5.ebuild b/dev-ruby/ruby-gio2/ruby-gio2-2.2.5.ebuild deleted file mode 100644 index 55096640d1cc..000000000000 --- a/dev-ruby/ruby-gio2/ruby-gio2-2.2.5.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby binding of GooCanvas" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/ruby-gobject-introspection-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' \ - test/gio2-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-gio2/ruby-gio2-3.0.7.ebuild b/dev-ruby/ruby-gio2/ruby-gio2-3.0.7.ebuild index bf174201a3e9..e3adecee2f44 100644 --- a/dev-ruby/ruby-gio2/ruby-gio2-3.0.7.ebuild +++ b/dev-ruby/ruby-gio2/ruby-gio2-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit ruby-ng-gnome2 DESCRIPTION="Ruby binding of GooCanvas" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV} diff --git a/dev-ruby/ruby-glib2/Manifest b/dev-ruby/ruby-glib2/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-glib2/Manifest +++ b/dev-ruby/ruby-glib2/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-glib2/ruby-glib2-2.2.3-r1.ebuild b/dev-ruby/ruby-glib2/ruby-glib2-2.2.3-r1.ebuild deleted file mode 100644 index cd62941620b5..000000000000 --- a/dev-ruby/ruby-glib2/ruby-glib2-2.2.3-r1.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Glib2 bindings" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="" -RDEPEND+=" >=dev-libs/glib-2" -DEPEND+=" >=dev-libs/glib-2" - -ruby_add_bdepend "dev-ruby/pkg-config - test? ( >=dev-ruby/test-unit-2 )" - -RUBY_PATCHES="${FILESDIR}/${P}-glib-2.44.patch" #554126 - -all_ruby_prepare() { - # Our sandbox always provides LD_PRELOAD in the environment. - sed -i -e 's/unless ENV.empty?/unless (ENV.keys - ["LD_PRELOAD"]).empty?/' test/test_spawn.rb || die -} - -each_ruby_configure() { - ${RUBY} extconf.rb || die "extconf.rb failed" -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-glib2/ruby-glib2-2.2.5.ebuild b/dev-ruby/ruby-glib2/ruby-glib2-2.2.5.ebuild deleted file mode 100644 index 75b409b606a3..000000000000 --- a/dev-ruby/ruby-glib2/ruby-glib2-2.2.5.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Glib2 bindings" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -IUSE="" -RDEPEND+=" >=dev-libs/glib-2" -DEPEND+=" >=dev-libs/glib-2" - -ruby_add_bdepend "dev-ruby/pkg-config - test? ( >=dev-ruby/test-unit-2 )" - -all_ruby_prepare() { - # Our sandbox always provides LD_PRELOAD in the environment. - sed -i -e 's/unless ENV.empty?/unless (ENV.keys - ["LD_PRELOAD"]).empty?/' test/test_spawn.rb || die - - # Remove pregenerated Makefile since it will otherwise be shared by all targets. - rm -f Makefile Makefile.lib ext/glib2/Makefile || die -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-glib2/ruby-glib2-3.0.7.ebuild b/dev-ruby/ruby-glib2/ruby-glib2-3.0.7.ebuild index 0b6518be389f..cdb8bc5440d5 100644 --- a/dev-ruby/ruby-glib2/ruby-glib2-3.0.7.ebuild +++ b/dev-ruby/ruby-glib2/ruby-glib2-3.0.7.ebuild @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22 ruby23" inherit ruby-ng-gnome2 DESCRIPTION="Ruby Glib2 bindings" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +KEYWORDS="amd64 ~ppc ~ppc64 ~x86" IUSE="" RDEPEND+=" >=dev-libs/glib-2" DEPEND+=" >=dev-libs/glib-2" diff --git a/dev-ruby/ruby-gnome2/ruby-gnome2-2.2.3-r1.ebuild b/dev-ruby/ruby-gnome2/ruby-gnome2-2.2.3-r1.ebuild deleted file mode 100644 index 720358ca2d93..000000000000 --- a/dev-ruby/ruby-gnome2/ruby-gnome2-2.2.3-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng - -DESCRIPTION="Ruby Gnome2 bindings" -HOMEPAGE="http://ruby-gnome2.sourceforge.jp/" -SRC_URI="" - -LICENSE="Ruby" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -ruby_add_rdepend " - >=dev-ruby/ruby-atk-${PV} - >=dev-ruby/ruby-clutter-${PV} - >=dev-ruby/ruby-clutter-gstreamer-${PV} - >=dev-ruby/ruby-clutter-gtk-${PV} - >=dev-ruby/ruby-gdkpixbuf2-${PV} - >=dev-ruby/ruby-gdk3-${PV} - >=dev-ruby/ruby-gio2-${PV} - >=dev-ruby/ruby-gstreamer-${PV} - >=dev-ruby/ruby-gtk2-${PV} - >=dev-ruby/ruby-gtk3-${PV} - >=dev-ruby/ruby-gtksourceview-${PV} - >=dev-ruby/ruby-gtksourceview3-${PV} - >=dev-ruby/ruby-pango-${PV} - >=dev-ruby/ruby-poppler-${PV} - >=dev-ruby/ruby-rsvg-${PV} - >=dev-ruby/ruby-vte-${PV} - >=dev-ruby/ruby-vte3-${PV} - >=dev-ruby/ruby-webkit-gtk2-${PV} - >=dev-ruby/ruby-webkit-gtk-${PV}" diff --git a/dev-ruby/ruby-gnome2/ruby-gnome2-2.2.5.ebuild b/dev-ruby/ruby-gnome2/ruby-gnome2-2.2.5.ebuild deleted file mode 100644 index 720358ca2d93..000000000000 --- a/dev-ruby/ruby-gnome2/ruby-gnome2-2.2.5.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng - -DESCRIPTION="Ruby Gnome2 bindings" -HOMEPAGE="http://ruby-gnome2.sourceforge.jp/" -SRC_URI="" - -LICENSE="Ruby" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -ruby_add_rdepend " - >=dev-ruby/ruby-atk-${PV} - >=dev-ruby/ruby-clutter-${PV} - >=dev-ruby/ruby-clutter-gstreamer-${PV} - >=dev-ruby/ruby-clutter-gtk-${PV} - >=dev-ruby/ruby-gdkpixbuf2-${PV} - >=dev-ruby/ruby-gdk3-${PV} - >=dev-ruby/ruby-gio2-${PV} - >=dev-ruby/ruby-gstreamer-${PV} - >=dev-ruby/ruby-gtk2-${PV} - >=dev-ruby/ruby-gtk3-${PV} - >=dev-ruby/ruby-gtksourceview-${PV} - >=dev-ruby/ruby-gtksourceview3-${PV} - >=dev-ruby/ruby-pango-${PV} - >=dev-ruby/ruby-poppler-${PV} - >=dev-ruby/ruby-rsvg-${PV} - >=dev-ruby/ruby-vte-${PV} - >=dev-ruby/ruby-vte3-${PV} - >=dev-ruby/ruby-webkit-gtk2-${PV} - >=dev-ruby/ruby-webkit-gtk-${PV}" diff --git a/dev-ruby/ruby-gnome2/ruby-gnome2-3.0.7.ebuild b/dev-ruby/ruby-gnome2/ruby-gnome2-3.0.7.ebuild index ffd5c7f164c9..7ef87b58f3e5 100644 --- a/dev-ruby/ruby-gnome2/ruby-gnome2-3.0.7.ebuild +++ b/dev-ruby/ruby-gnome2/ruby-gnome2-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,7 +13,7 @@ SRC_URI="" LICENSE="Ruby" SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" ruby_add_rdepend " diff --git a/dev-ruby/ruby-gobject-introspection/Manifest b/dev-ruby/ruby-gobject-introspection/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-gobject-introspection/Manifest +++ b/dev-ruby/ruby-gobject-introspection/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-2.2.3-r1.ebuild b/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-2.2.3-r1.ebuild deleted file mode 100644 index 25aeb67fe790..000000000000 --- a/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-2.2.3-r1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -RUBY_S=ruby-gnome2-all-${PV}/gobject-introspection - -DESCRIPTION="Ruby GObjectIntrosprction bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" dev-libs/gobject-introspection" -RDEPEND+=" dev-libs/gobject-introspection" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV}" diff --git a/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-2.2.5.ebuild b/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-2.2.5.ebuild deleted file mode 100644 index 171884a96a69..000000000000 --- a/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-2.2.5.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -RUBY_S=ruby-gnome2-all-${PV}/gobject-introspection - -DESCRIPTION="Ruby GObjectIntrospection bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" dev-libs/gobject-introspection" -RDEPEND+=" dev-libs/gobject-introspection" - -ruby_add_rdepend "~dev-ruby/ruby-glib2-${PV}" - -all_ruby_prepare() { - # Remove pregenerated Makefile since it will otherwise be shared by all targets. - rm -f Makefile Makefile.lib ext/gobject-introspection/Makefile || die - - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' test/gobject-introspection-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-3.0.7.ebuild b/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-3.0.7.ebuild index 171884a96a69..705c74ea9762 100644 --- a/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-3.0.7.ebuild +++ b/dev-ruby/ruby-gobject-introspection/ruby-gobject-introspection-3.0.7.ebuild @@ -10,7 +10,7 @@ inherit ruby-ng-gnome2 RUBY_S=ruby-gnome2-all-${PV}/gobject-introspection DESCRIPTION="Ruby GObjectIntrospection bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" dev-libs/gobject-introspection" diff --git a/dev-ruby/ruby-gstreamer/Manifest b/dev-ruby/ruby-gstreamer/Manifest index 6e5b8dc70f98..cd16073f8857 100644 --- a/dev-ruby/ruby-gstreamer/Manifest +++ b/dev-ruby/ruby-gstreamer/Manifest @@ -1,5 +1,4 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 DIST ruby-gnome2-all-2.2.4.tar.gz 1699429 SHA256 9274e21b2613ec9ef8b73dd27d180b3fa8b8214a442d742121b0d1cc7f313670 SHA512 33e79109e3acdb1fae07a2b4c867d9b83508ed275dd8fc6148bc976a9fefa2ea0cede01a6762570bdaf1d53173df40b978366837363b4d956b864c6a5f08bf39 WHIRLPOOL bb6a57ee7e4822d807d4506b8c78da1711b222d636d01a55792c5ba37b747997e3288afea3afeb71c96f75f2d58931d283a639632d7fcb1d8b1bc36c294a32af -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-gstreamer/ruby-gstreamer-2.2.3-r1.ebuild b/dev-ruby/ruby-gstreamer/ruby-gstreamer-2.2.3-r1.ebuild deleted file mode 100644 index 64cb837fd40d..000000000000 --- a/dev-ruby/ruby-gstreamer/ruby-gstreamer-2.2.3-r1.ebuild +++ /dev/null @@ -1,20 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby GStreamer bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="${RDEPEND} - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0" -DEPEND="${DEPEND} - dev-libs/gobject-introspection - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0" diff --git a/dev-ruby/ruby-gstreamer/ruby-gstreamer-2.2.5.ebuild b/dev-ruby/ruby-gstreamer/ruby-gstreamer-2.2.5.ebuild deleted file mode 100644 index eff4c1cdf25c..000000000000 --- a/dev-ruby/ruby-gstreamer/ruby-gstreamer-2.2.5.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby GStreamer bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="${RDEPEND} - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0" -DEPEND="${DEPEND} - dev-libs/gobject-introspection - media-libs/gstreamer:1.0 - media-libs/gst-plugins-base:1.0" - -ruby_add_rdepend " - ~dev-ruby/ruby-glib2-${PV} - ~dev-ruby/ruby-gobject-introspection-${PV} -" - -all_ruby_prepare() { - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} diff --git a/dev-ruby/ruby-gstreamer/ruby-gstreamer-3.0.7.ebuild b/dev-ruby/ruby-gstreamer/ruby-gstreamer-3.0.7.ebuild index b16ed87d1c40..fe229876ceab 100644 --- a/dev-ruby/ruby-gstreamer/ruby-gstreamer-3.0.7.ebuild +++ b/dev-ruby/ruby-gstreamer/ruby-gstreamer-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby GStreamer bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RDEPEND="${RDEPEND} diff --git a/dev-ruby/ruby-gtk2/Manifest b/dev-ruby/ruby-gtk2/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-gtk2/Manifest +++ b/dev-ruby/ruby-gtk2/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-gtk2/ruby-gtk2-2.2.3-r1.ebuild b/dev-ruby/ruby-gtk2/ruby-gtk2-2.2.3-r1.ebuild deleted file mode 100644 index 8e011d3c49f6..000000000000 --- a/dev-ruby/ruby-gtk2/ruby-gtk2-2.2.3-r1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Gtk2 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/gtk+:2 - x11-themes/hicolor-icon-theme" -RDEPEND+=" x11-libs/gtk+:2" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/ruby-pango-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gdkpixbuf2-${PV} - >=dev-ruby/ruby-atk-${PV} - >=dev-ruby/ruby-pango-${PV}" diff --git a/dev-ruby/ruby-gtk2/ruby-gtk2-2.2.5.ebuild b/dev-ruby/ruby-gtk2/ruby-gtk2-2.2.5.ebuild deleted file mode 100644 index 614cfdd1cd85..000000000000 --- a/dev-ruby/ruby-gtk2/ruby-gtk2-2.2.5.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby Gtk2 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/gtk+:2 - x11-themes/hicolor-icon-theme" -RDEPEND+=" x11-libs/gtk+:2" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/ruby-pango-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gdkpixbuf2-${PV} - >=dev-ruby/ruby-atk-${PV} - >=dev-ruby/ruby-pango-${PV}" - -all_ruby_prepare() { - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} diff --git a/dev-ruby/ruby-gtk2/ruby-gtk2-3.0.7.ebuild b/dev-ruby/ruby-gtk2/ruby-gtk2-3.0.7.ebuild index 5660e5fc4584..a059758ea526 100644 --- a/dev-ruby/ruby-gtk2/ruby-gtk2-3.0.7.ebuild +++ b/dev-ruby/ruby-gtk2/ruby-gtk2-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby Gtk2 bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" x11-libs/gtk+:2 diff --git a/dev-ruby/ruby-gtk3/Manifest b/dev-ruby/ruby-gtk3/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-gtk3/Manifest +++ b/dev-ruby/ruby-gtk3/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3-r1.ebuild b/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3-r1.ebuild deleted file mode 100644 index b1acd5950db8..000000000000 --- a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3-r1.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Gtk3 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/gtk+:3" -RDEPEND+=" x11-libs/gtk+:3" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/ruby-pango-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gdkpixbuf2-${PV} - >=dev-ruby/ruby-atk-${PV} - >=dev-ruby/ruby-gdk3-${PV} - >=dev-ruby/ruby-gio2-${PV}" diff --git a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.5.ebuild b/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.5.ebuild deleted file mode 100644 index fed2b93b9c2e..000000000000 --- a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.5.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby Gtk3 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/gtk+:3" -RDEPEND+=" x11-libs/gtk+:3" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/ruby-pango-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gdkpixbuf2-${PV} - >=dev-ruby/ruby-atk-${PV} - >=dev-ruby/ruby-gdk3-${PV} - >=dev-ruby/ruby-gio2-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. -# sed -i -e '/notify/ s:^:#:' \ -# test/clutter-gtk-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} diff --git a/dev-ruby/ruby-gtk3/ruby-gtk3-3.0.7-r1.ebuild b/dev-ruby/ruby-gtk3/ruby-gtk3-3.0.7-r1.ebuild index 49915a59c29f..c81c6499ddbb 100644 --- a/dev-ruby/ruby-gtk3/ruby-gtk3-3.0.7-r1.ebuild +++ b/dev-ruby/ruby-gtk3/ruby-gtk3-3.0.7-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby Gtk3 bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" x11-libs/gtk+:3" diff --git a/dev-ruby/ruby-gtksourceview/Manifest b/dev-ruby/ruby-gtksourceview/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-gtksourceview/Manifest +++ b/dev-ruby/ruby-gtksourceview/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-2.2.3-r1.ebuild b/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-2.2.3-r1.ebuild deleted file mode 100644 index a87dd45e60cf..000000000000 --- a/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-2.2.3-r1.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_NAME="gtksourceview2" - -inherit ruby-ng-gnome2 - -RUBY_S=ruby-gnome2-all-${PV}/gtksourceview2 - -DESCRIPTION="Ruby bindings for gtksourceview" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND+=" x11-libs/gtksourceview:2.0" -DEPEND+=" x11-libs/gtksourceview:2.0" - -ruby_add_rdepend ">=dev-ruby/ruby-gtk2-${PV}" diff --git a/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-2.2.5.ebuild b/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-2.2.5.ebuild deleted file mode 100644 index c26bf1a4bfad..000000000000 --- a/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-2.2.5.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_NAME="gtksourceview2" - -inherit virtualx ruby-ng-gnome2 - -RUBY_S=ruby-gnome2-all-${PV}/gtksourceview2 - -DESCRIPTION="Ruby bindings for gtksourceview" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND+=" x11-libs/gtksourceview:2.0" -DEPEND+=" x11-libs/gtksourceview:2.0" - -ruby_add_rdepend ">=dev-ruby/ruby-gtk2-${PV}" - -all_ruby_prepare() { - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} diff --git a/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-3.0.7.ebuild b/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-3.0.7.ebuild index 23d8e06c07ee..4ec40537e234 100644 --- a/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-3.0.7.ebuild +++ b/dev-ruby/ruby-gtksourceview/ruby-gtksourceview-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -12,7 +12,7 @@ inherit virtualx ruby-ng-gnome2 RUBY_S=ruby-gnome2-all-${PV}/gtksourceview2 DESCRIPTION="Ruby bindings for gtksourceview" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RDEPEND+=" x11-libs/gtksourceview:2.0" diff --git a/dev-ruby/ruby-gtksourceview3/Manifest b/dev-ruby/ruby-gtksourceview3/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-gtksourceview3/Manifest +++ b/dev-ruby/ruby-gtksourceview3/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-2.2.3-r1.ebuild b/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-2.2.3-r1.ebuild deleted file mode 100644 index b5f37edadbca..000000000000 --- a/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-2.2.3-r1.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Gtk3 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/gtksourceview:3.0" -RDEPEND+=" x11-libs/gtksourceview:3.0" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gtk3-${PV}" diff --git a/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-2.2.5.ebuild b/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-2.2.5.ebuild deleted file mode 100644 index 9b34bd7a79ea..000000000000 --- a/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-2.2.5.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby Gtk3 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/gtksourceview:3.0" -RDEPEND+=" x11-libs/gtksourceview:3.0" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gtk3-${PV}" - -all_ruby_prepare() { - # Avoid compilation of dependencies during test. - sed -i -e '/system/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} diff --git a/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-3.0.7.ebuild b/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-3.0.7.ebuild index f63087ca7bcf..35c4d11c9c83 100644 --- a/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-3.0.7.ebuild +++ b/dev-ruby/ruby-gtksourceview3/ruby-gtksourceview3-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby Gtk3 bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" x11-libs/gtksourceview:3.0" diff --git a/dev-ruby/ruby-pango/Manifest b/dev-ruby/ruby-pango/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-pango/Manifest +++ b/dev-ruby/ruby-pango/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-pango/ruby-pango-2.2.3-r1.ebuild b/dev-ruby/ruby-pango/ruby-pango-2.2.3-r1.ebuild deleted file mode 100644 index e223c5337cd7..000000000000 --- a/dev-ruby/ruby-pango/ruby-pango-2.2.3-r1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Pango bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" -DEPEND+=" >=x11-libs/pango-1.2.1" -RDEPEND+=" >=x11-libs/pango-1.2.1" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/rcairo-1.12.5" -ruby_add_bdepend ">=dev-ruby/rcairo-1.12.5" - -all_ruby_prepare() { - # Remove test depending on specific locales to be set up: bug 526248 - rm test/test-language.rb || die -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-pango/ruby-pango-2.2.5.ebuild b/dev-ruby/ruby-pango/ruby-pango-2.2.5.ebuild deleted file mode 100644 index fa0fc57a31e0..000000000000 --- a/dev-ruby/ruby-pango/ruby-pango-2.2.5.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby Pango bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" -DEPEND+=" >=x11-libs/pango-1.2.1" -RDEPEND+=" >=x11-libs/pango-1.2.1" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/rcairo-1.14.0" -ruby_add_bdepend ">=dev-ruby/rcairo-1.14.0" - -all_ruby_prepare() { - # Remove test depending on specific locales to be set up: bug 526248 - rm -f test/test-language.rb || die -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-pango/ruby-pango-3.0.7.ebuild b/dev-ruby/ruby-pango/ruby-pango-3.0.7.ebuild index c8cd37ca26b6..8e09b7377143 100644 --- a/dev-ruby/ruby-pango/ruby-pango-3.0.7.ebuild +++ b/dev-ruby/ruby-pango/ruby-pango-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit ruby-ng-gnome2 DESCRIPTION="Ruby Pango bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" >=x11-libs/pango-1.2.1" RDEPEND+=" >=x11-libs/pango-1.2.1" diff --git a/dev-ruby/ruby-poppler/Manifest b/dev-ruby/ruby-poppler/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-poppler/Manifest +++ b/dev-ruby/ruby-poppler/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-poppler/ruby-poppler-2.2.3-r1.ebuild b/dev-ruby/ruby-poppler/ruby-poppler-2.2.3-r1.ebuild deleted file mode 100644 index 06336b6f6e52..000000000000 --- a/dev-ruby/ruby-poppler/ruby-poppler-2.2.3-r1.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby poppler-glib bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND+=" app-text/poppler[cairo]" -DEPEND+=" app-text/poppler[cairo]" - -ruby_add_rdepend "dev-ruby/ruby-gdkpixbuf2 - >=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/ruby-gtk2-${PV}" diff --git a/dev-ruby/ruby-poppler/ruby-poppler-2.2.5.ebuild b/dev-ruby/ruby-poppler/ruby-poppler-2.2.5.ebuild deleted file mode 100644 index 999f561d3ccf..000000000000 --- a/dev-ruby/ruby-poppler/ruby-poppler-2.2.5.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby poppler-glib bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND+=" app-text/poppler[cairo]" -DEPEND+=" app-text/poppler[cairo]" - -ruby_add_rdepend "dev-ruby/ruby-gdkpixbuf2 - >=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/ruby-gtk2-${PV}" - -all_ruby_prepare() { - # Avoid compilation of dependencies during test. - sed -i -e '/if have_make/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-poppler/ruby-poppler-3.0.7-r1.ebuild b/dev-ruby/ruby-poppler/ruby-poppler-3.0.7-r1.ebuild index e37472e8a72b..34a4208eacfc 100644 --- a/dev-ruby/ruby-poppler/ruby-poppler-3.0.7-r1.ebuild +++ b/dev-ruby/ruby-poppler/ruby-poppler-3.0.7-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit ruby-ng-gnome2 DESCRIPTION="Ruby poppler-glib bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RDEPEND+=" app-text/poppler[cairo]" diff --git a/dev-ruby/ruby-rsvg/Manifest b/dev-ruby/ruby-rsvg/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-rsvg/Manifest +++ b/dev-ruby/ruby-rsvg/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-rsvg/ruby-rsvg-2.2.3-r1.ebuild b/dev-ruby/ruby-rsvg/ruby-rsvg-2.2.3-r1.ebuild deleted file mode 100644 index e443814523be..000000000000 --- a/dev-ruby/ruby-rsvg/ruby-rsvg-2.2.3-r1.ebuild +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_NAME=rsvg2 - -inherit ruby-ng-gnome2 - -RUBY_S=ruby-gnome2-all-${PV}/rsvg2 - -DESCRIPTION="Ruby bindings for librsvg" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="cairo" - -RDEPEND+=" >=gnome-base/librsvg-2.8" -DEPEND+=" >=gnome-base/librsvg-2.8" - -ruby_add_rdepend ">=dev-ruby/ruby-glib2-${PV} - >=dev-ruby/ruby-gdkpixbuf2-${PV} - cairo? ( dev-ruby/rcairo )" diff --git a/dev-ruby/ruby-rsvg/ruby-rsvg-2.2.5.ebuild b/dev-ruby/ruby-rsvg/ruby-rsvg-2.2.5.ebuild deleted file mode 100644 index 1132e50495b2..000000000000 --- a/dev-ruby/ruby-rsvg/ruby-rsvg-2.2.5.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_NAME=rsvg2 - -inherit ruby-ng-gnome2 - -RUBY_S=ruby-gnome2-all-${PV}/rsvg2 - -DESCRIPTION="Ruby bindings for librsvg" -KEYWORDS="~amd64 ~ppc ~x86" - -RDEPEND+=" >=gnome-base/librsvg-2.8" -DEPEND+=" >=gnome-base/librsvg-2.8" - -ruby_add_rdepend " - >=dev-ruby/ruby-gdkpixbuf2-${PV} - >=dev-ruby/rcairo-1.12.8" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' test/rsvg2-test-utils.rb || die - - # Avoid compilation of dependencies during test. - sed -i -e '/and have_make/,/^ end/ s:^:#:' test/run-test.rb || die -} - -each_ruby_test() { - ${RUBY} test/run-test.rb || die -} diff --git a/dev-ruby/ruby-rsvg/ruby-rsvg-3.0.7.ebuild b/dev-ruby/ruby-rsvg/ruby-rsvg-3.0.7.ebuild index 60beba1ea0e4..0e625ccc0d77 100644 --- a/dev-ruby/ruby-rsvg/ruby-rsvg-3.0.7.ebuild +++ b/dev-ruby/ruby-rsvg/ruby-rsvg-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -12,7 +12,7 @@ inherit ruby-ng-gnome2 RUBY_S=ruby-gnome2-all-${PV}/rsvg2 DESCRIPTION="Ruby bindings for librsvg" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" RDEPEND+=" >=gnome-base/librsvg-2.8" DEPEND+=" >=gnome-base/librsvg-2.8" diff --git a/dev-ruby/ruby-vte/Manifest b/dev-ruby/ruby-vte/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-vte/Manifest +++ b/dev-ruby/ruby-vte/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-vte/ruby-vte-2.2.3-r1.ebuild b/dev-ruby/ruby-vte/ruby-vte-2.2.3-r1.ebuild deleted file mode 100644 index 9873dce0ccff..000000000000 --- a/dev-ruby/ruby-vte/ruby-vte-2.2.3-r1.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby vte bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND+=" >=x11-libs/vte-0.12.1:0" -DEPEND+=" >=x11-libs/vte-0.12.1:0" - -ruby_add_rdepend ">=dev-ruby/ruby-gtk2-${PV}" diff --git a/dev-ruby/ruby-vte/ruby-vte-2.2.5.ebuild b/dev-ruby/ruby-vte/ruby-vte-2.2.5.ebuild deleted file mode 100644 index 9873dce0ccff..000000000000 --- a/dev-ruby/ruby-vte/ruby-vte-2.2.5.ebuild +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby vte bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND+=" >=x11-libs/vte-0.12.1:0" -DEPEND+=" >=x11-libs/vte-0.12.1:0" - -ruby_add_rdepend ">=dev-ruby/ruby-gtk2-${PV}" diff --git a/dev-ruby/ruby-vte/ruby-vte-3.0.7.ebuild b/dev-ruby/ruby-vte/ruby-vte-3.0.7.ebuild index ddc2f728b607..81a499a1966e 100644 --- a/dev-ruby/ruby-vte/ruby-vte-3.0.7.ebuild +++ b/dev-ruby/ruby-vte/ruby-vte-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit ruby-ng-gnome2 DESCRIPTION="Ruby vte bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" RDEPEND+=" >=x11-libs/vte-0.12.1:0" diff --git a/dev-ruby/ruby-vte3/Manifest b/dev-ruby/ruby-vte3/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-vte3/Manifest +++ b/dev-ruby/ruby-vte3/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-vte3/ruby-vte3-2.2.3-r1.ebuild b/dev-ruby/ruby-vte3/ruby-vte3-2.2.3-r1.ebuild deleted file mode 100644 index 01a4cd815dc8..000000000000 --- a/dev-ruby/ruby-vte3/ruby-vte3-2.2.3-r1.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby VTE bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/vte:2.90" -RDEPEND+=" x11-libs/vte:2.90" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gtk3-${PV}" diff --git a/dev-ruby/ruby-vte3/ruby-vte3-2.2.5.ebuild b/dev-ruby/ruby-vte3/ruby-vte3-2.2.5.ebuild deleted file mode 100644 index 01a4cd815dc8..000000000000 --- a/dev-ruby/ruby-vte3/ruby-vte3-2.2.5.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby VTE bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" x11-libs/vte:2.90" -RDEPEND+=" x11-libs/vte:2.90" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gtk3-${PV}" diff --git a/dev-ruby/ruby-vte3/ruby-vte3-3.0.7-r1.ebuild b/dev-ruby/ruby-vte3/ruby-vte3-3.0.7-r1.ebuild index 788f5e5f4457..b62855e4db6f 100644 --- a/dev-ruby/ruby-vte3/ruby-vte3-3.0.7-r1.ebuild +++ b/dev-ruby/ruby-vte3/ruby-vte3-3.0.7-r1.ebuild @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby VTE bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" x11-libs/vte:2.91" diff --git a/dev-ruby/ruby-vte3/ruby-vte3-3.0.7.ebuild b/dev-ruby/ruby-vte3/ruby-vte3-3.0.7.ebuild index 46ed99c4bcb5..ef90a857e2dd 100644 --- a/dev-ruby/ruby-vte3/ruby-vte3-3.0.7.ebuild +++ b/dev-ruby/ruby-vte3/ruby-vte3-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby VTE bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" x11-libs/vte:2.90" diff --git a/dev-ruby/ruby-webkit-gtk/Manifest b/dev-ruby/ruby-webkit-gtk/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-webkit-gtk/Manifest +++ b/dev-ruby/ruby-webkit-gtk/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-2.2.3-r1.ebuild b/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-2.2.3-r1.ebuild deleted file mode 100644 index e862c6c03ba2..000000000000 --- a/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-2.2.3-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby WebKitGtk bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" net-libs/webkit-gtk:3" -RDEPEND+=" net-libs/webkit-gtk:3" - -RUBY_S="ruby-gnome2-all-${PV}/webkit-gtk" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gobject-introspection-${PV} - >=dev-ruby/ruby-gtk3-${PV}" - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-2.2.5.ebuild b/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-2.2.5.ebuild deleted file mode 100644 index 94b42fd8e5de..000000000000 --- a/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-2.2.5.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby WebKitGtk bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" net-libs/webkit-gtk:3" -RDEPEND+=" net-libs/webkit-gtk:3" - -RUBY_S="ruby-gnome2-all-${PV}/webkit-gtk" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gobject-introspection-${PV} - >=dev-ruby/ruby-gtk3-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' \ - ../gobject-introspection/test/gobject-introspection-test-utils.rb \ - test/webkit-gtk-test-utils.rb || die -} - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-3.0.7.ebuild b/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-3.0.7.ebuild index 57743450a1fa..75e0cee8bd2e 100644 --- a/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-3.0.7.ebuild +++ b/dev-ruby/ruby-webkit-gtk/ruby-webkit-gtk-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby WebKitGtk bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" net-libs/webkit-gtk:3" diff --git a/dev-ruby/ruby-webkit-gtk2/Manifest b/dev-ruby/ruby-webkit-gtk2/Manifest index 68775b3cce5f..180251c80e74 100644 --- a/dev-ruby/ruby-webkit-gtk2/Manifest +++ b/dev-ruby/ruby-webkit-gtk2/Manifest @@ -1,4 +1,3 @@ DIST ruby-gnome2-all-2.2.3.tar.gz 1657315 SHA256 1611038c2a49fe051dfcc779aeca8eb47273718d80a0680442504fd54e228154 SHA512 cf6b0c88c91e444f5ff65a4a863630c5455315c08f1b44a5f7c81db51f998d6e83ab62e00276edb4a81ea9942405d76724f52134d2388010ec0f157a6a5dc34e WHIRLPOOL e5a6347b360b64f6b690a28483f8618d58786bbbf1fd6c691952271c85bf1d96dc8c97f1e4ed541f6cf8afac56221950db30873cc83a24210b6feef969eaf4b7 -DIST ruby-gnome2-all-2.2.5.tar.gz 1696485 SHA256 ef22418c95ce9f997235aee1a1b4d1265fad023e78a8f452bdd9e95267dd52b9 SHA512 60693ec2db4c4159a634f33bf7021e078cc06e25d4e10c6ac0c8a30ac03f9b8119ed94d9b62408a2010c9c3d1f812dea3ab5c6c617eda5d4c73272d64934159e WHIRLPOOL 161ae5b591bd1b6ba3601d46bc4fcfa6c57b006bd5903ba5a8c7ec670f11e06091ce5314290e24b312ecb61ceef22fb91231079f03f16a873a4e890142389123 DIST ruby-gnome2-all-3.0.7.tar.gz 1692752 SHA256 4b65da24a5fdd4a774d6f238abcce8a3aca2bad093211bb824fb6a06e5430375 SHA512 0cfd5dd13ef0e0986ddd2235f88ffb21d15e6cb709b47252bb34e587fef88c0234e65f178eccec7dbfd45759ba37f1bbdcee6c7908d3f9daaf3369453b2478ee WHIRLPOOL 0a0e2749f6642485bada7ab22d69a3ed0e4d170a2d0dec6db88e62179264c6093a51c05cca87c64a4a3e9d1bdedb05a92fba81f6098872c06c8cbfa451ccedf2 DIST ruby-gnome2-all-3.0.8.tar.gz 1732574 SHA256 47449f4d9eb9a175fdff5115157b4ea07ad6aa3bff7fa6258d42920b2cbb45a5 SHA512 e30c2cd95db762eff4f5f6d6f03811338657a849fc94d1af71488bb912cc82b85c0aa6860658f6eba66119ef95382ad142661751471a52de9606c5514ec6a6cf WHIRLPOOL 7b0580639ed2d1364e0de0135f9256d014771dfba3e94f6a220a26faa969dcc8cb198eab400ea6ebc25fa89082a8c96cb81ec2b0231784aea3b8e748b322f19e diff --git a/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-2.2.3-r1.ebuild b/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-2.2.3-r1.ebuild deleted file mode 100644 index 3920ed24ebe9..000000000000 --- a/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-2.2.3-r1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit ruby-ng-gnome2 - -DESCRIPTION="Ruby WebKitGtk+ for Gtk 2.0 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" net-libs/webkit-gtk:2" -RDEPEND+=" net-libs/webkit-gtk:2" - -RUBY_S="ruby-gnome2-all-${PV}/webkit-gtk2" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gobject-introspection-${PV} - >=dev-ruby/ruby-gtk2-${PV}" - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-2.2.5.ebuild b/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-2.2.5.ebuild deleted file mode 100644 index f45b9b1abf71..000000000000 --- a/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-2.2.5.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby19 ruby20 ruby21 ruby22" - -inherit virtualx ruby-ng-gnome2 - -DESCRIPTION="Ruby WebKitGtk+ for Gtk 2.0 bindings" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND+=" net-libs/webkit-gtk:2" -RDEPEND+=" net-libs/webkit-gtk:2" - -RUBY_S="ruby-gnome2-all-${PV}/webkit-gtk2" - -ruby_add_bdepend ">=dev-ruby/ruby-glib2-${PV}" -ruby_add_rdepend ">=dev-ruby/ruby-gobject-introspection-${PV} - >=dev-ruby/ruby-gtk2-${PV}" - -all_ruby_prepare() { - # Avoid unneeded dependency on test-unit-notify. - sed -i -e '/notify/ s:^:#:' \ - ../gobject-introspection/test/gobject-introspection-test-utils.rb \ - test/webkit-gtk-test-utils.rb || die -} - -each_ruby_configure() { - : -} - -each_ruby_compile() { - : -} - -each_ruby_test() { - VIRTUALX_COMMAND="${RUBY} test/run-test.rb" - virtualmake || die -} - -each_ruby_install() { - each_fakegem_install -} diff --git a/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-3.0.7.ebuild b/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-3.0.7.ebuild index 12f974261437..97f05335284b 100644 --- a/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-3.0.7.ebuild +++ b/dev-ruby/ruby-webkit-gtk2/ruby-webkit-gtk2-3.0.7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby WebKitGtk+ for Gtk 2.0 bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" net-libs/webkit-gtk:2" diff --git a/dev-ruby/ruby-webkit2-gtk/ruby-webkit2-gtk-3.0.7.ebuild b/dev-ruby/ruby-webkit2-gtk/ruby-webkit2-gtk-3.0.7.ebuild index 05a3d94ab672..f16512e86a44 100644 --- a/dev-ruby/ruby-webkit2-gtk/ruby-webkit2-gtk-3.0.7.ebuild +++ b/dev-ruby/ruby-webkit2-gtk/ruby-webkit2-gtk-3.0.7.ebuild @@ -8,7 +8,7 @@ USE_RUBY="ruby20 ruby21 ruby22" inherit virtualx ruby-ng-gnome2 DESCRIPTION="Ruby WebKitGtk+ for Gtk 3.0 bindings" -KEYWORDS="~amd64 ~ppc ~x86" +KEYWORDS="amd64 ~ppc ~x86" IUSE="" DEPEND+=" net-libs/webkit-gtk:4" diff --git a/dev-ruby/ruby2ruby/ruby2ruby-2.3.0.ebuild b/dev-ruby/ruby2ruby/ruby2ruby-2.3.0.ebuild index 73e39c4f2267..a26ecd9f0dfc 100644 --- a/dev-ruby/ruby2ruby/ruby2ruby-2.3.0.ebuild +++ b/dev-ruby/ruby2ruby/ruby2ruby-2.3.0.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/seattlerb/ruby2ruby" LICENSE="GPL-2" SLOT="2" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="test" ruby_add_rdepend " diff --git a/dev-ruby/ruby_parser/ruby_parser-3.8.2.ebuild b/dev-ruby/ruby_parser/ruby_parser-3.8.2.ebuild index ad9a3b30c7e4..ae109f1c3021 100644 --- a/dev-ruby/ruby_parser/ruby_parser-3.8.2.ebuild +++ b/dev-ruby/ruby_parser/ruby_parser-3.8.2.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/seattlerb/ruby_parser" LICENSE="MIT" SLOT="3" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" ruby_add_rdepend ">=dev-ruby/sexp_processor-4.7.0:4 diff --git a/dev-ruby/sexp_processor/sexp_processor-4.7.0.ebuild b/dev-ruby/sexp_processor/sexp_processor-4.7.0.ebuild index ab53c84d65dc..b8b8df0fcdf9 100644 --- a/dev-ruby/sexp_processor/sexp_processor-4.7.0.ebuild +++ b/dev-ruby/sexp_processor/sexp_processor-4.7.0.ebuild @@ -17,7 +17,7 @@ HOMEPAGE="http://www.zenspider.com/ZSS/Products/ParseTree/" LICENSE="GPL-2" SLOT="4" -KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" ruby_add_bdepend " diff --git a/dev-ruby/sqlite3/sqlite3-1.3.11.ebuild b/dev-ruby/sqlite3/sqlite3-1.3.11.ebuild index fda89b45eba8..d48bae186fd5 100644 --- a/dev-ruby/sqlite3/sqlite3-1.3.11.ebuild +++ b/dev-ruby/sqlite3/sqlite3-1.3.11.ebuild @@ -15,7 +15,7 @@ DESCRIPTION="An extension library to access a SQLite database from Ruby" HOMEPAGE="https://github.com/sparklemotion/sqlite3-ruby" LICENSE="BSD" -KEYWORDS="~amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" SLOT="0" IUSE="" diff --git a/dev-scheme/guile/Manifest b/dev-scheme/guile/Manifest index 3712cc312928..362cf3e99b24 100644 --- a/dev-scheme/guile/Manifest +++ b/dev-scheme/guile/Manifest @@ -1,3 +1,2 @@ DIST guile-1.8.8.tar.gz 3956654 SHA256 c3471fed2e72e5b04ad133bbaaf16369e8360283679bcf19800bc1b381024050 SHA512 ede6feb90cd419d8763feb8c5169275490a653919573c4dfced025b74cf591072b3a10ffb9a3f6ee3fe7b0a0956ffcf434e0859b421455c8349cea56bf427db0 WHIRLPOOL 104810030b5dae16805595a5b398e5a7e600771b64b08d5ff686036e2f273dcec3829a16e4cdb1dbb9db5813f2e225476f83e0535a789bc570fc2fc15a76dbe2 -DIST guile-2.0.12.tar.gz 7421088 SHA256 8e382930ea17bc547b22349bba819caf61313f6de9ed110e7d87f1ec68349026 SHA512 638562b18bca8f5192ea116f89de5802c1193440c6394bbc2aad873a5b897dc9a2a05f05208c089437626d25ea4ab016bea56feb04a8cdea26d7e495cd5b3a7b WHIRLPOOL 4485e2820c9ce73370d6eb41fe81e8d6135d4e266dce396c4ec42c0ac214f3c36d9fa36c8456ef6587f0213577c89d8cbd9cc2a8e3de9665a3a4b97736ac731e DIST guile-2.0.13.tar.gz 7808173 SHA256 ee8073c4582bb4f06412452fdf5dd185aae607441f1313c824f44bdd668b0bde SHA512 79fd5fda5064331eb687934ec3eaf07943f5b23bd05fbce23ab5ee3698864250b33746e33b8f074692b56f7b428dac42ed5d3f5b9dc17d171aa6dfadc1625b00 WHIRLPOOL 5f8b8e0f0e5fd2cde8fd4b1ca89ebe0231dd5f746945d71412a9d1ce57094013882972d9791511ef47e9bf1f2e9eff77a515dab8b4a6c0316122cb9ef49b5a7d diff --git a/dev-scheme/guile/files/guile-1.8.8-mkdir-mask.patch b/dev-scheme/guile/files/guile-1.8.8-mkdir-mask.patch new file mode 100644 index 000000000000..7d1c703835f1 --- /dev/null +++ b/dev-scheme/guile/files/guile-1.8.8-mkdir-mask.patch @@ -0,0 +1,35 @@ +--- a/libguile/filesys.c 2016-11-05 15:03:52.131894648 +0100 ++++ b/libguile/filesys.c 2016-11-05 15:07:13.275894481 +0100 +@@ -791,24 +791,18 @@ + SCM_DEFINE (scm_mkdir, "mkdir", 1, 1, 0, + (SCM path, SCM mode), + "Create a new directory named by @var{path}. If @var{mode} is omitted\n" +- "then the permissions of the directory file are set using the current\n" +- "umask. Otherwise they are set to the decimal value specified with\n" +- "@var{mode}. The return value is unspecified.") ++ "then the permissions of the directory are set to @code{#o777}\n" ++ "masked with the current umask (@pxref{Processes, @code{umask}}).\n" ++ "Otherwise they are set to the value specified with @var{mode}.\n" ++ "The return value is unspecified.") + #define FUNC_NAME s_scm_mkdir + { + int rv; +- mode_t mask; ++ mode_t c_mode; + +- if (SCM_UNBNDP (mode)) +- { +- mask = umask (0); +- umask (mask); +- STRING_SYSCALL (path, c_path, rv = mkdir (c_path, 0777 ^ mask)); +- } +- else +- { +- STRING_SYSCALL (path, c_path, rv = mkdir (c_path, scm_to_uint (mode))); +- } ++ c_mode = SCM_UNBNDP (mode) ? 0777 : scm_to_uint (mode); ++ ++ STRING_SYSCALL (path, c_path, rv = mkdir (c_path, c_mode)); + if (rv != 0) + SCM_SYSERROR; + return SCM_UNSPECIFIED; diff --git a/dev-scheme/guile/guile-1.8.8-r3.ebuild b/dev-scheme/guile/guile-1.8.8-r3.ebuild new file mode 100644 index 000000000000..932b6d2b0ce9 --- /dev/null +++ b/dev-scheme/guile/guile-1.8.8-r3.ebuild @@ -0,0 +1,119 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils autotools flag-o-matic elisp-common + +DESCRIPTION="Scheme interpreter" +HOMEPAGE="https://www.gnu.org/software/guile/" +SRC_URI="mirror://gnu/guile/${P}.tar.gz" + +LICENSE="LGPL-2.1" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="debug debug-freelist debug-malloc +deprecated discouraged emacs networking nls readline +regex +threads" + +RESTRICT="!regex? ( test )" + +RDEPEND=" + >=dev-libs/gmp-4.1:0= + dev-libs/libltdl:0= + sys-devel/gettext + sys-libs/ncurses:0= + emacs? ( virtual/emacs ) + readline? ( sys-libs/readline:0= )" +DEPEND="${RDEPEND} + sys-apps/texinfo + sys-devel/libtool" + +# Guile seems to contain some slotting support, /usr/share/guile/ is slotted, +# but there are lots of collisions. Most in /usr/share/libguile. Therefore +# I'm slotting this in the same slot as guile-1.6* for now. +SLOT="12/8" +MAJOR="1.8" + +src_prepare() { + epatch "${FILESDIR}/${P}-fix_guile-config.patch" \ + "${FILESDIR}/${P}-gcc46.patch" \ + "${FILESDIR}/${P}-gcc5.patch" \ + "${FILESDIR}/${P}-makeinfo-5.patch" \ + "${FILESDIR}/${P}-gtexinfo-5.patch" \ + "${FILESDIR}/${P}-readline.patch" \ + "${FILESDIR}/${P}-tinfo.patch" \ + "${FILESDIR}/${P}-sandbox.patch" \ + "${FILESDIR}/${P}-mkdir-mask.patch" + + sed \ + -e "s/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g" \ + -e "/AM_PROG_CC_STDC/d" \ + -i guile-readline/configure.in || die + + epatch_user + + mv "${S}"/configure.{in,ac} || die + mv "${S}"/guile-readline/configure.{in,ac} || die + + eautoreconf +} + +src_configure() { + # see bug #178499 + filter-flags -ftree-vectorize + + #will fail for me if posix is disabled or without modules -- hkBst + econf \ + --disable-error-on-warning \ + --disable-static \ + --enable-posix \ + $(use_enable networking) \ + $(use_enable readline) \ + $(use_enable regex) \ + $(use deprecated || use_enable discouraged) \ + $(use_enable deprecated) \ + $(use_enable emacs elisp) \ + $(use_enable nls) \ + --disable-rpath \ + $(use_enable debug-freelist) \ + $(use_enable debug-malloc) \ + $(use_enable debug guile-debug) \ + $(use_with threads) \ + --with-modules \ + EMACS=no +} + +src_compile() { + emake + + # Above we have disabled the build system's Emacs support; + # for USE=emacs we compile (and install) the files manually + if use emacs; then + cd emacs || die + elisp-compile *.el || die + fi +} + +src_install() { + emake DESTDIR="${D}" install + + dodoc AUTHORS ChangeLog GUILE-VERSION HACKING NEWS README THANKS + + # texmacs needs this, closing bug #23493 + dodir /etc/env.d + echo "GUILE_LOAD_PATH=\"${EPREFIX}/usr/share/guile/${MAJOR}\"" > "${ED}"/etc/env.d/50guile || die + + # necessary for registering slib, see bug 206896 + keepdir /usr/share/guile/site + + if use emacs; then + elisp-install ${PN} emacs/*.{el,elc} || die + elisp-site-file-install "${FILESDIR}/50${PN}-gentoo.el" || die + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-scheme/guile/guile-2.0.12-r1.ebuild b/dev-scheme/guile/guile-2.0.12-r1.ebuild deleted file mode 100644 index a69152a3937e..000000000000 --- a/dev-scheme/guile/guile-2.0.12-r1.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 -inherit flag-o-matic autotools - -DESCRIPTION="GNU Ubiquitous Intelligent Language for Extensions" -HOMEPAGE="https://www.gnu.org/software/guile/" -SRC_URI="mirror://gnu/guile/${P}.tar.gz" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -LICENSE="LGPL-3+" -IUSE="debug debug-malloc +deprecated +networking +nls +regex +threads" # upstream recommended +networking +nls - -# emacs useflag removal not working - -RDEPEND=" - >=dev-libs/boehm-gc-7.0[threads?] - dev-libs/gmp:= - virtual/libffi - dev-libs/libltdl:= - dev-libs/libunistring - sys-devel/libtool - sys-libs/ncurses:0= - sys-libs/readline:0=" -DEPEND="${RDEPEND} - virtual/pkgconfig - sys-apps/texinfo - sys-devel/gettext" - -SLOT="12/22" # subslot is soname version -MAJOR="2.0" - -PATCHES=( "${FILESDIR}/${P}-build_includes2.patch" - "${FILESDIR}/${P}-workaround-ice-ssa-corruption.patch" ) # includes2 bug 590528 patched by upstream, bug 594010 -DOCS=( GUILE-VERSION HACKING README ) - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # see bug #178499 - filter-flags -ftree-vectorize - - # will fail for me if posix is disabled or without modules -- hkBst - econf \ - --disable-error-on-warning \ - --disable-rpath \ - --enable-posix \ - --with-modules \ - --without-libgmp-prefix \ - --without-libiconv-prefix \ - --without-libintl-prefix \ - --without-libltdl-prefix \ - --without-libreadline-prefix \ - --without-libunistring-prefix \ - $(use_enable debug guile-debug) \ - $(use_enable debug-malloc) \ - $(use_enable deprecated) \ - $(use_enable networking) \ - $(use_enable nls) \ - $(use_enable regex) \ - $(use_with threads) -} - -src_install() { - default - - # From Novell - # https://bugzilla.novell.com/show_bug.cgi?id=874028#c0 - dodir /usr/share/gdb/auto-load/$(get_libdir) - mv "${ED}"/usr/$(get_libdir)/libguile-*-gdb.scm "${ED}"/usr/share/gdb/auto-load/$(get_libdir) || die - - # texmacs needs this, closing bug #23493 - dodir /etc/env.d - echo "GUILE_LOAD_PATH=\"${EPREFIX}/usr/share/guile/${MAJOR}\"" > "${ED}"/etc/env.d/50guile || die - - # necessary for registering slib, see bug 206896 - keepdir /usr/share/guile/site - - # Dark magic necessary for some deps - dosym libguile-2.0.so /usr/$(get_libdir)/libguile.so -} - -pkg_postinst() { - [[ "${EROOT}" == "/" ]] && pkg_config -} - -pkg_config() { - if has_version '>=dev-scheme/slib-3.2.4'; then - einfo "Registering slib with guile" - install_slib_for_guile - fi -} diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest index 453b4d2f606c..ac16d8d0590d 100644 --- a/dev-util/jenkins-bin/Manifest +++ b/dev-util/jenkins-bin/Manifest @@ -2,9 +2,8 @@ DIST jenkins-bin-1.651.2.war 64673620 SHA256 1e239db19071beaac3f2db3ec6a568346bb DIST jenkins-bin-2.11.war 68824538 SHA256 45f89868e66e53160cda5f367eb9c1026ac086794214e18304c51c6d320f6680 SHA512 d045175692a9d8407bda696cf3453a36944bf72fe11a4297dc523800f104088b0328c5400869e38cb44e86f232e95d9ac90e9a3ea4b956abfcbadb36ad8d456f WHIRLPOOL 0d696e8d126066b20acd74d00125f953845b2083ff82895f0e13473e8e2ab0cf53dd8fde6ea2e5ab200d223aebf7ebb3df297ae9f7ca5535ace82a6c94e6d152 DIST jenkins-bin-2.17.war 69523163 SHA256 af040100d91c7f9af416446a4a1c35fd8b7a5d8838872ab63dc01526233a8300 SHA512 0bdd07d546a7719be5aa6bd61d82b32d1c5caa3cd4f636f49a059e12cd2f9d7a6465a456b857d6575671d3d6c37ccf48b701030ff67e933b96ac1ad10caa5a36 WHIRLPOOL 11f399268f728af4fcadd653b8a059651124bff901edc21f4b7319cee93b64ce7fbc0b68085d758eb00f95a7dd244bd3c76012e8b1aa4342f8164b7603329346 DIST jenkins-bin-2.19.1.war 69754011 SHA256 eb0484ab9a405d663724ec2a678ee648b7995b7b1b1021bf85dcddf7d2b2f577 SHA512 0a2d158032c73f36947102cdba9467d8378ffe209c3bfef566288c3b97d66a18972ad57321b7e8f537881ab18807ec8f96ce0990caedc4589e1e984a21134be5 WHIRLPOOL 7c2522676bd3c60864a940c2c71a5eaef9cbc4743e83ad838474834250e7fb9ddde9d6939baf6e2fc4e8cba2c2b7b5b7f55433c439e7765c7b75552b496f7edd -DIST jenkins-bin-2.22.war 69766765 SHA256 e6406099792b631b968968194020ac7095113b68bb9ae7922fcc9a777eece1cc SHA512 7f6ddbceea9e30012e0cf06543c7fa2387f5f89a3ee21d9c1d957546501a520fe8a10b30409c09623f899b7e987992ff0984b018d50c7c4f0ec7d6c6bee89136 WHIRLPOOL d9d510cf70e881441090f60ec615beccae8d4675eece5892d10e94d7acbe24f03a68653ec172391919e843054a46f44a9f20b2412e72f62076f5966161f6c2ce -DIST jenkins-bin-2.23.war 69766759 SHA256 f13c8182a1054a339cbce0a575dbff46e73072eb4335c3ba323ce731bb07b6be SHA512 432f3f0a5b17833a4cb860e5e081632890fda15cfd99ce29a721450827369dd74f0330e4a6f40dfb363c9b6ffa36ce94018eab395eec526d0b76b34d7d067f91 WHIRLPOOL d454d717f2a3601c37474acd897f24ad9b873976cc54116e1c73dae2d7470ac930fa3a942f2df398d471b149170d15019a2965cd3088512d811f0255f6259cff DIST jenkins-bin-2.26.war 69920303 SHA256 8994979440e0c371a243edc53d9468d7ba1cf1fa22c26fd67db94ea6cafa9138 SHA512 9b80c88cd0752f1469c7f7469942a4b739d9d7d90963fb37066be9bd3feaec5a7b838f74cdc2e32b763a96a539fc021aa8ce8fed3fadef861c673d8837753502 WHIRLPOOL 2b488e7458127b7602d514b0dd939d45ccc0b73fb1c80c1f1da6eb75d7aa6abb16cabe5055874130ac22f643d10f4ae7e7110f1dc50bfd5071141842781252c1 DIST jenkins-bin-2.27.war 70500523 SHA256 85b0e3ea8ff0980361cc1e324a7076351301f4b6e02f4a97daf1d1577e0dc9fb SHA512 810a0867fc894662e3fc4e55587a02d5f43669d8fc4f51c7608e9abefa0a3309931f76ce69e3cedf920b6c8bbd25af08fc0fa14c7e52c5cab57ddd9b615facf0 WHIRLPOOL a3c4c598445d6fe43739846a12ada8cc568d04ce92be769d684a44a5cbfd49ce3c89bd76d2e9d4910d90d32387a55255a7d62eca0497ed7f02c5c43702798653 +DIST jenkins-bin-2.28.war 70116639 SHA256 99e31a8059a869552f3df8bc6169739c14976057fe712109665aaae27375d85a SHA512 850b7cddce2e86c3e1cfde70ac24517bae41d3ca716f5a2cefd519fac8ccac931c33178e6b261530d90c62051db24e96763cd7b84ef3f852d0cd062d60a068d4 WHIRLPOOL 86d5267c946b71accec5bed7009aaa1afbb45729d75777ef54d1af63809f766534a7ef9de5b156607b66bdef90af574f52faffcd14411c29ae9a5128bfe1b8c9 DIST jenkins-bin-2.5.war 68819605 SHA256 d8de143eef34d0d9d12cc314901eab57f55ddce74c5f6e567920bf4fc0571823 SHA512 7d292db6f08134e901ae23175746ad34ecd4af687d07d18a3e67c042c4964d7b9ebffaffa8596392531ecd364433dcfa6326bd6f9a866d827d53c0dc981cf6b5 WHIRLPOOL 0eda23ca1e3a8bbd2e1dd28c2272a67c98fcc6514d681507f61f9aa2dc07a535fb75302f22f28e42e789761c84f1c2d2bd7c5526bc2e979fca4d1f759bec0f7a DIST jenkins-bin-2.7.2.war 68853528 SHA256 b1ea4e1e72a7fe6ead79f7c93b76934d2b8291ab764fc212abe952fa4322a74a SHA512 21cb5885d80041134afea5472d6418e375837ad5bb5620aa8d29e28ddab82a2d4fcd5178c9f59326f5f24844858604e830a81dc1997c3bbe33ef92e7191c830e WHIRLPOOL f43b98bd60a51cd565eb86ba8b6d3e632e97456cc320c1208f1ac46505b83b08e55fbb7bcfaa72c9624134c1453fcb547901be05b735d962171ddd57cf77c877 diff --git a/dev-util/jenkins-bin/jenkins-bin-2.23.ebuild b/dev-util/jenkins-bin/jenkins-bin-2.23.ebuild deleted file mode 100644 index 34dbefe03e3b..000000000000 --- a/dev-util/jenkins-bin/jenkins-bin-2.23.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit user systemd - -DESCRIPTION="Extensible continuous integration server" -HOMEPAGE="http://jenkins-ci.org/" -LICENSE="MIT" -SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war" -RESTRICT="mirror" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux" -IUSE="" - -RDEPEND="media-fonts/dejavu - media-libs/freetype - !dev-util/jenkins-bin:lts - >=virtual/jre-1.7.0" - -S=${WORKDIR} - -JENKINS_DIR=/var/lib/jenkins - -pkg_setup() { - enewgroup jenkins - enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins -} - -src_install() { - keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home - - insinto /opt/jenkins - newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war - - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/} - - newinitd "${FILESDIR}"/${PN}.init2 jenkins - newconfd "${FILESDIR}"/${PN}.confd jenkins - - systemd_newunit "${FILESDIR}"/${PN}.service jenkins.service - - fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} ${JENKINS_DIR}/home ${JENKINS_DIR}/backup -} diff --git a/dev-util/jenkins-bin/jenkins-bin-2.22.ebuild b/dev-util/jenkins-bin/jenkins-bin-2.28.ebuild similarity index 100% rename from dev-util/jenkins-bin/jenkins-bin-2.22.ebuild rename to dev-util/jenkins-bin/jenkins-bin-2.28.ebuild diff --git a/dev-util/scons/metadata.xml b/dev-util/scons/metadata.xml index 0016092bb1bf..45af9c30fc27 100644 --- a/dev-util/scons/metadata.xml +++ b/dev-util/scons/metadata.xml @@ -1,6 +1,10 @@ + + mgorny@gentoo.org + Michał Górny + python@gentoo.org Python diff --git a/dev-util/shelltestrunner/shelltestrunner-1.3.5-r1.ebuild b/dev-util/shelltestrunner/shelltestrunner-1.3.5-r1.ebuild index baca3debd412..6a48cefd143d 100644 --- a/dev-util/shelltestrunner/shelltestrunner-1.3.5-r1.ebuild +++ b/dev-util/shelltestrunner/shelltestrunner-1.3.5-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -37,5 +37,6 @@ DEPEND="${RDEPEND} src_prepare() { cabal_chdeps \ - 'HUnit < 1.3' 'HUnit' + 'HUnit < 1.3' 'HUnit' \ + 'process < 1.3' 'process' } diff --git a/dev-vcs/darcs/Manifest b/dev-vcs/darcs/Manifest index 2102122d54ef..76fe313200fd 100644 --- a/dev-vcs/darcs/Manifest +++ b/dev-vcs/darcs/Manifest @@ -1,4 +1,5 @@ DIST darcs-2.10.1.tar.gz 1509208 SHA256 f1ef65b43780e7593ca1afdae5ecf44ed91d62cc1be360693a52c5ff7b57ee94 SHA512 b8c3971da3d635a7d90e35226c2ffa6d6ca8e78ba18793c632b7509bc4d52c1bda2490d147cdaea5842fbe5d8826b0025de61e2fb4f58c441875c5858d910e47 WHIRLPOOL a44550b9e44125ee468b10da723742c992c215a42411c074e8c2547643694ce572db7f59b5ba4209cef5aac26bd1ddcef1c54f592e8b73fd0da941d0e9e77d93 DIST darcs-2.10.3.tar.gz 1513296 SHA256 ca00c40d08276f94868c7c1bbc6dbd9b6b41a15c1907c34947aaa51d4dbbf642 SHA512 cf8f34df331d8a47c6a25775c465824e5d71ed00ae6bc477989b4bb0e7fad606b213a4fb4e06b02dca096df2b6b1fe36f394672a112b48c6b56188a7eae8f90e WHIRLPOOL e52fdbe2bd87de7787c0d15ed8d7499a8514d4149a30139c18060139bcbe2ab56f9525b3b4222025cd71afb167b3cc0db265fb1c339eac1336d9cb3fef45eff1 DIST darcs-2.12.0.tar.gz 1465730 SHA256 17318d1b49ca4b1aa00a4bffc2ab30a448e7440ce1945eed9bf382d77582308d SHA512 654f9054dfe8e23e17ae00cdf22153ddaf89d114c5ee0e1ca86f373c1abf62b7bd808965f4d4df695aaba44d1d334d725cc0d57dea5df7cd1992a0ef15e49135 WHIRLPOOL fe95b27590f15259e808a0583ddce415eaca8fdcc67e473d7e35d876de2faaa46fb72996d64807cf7a0139fb10f0a11a8bb6971f1631e961f8e50c4b76c7637c +DIST darcs-2.12.4.tar.gz 1462383 SHA256 48e836a482bd2fcfe0be499fe4f255925ce50bdcf5ce8023bb9aa359288fdc49 SHA512 52a0b9b8a23b05dc29513c20c3c0fdc0b696da87156ea83a5736ea294618b993d1f3914f82a918e331db5de0746c147244f46d396ee7dbb02fee116825e1dd6a WHIRLPOOL cf3ddcb5c542226865dff34c9f9f57bd8279dcda3fcfcd939fc1cafc944c7735b254d5277a71b330468a78ef9c06b43f5dfbd0764a8e225c8f032fdc60401ff3 DIST darcs-2.8.4.tar.gz 1301464 SHA256 3fab4dbb2d5dd9f381d49f4730c12e1534b5c484b0dde9712614a7151f659f98 SHA512 c60531bacea43bdd5a18ae461dd390fe64682cac56fa4e6b5153a5da3c003b59d8fb24827bd42b4b30f0d2c61877d36b58eb98317644f9f8a200ab7c5961c48e WHIRLPOOL 128e8e58e219d427928eb8725d9566c1b6b3bb478b3cda69b30ded8798fa104eb8dec0fda8a32701f5d074babf9f11f1b3036388cd15a82118853a566c832430 diff --git a/dev-vcs/darcs/darcs-2.12.4.ebuild b/dev-vcs/darcs/darcs-2.12.4.ebuild new file mode 100644 index 000000000000..c42650f28c14 --- /dev/null +++ b/dev-vcs/darcs/darcs-2.12.4.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 +#hackport: flags: +library,+executable,-hpc,-warn-as-error,+pkgconfig,-rts,-static,-optimize,hashed-storage-diff:diff,+http + +CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="a distributed, interactive, smart revision control system" +HOMEPAGE="http://darcs.net/" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+curl +network-uri +terminfo +threaded" + +RDEPEND=">=dev-haskell/async-2.0.1.4:=[profile?] =dev-haskell/attoparsec-0.11:=[profile?] =dev-haskell/base16-bytestring-0.1:=[profile?] =dev-haskell/cryptohash-0.4:=[profile?] =dev-haskell/data-ordlist-0.4:=[profile?] =dev-haskell/fgl-5.5.0.1:=[profile?] =dev-haskell/graphviz-2999.17.0.1:=[profile?] =dev-haskell/hashable-1.1.2.5:=[profile?] =dev-haskell/haskeline-0.6.3:=[profile?] =dev-haskell/html-1.0.1.2:=[profile?] =dev-haskell/http-4000.2.8:=[profile?] =dev-haskell/mmap-0.5:=[profile?] =dev-haskell/mtl-2.1.2:=[profile?] =dev-haskell/old-time-1.1:=[profile?] =dev-haskell/parsec-3.1:=[profile?] =dev-haskell/random-1.0.1.1:=[profile?] =dev-haskell/regex-applicative-0.2:=[profile?] =dev-haskell/regex-compat-tdfa-0.95.1:=[profile?] =dev-haskell/sandi-0.4:=[profile?] =dev-haskell/tar-0.4:=[profile?] =dev-haskell/text-1.2.1.3:=[profile?] =dev-haskell/transformers-compat-0.4:=[profile?] =dev-haskell/unix-compat-0.1.2:=[profile?] =dev-haskell/utf8-string-0.3.6:=[profile?] =dev-haskell/vector-0.10.0.1:=[profile?] =dev-haskell/zip-archive-0.2.3:=[profile?] =dev-haskell/zlib-0.5.4.1:=[profile?] =dev-lang/ghc-7.10.1:= + curl? ( net-misc/curl ) + network-uri? ( >=dev-haskell/network-2.6:=[profile?] =dev-haskell/network-uri-2.6:=[profile?] =dev-haskell/network-2.4.1.2:=[profile?] =dev-haskell/terminfo-0.3:=[profile?] - - - - kde@gentoo.org - Gentoo KDE Project - - diff --git a/kde-base/kdebase-startkde/kdebase-startkde-4.11.22-r2.ebuild b/kde-base/kdebase-startkde/kdebase-startkde-4.11.22-r2.ebuild index 9e2337dd13e0..3617656ab413 100644 --- a/kde-base/kdebase-startkde/kdebase-startkde-4.11.22-r2.ebuild +++ b/kde-base/kdebase-startkde/kdebase-startkde-4.11.22-r2.ebuild @@ -58,9 +58,9 @@ RDEPEND=" $(add_kdebase_dep ksmserver) $(add_kdebase_dep ksplash) $(add_kdebase_dep kstartupconfig) - $(add_kdebase_dep kwin) $(add_kdebase_dep plasma-workspace) - $(add_kdebase_dep systemsettings) + kde-plasma/kwin:4 + kde-plasma/systemsettings:4 x11-apps/mkfontdir x11-apps/xmessage x11-apps/xprop diff --git a/kde-base/kfilemetadata/Manifest b/kde-base/kfilemetadata/Manifest deleted file mode 100644 index 50b7d3b242d4..000000000000 --- a/kde-base/kfilemetadata/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST kfilemetadata-4.14.3.tar.xz 35908 SHA256 3115e6ebd8b52ae9eb1016a3391b019c34fa443d6a5d9351550c5e0baf0d5371 SHA512 d7321b7e1ad755c0dc267b236a33a011377ba309d94c1497c081edad82171452595ce113428048e455b8b71f3ea480e4e76e797e31a74edd24bcf42617c59acb WHIRLPOOL 7e940864c4d9529bc3d5f8337bb9f22f09e00b653ce51b089b026ba3364c57f3f94df89f011f69e9d5500894f5f953fce29acfc7ee25b884876ada7f5f54fe86 diff --git a/kde-base/kfilemetadata/metadata.xml b/kde-base/kfilemetadata/metadata.xml deleted file mode 100644 index 49b3c391cfda..000000000000 --- a/kde-base/kfilemetadata/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - kde@gentoo.org - Gentoo KDE Project - - - Adds support for reading EPUB ebook metadata - Adds support for reading MOBI ebook metadata - - diff --git a/kde-base/kwin/Manifest b/kde-base/kwin/Manifest deleted file mode 100644 index db5163f83985..000000000000 --- a/kde-base/kwin/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST kde-workspace-4.11.22.tar.xz 13553668 SHA256 f035334e843d67ee88551ae9e6c5f64bf7b1edfe311b12501575fe74be0b03b7 SHA512 9def2cc8d1e597259966cd6cc44e9aad7ebe2c7cde5943e362c6782d1344e7da4fff0dddd0fe0c948bca159dba128d8a36006e1ae409415cd22f74955d0a9b95 WHIRLPOOL 14b0fcef19bda4b92a42612387fb6307a50dbb3620e911e3e0aaf5d764fb263e1959baae2e55cb71d92d064542844ae963b170bb960a9b7dc18a11627b731802 diff --git a/kde-base/legacy-icons/legacy-icons-4.11.22-r1.ebuild b/kde-base/legacy-icons/legacy-icons-4.11.22-r1.ebuild index e9a8cfe91ab7..670eb624c09d 100644 --- a/kde-base/legacy-icons/legacy-icons-4.11.22-r1.ebuild +++ b/kde-base/legacy-icons/legacy-icons-4.11.22-r1.ebuild @@ -25,7 +25,7 @@ RDEPEND=" !kde-apps/libkipi:5 ! - - - - kde@gentoo.org - Gentoo KDE Project - - - Use kde-plasma/kscreen for screen management - - diff --git a/kde-frameworks/baloo/Manifest b/kde-frameworks/baloo/Manifest index fb6b1e8c7c3c..65cd621cf4a4 100644 --- a/kde-frameworks/baloo/Manifest +++ b/kde-frameworks/baloo/Manifest @@ -1,2 +1,3 @@ +DIST baloo-4.14.3.tar.xz 145604 SHA256 9edcd2bf9fcb4f42959087c954e533bf3345d0971b7402f04c0703c1b2e66a5c SHA512 ce46abee6edfea333fe2b361418ee92e1e7e4b252c4cb9a48f302ff906b3dc49d78c4e55c69de09b0085e03fe87e978b90c2896f7492b940550fda9766679218 WHIRLPOOL a7e80983830419c796d18e72df64d08bb51aebda29c527bf6a65c61c233d80ca7ab6c784255949bd0697f67637cb37fe3bffc15fd5dd9253e185f6194221ebc9 DIST baloo-5.26.0.tar.xz 187444 SHA256 dedd54b468e799cf0fc6e4f69e05659605907a026ec02895fc3bc250ab13f331 SHA512 bec8591648c0e3af7e96e2097725383195fd21fbb7d973738e2ff0caff9fd631b336bccca5ac9d3bc135fda00d2e2edcd9e0d26213f8a0cd1ea88588bc97d2d2 WHIRLPOOL f33b1d5ba9fc2250586f437bc613c3088a18058594f64f80d2b23665c83aa8c15e7167f5cd60dbf8405439e374e55b2a20f92bfb8567c0da17788d47ed75357a DIST baloo-5.27.0.tar.xz 199744 SHA256 8c89de0941fee468c5762526e3274e21b590410ffaf8fc0d04847cf1bb2e0a37 SHA512 ba0e8c0eed3e992b55ac9cc45c6d09e4eb4747c1237ff7e6514130624b1ca65cf343d49518bc0fd7306a956cd6755996445a59c076cb61d30e88fd390300c6a6 WHIRLPOOL 68e8faa90a0df3290415ecf1c18b0d0f74ae828d340da9e9bdcbe5edd1185dc243fcf286eb3953fb284636236f2cdac58271b0956766bed919810d21362dc997 diff --git a/kde-base/baloo/baloo-4.14.3.ebuild b/kde-frameworks/baloo/baloo-4.14.3.ebuild similarity index 80% rename from kde-base/baloo/baloo-4.14.3.ebuild rename to kde-frameworks/baloo/baloo-4.14.3.ebuild index 715babb3c1bf..bc0c96cc08a2 100644 --- a/kde-base/baloo/baloo-4.14.3.ebuild +++ b/kde-frameworks/baloo/baloo-4.14.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -6,15 +6,15 @@ EAPI=5 inherit kde4-base -DESCRIPTION="Next generation of the Nepomuk project" +DESCRIPTION="Framework for searching and managing metadata" KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux" IUSE="debug minimal" DEPEND=" $(add_kdeapps_dep kdepimlibs) - $(add_kdebase_dep kfilemetadata) dev-libs/qjson =dev-libs/xapian-1.2*[chert] + kde-frameworks/kfilemetadata:4 sys-apps/attr !Adds support for reading EPUB ebook metadata + Adds support for reading MOBI ebook metadata diff --git a/kde-misc/baloo-kcmadv/baloo-kcmadv-2014.04.27.ebuild b/kde-misc/baloo-kcmadv/baloo-kcmadv-2014.04.27.ebuild index 18618c4ed130..d3a32ea6447d 100644 --- a/kde-misc/baloo-kcmadv/baloo-kcmadv-2014.04.27.ebuild +++ b/kde-misc/baloo-kcmadv/baloo-kcmadv-2014.04.27.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -18,9 +18,9 @@ SLOT="4" IUSE="" DEPEND=" - $(add_kdebase_dep baloo '-minimal(-)') - $(add_kdebase_dep kfilemetadata) dev-libs/qjson dev-libs/xapian + kde-frameworks/baloo:4[-minimal] + kde-frameworks/kfilemetadata:4 " RDEPEND="${DEPEND}" diff --git a/kde-misc/chromi/Manifest b/kde-misc/chromi/Manifest index 5a090730d0d5..85d5696981a2 100644 --- a/kde-misc/chromi/Manifest +++ b/kde-misc/chromi/Manifest @@ -1,2 +1 @@ -DIST chromi-0.2.zip 66786 SHA256 5ad55a47e1593aacfd2e02416a4a9f182b8de6b0d23eecc06bdcb4bb08b33d9b SHA512 c56cb6930182fc6c3c33881de7c1051cd45e0c630b7a2b5bac269fbd8f4276991ac192428626a436f1c7b22c31d66ae83767ffb20fb53b721d31765f2a0586fd WHIRLPOOL 2cd513f11b37a2f6eea458211c5b1a99f98fb0df754b821b9bf02cfb6486ab6add3cfba222dd98c283200cfa6bb602fc4f2bdef23536766f20e95e9004205d01 DIST kwin-deco-chromi-0.2_p20141209.tar.xz 52408 SHA256 82480887f17364ec02d1e4364b6f46ff0fe3c4d7d7abf3b2fe2c46c125200203 SHA512 4863bc288caedd60aff439b5e2534f4b16f7df1614bb3a8d8144564966903a2e1fbf9ebe7e531c5b14b38c33470e6f10e9dacabbf1a18157958f9de8c4048973 WHIRLPOOL 4e617e5dfddd83da0b34ac8af9ad574c81cba65d219e1962a73ebaacfe741059a249aaf1e8d649b806b13fb541b92ca8283de0ba7838b566b1be2ab1813d155d diff --git a/kde-misc/chromi/chromi-0.2.ebuild b/kde-misc/chromi/chromi-0.2.ebuild deleted file mode 100644 index b4723c16da94..000000000000 --- a/kde-misc/chromi/chromi-0.2.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit kde4-base - -DESCRIPTION="Titlebar-less decoration inspired by Google Chrome and Nitrogen minimal mod" -HOMEPAGE="http://kde-look.org/content/show.php/Chromi?content=119069" -SRC_URI="https://github.com/jinliu/kwin-deco-chromi/archive/v${PV}.zip -> ${P}.zip" - -SLOT="4" -LICENSE="GPL-2+" -KEYWORDS="~amd64 ~x86" -IUSE="" - -S="${WORKDIR}/kwin-deco-${P}" - -PATCHES=( "${FILESDIR}/${PN}-0.2-add-kwin-decoration-api-version.patch" ) - -DEPEND=" - $(add_kdebase_dep kwin) -" -RDEPEND="${DEPEND}" diff --git a/kde-misc/chromi/chromi-0.2_p20141209.ebuild b/kde-misc/chromi/chromi-0.2_p20141209.ebuild index 596139ebe733..9e7dbd60cb08 100644 --- a/kde-misc/chromi/chromi-0.2_p20141209.ebuild +++ b/kde-misc/chromi/chromi-0.2_p20141209.ebuild @@ -19,6 +19,6 @@ IUSE="" S="${WORKDIR}/${MY_P}" DEPEND=" - $(add_kdebase_dep kwin) + kde-plasma/kwin:4 " RDEPEND="${DEPEND}" diff --git a/kde-misc/nightmode/nightmode-0.3-r1.ebuild b/kde-misc/nightmode/nightmode-0.3-r1.ebuild index 1568cfde7f40..038fc13ae388 100644 --- a/kde-misc/nightmode/nightmode-0.3-r1.ebuild +++ b/kde-misc/nightmode/nightmode-0.3-r1.ebuild @@ -16,7 +16,7 @@ SLOT="4" KEYWORDS="amd64 x86" IUSE="debug" -DEPEND="$(add_kdebase_dep kwin)" +DEPEND="kde-plasma/kwin:4" RDEPEND="${DEPEND}" S=${WORKDIR} diff --git a/kde-misc/zanshin/zanshin-0.3.1.ebuild b/kde-misc/zanshin/zanshin-0.3.1.ebuild index bb0dafbadcb8..ac9abf99e23c 100644 --- a/kde-misc/zanshin/zanshin-0.3.1.ebuild +++ b/kde-misc/zanshin/zanshin-0.3.1.ebuild @@ -19,8 +19,8 @@ IUSE="debug" DEPEND=" $(add_kdeapps_dep kdepim-runtime '' 4.6.0) $(add_kdeapps_dep kdepimlibs) - $(add_kdebase_dep baloo) dev-libs/boost + kde-frameworks/baloo:4 " RDEPEND="${DEPEND}" diff --git a/kde-plasma/khotkeys/khotkeys-5.7.5.ebuild b/kde-plasma/khotkeys/khotkeys-5.7.5.ebuild index 9924b0cfa99f..abf6876d802c 100644 --- a/kde-plasma/khotkeys/khotkeys-5.7.5.ebuild +++ b/kde-plasma/khotkeys/khotkeys-5.7.5.ebuild @@ -38,7 +38,7 @@ RDEPEND="${COMMON_DEPEND} $(add_frameworks_dep kded) $(add_plasma_dep kde-cli-tools) !kde-plasma/khotkeys:4 - !kde-base/systemsettings:4 + !kde-plasma/systemsettings:4 " DEPEND="${COMMON_DEPEND} x11-libs/libxcb diff --git a/kde-plasma/khotkeys/khotkeys-5.8.3.ebuild b/kde-plasma/khotkeys/khotkeys-5.8.3.ebuild index 2f45d7601273..41bdb50d08eb 100644 --- a/kde-plasma/khotkeys/khotkeys-5.8.3.ebuild +++ b/kde-plasma/khotkeys/khotkeys-5.8.3.ebuild @@ -38,7 +38,7 @@ RDEPEND="${COMMON_DEPEND} $(add_frameworks_dep kded) $(add_plasma_dep kde-cli-tools) !kde-plasma/khotkeys:4 - !kde-base/systemsettings:4 + !kde-plasma/systemsettings:4 " DEPEND="${COMMON_DEPEND} x11-libs/libxcb diff --git a/kde-plasma/kwin/Manifest b/kde-plasma/kwin/Manifest index 43945cabea99..be35dff21b48 100644 --- a/kde-plasma/kwin/Manifest +++ b/kde-plasma/kwin/Manifest @@ -1,2 +1,3 @@ +DIST kde-workspace-4.11.22.tar.xz 13553668 SHA256 f035334e843d67ee88551ae9e6c5f64bf7b1edfe311b12501575fe74be0b03b7 SHA512 9def2cc8d1e597259966cd6cc44e9aad7ebe2c7cde5943e362c6782d1344e7da4fff0dddd0fe0c948bca159dba128d8a36006e1ae409415cd22f74955d0a9b95 WHIRLPOOL 14b0fcef19bda4b92a42612387fb6307a50dbb3620e911e3e0aaf5d764fb263e1959baae2e55cb71d92d064542844ae963b170bb960a9b7dc18a11627b731802 DIST kwin-5.7.5.tar.xz 3936628 SHA256 ab1e98d3ff19699c89343a51861202dd93c913eb9d9215118c3fab86e99126d6 SHA512 6a7dbf9cf66006516179c5868e47038e0f967f3b2bbe6b431a707cd8ce03cc8dcea800f1dfd6a9482c30321e3b3b84593162bb050f045be4cffdadbc0090f9d7 WHIRLPOOL 75537ec4717e6a41280f97fb137ff28459d03789e79897a81da558c7fcae0ac08c64e9f034d6d9ef42e290d894173c96a1a3ab9dbaa9c6193b3d1272fedbaaf6 DIST kwin-5.8.3.tar.xz 3976096 SHA256 3ce0be9e6908b8658df2bcde203b71f4c1132e0bd273a2d7d5dea81adc097f28 SHA512 a4f8b45411bef9a4cef9a0899a5cc9b2133af9783fd40e5b4cd0b11f8e426eb57bfd40cc97c055d6a9766b3e938fcba166efca9ce206ed6746f938234bbf724c WHIRLPOOL 13258fb4c3dcba82c5a5db70fd54f7ee9d3a4e45703cebed925ea1968f8d8bc0a8b2344639b8496efc64c06bd870fb6acbb3a4233bded264126a01745521c153 diff --git a/kde-base/kwin/kwin-4.11.22.ebuild b/kde-plasma/kwin/kwin-4.11.22.ebuild similarity index 97% rename from kde-base/kwin/kwin-4.11.22.ebuild rename to kde-plasma/kwin/kwin-4.11.22.ebuild index 650c35f52d3f..d96f24bd4271 100644 --- a/kde-base/kwin/kwin-4.11.22.ebuild +++ b/kde-plasma/kwin/kwin-4.11.22.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ diff --git a/kde-plasma/kwin/kwin-5.7.5.ebuild b/kde-plasma/kwin/kwin-5.7.5.ebuild index 9ee1027bca44..3cd72f9941df 100644 --- a/kde-plasma/kwin/kwin-5.7.5.ebuild +++ b/kde-plasma/kwin/kwin-5.7.5.ebuild @@ -78,8 +78,8 @@ RDEPEND="${COMMON_DEPEND} ) ) !Enable support for GLES Use OpenGL ES 2 instead of full GL Enable effect video button in desktop effects KCM diff --git a/kde-plasma/milou/milou-0.1.ebuild b/kde-plasma/milou/milou-0.1.ebuild index 8d3e65859d49..129094731a0c 100644 --- a/kde-plasma/milou/milou-0.1.ebuild +++ b/kde-plasma/milou/milou-0.1.ebuild @@ -19,9 +19,9 @@ KEYWORDS="~amd64 ~x86" IUSE="debug" RDEPEND=" - $(add_kdebase_dep baloo) $(add_kdeapps_dep kdepimlibs) + kde-frameworks/baloo:4 " DEPEND="${RDEPEND} - $(add_kdebase_dep kfilemetadata) + kde-frameworks/kfilemetadata:4 " diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.7.5.ebuild b/kde-plasma/plasma-desktop/plasma-desktop-5.7.5.ebuild index 868b581c23c9..3102f5ada40c 100644 --- a/kde-plasma/plasma-desktop/plasma-desktop-5.7.5.ebuild +++ b/kde-plasma/plasma-desktop/plasma-desktop-5.7.5.ebuild @@ -117,7 +117,7 @@ RDEPEND="${COMMON_DEPEND} !kde-base/plasma-desktop:4 !kde-base/plasma-workspace:4 !kde-base/solid-actions-kcm:4 - !kde-base/systemsettings:4 + !kde-plasma/systemsettings:4 !kde-misc/kcm_touchpad !kde-misc/kcm-touchpad !kde-plasma/kcm-touchpad diff --git a/kde-plasma/plasma-desktop/plasma-desktop-5.8.3.ebuild b/kde-plasma/plasma-desktop/plasma-desktop-5.8.3.ebuild index 0960332cf1a6..cce14d809d0e 100644 --- a/kde-plasma/plasma-desktop/plasma-desktop-5.8.3.ebuild +++ b/kde-plasma/plasma-desktop/plasma-desktop-5.8.3.ebuild @@ -117,7 +117,7 @@ RDEPEND="${COMMON_DEPEND} !kde-base/plasma-desktop:4 !kde-base/plasma-workspace:4 !kde-base/solid-actions-kcm:4 - !kde-base/systemsettings:4 + !kde-plasma/systemsettings:4 !kde-misc/kcm_touchpad !kde-misc/kcm-touchpad !kde-plasma/kcm-touchpad diff --git a/kde-plasma/powerdevil/powerdevil-5.7.5.ebuild b/kde-plasma/powerdevil/powerdevil-5.7.5.ebuild index 74db8e0c5983..5ba520b7678f 100644 --- a/kde-plasma/powerdevil/powerdevil-5.7.5.ebuild +++ b/kde-plasma/powerdevil/powerdevil-5.7.5.ebuild @@ -62,7 +62,7 @@ RDEPEND="${DEPEND} ) ) !kde-plasma/powerdevil:4 - !kde-base/systemsettings:4[handbook] + !kde-plasma/systemsettings:4[handbook] " PATCHES=( "${FILESDIR}/${PN}-5.6.95-wireless-optional.patch" ) diff --git a/kde-plasma/powerdevil/powerdevil-5.8.3.ebuild b/kde-plasma/powerdevil/powerdevil-5.8.3.ebuild index 657ea9287c0d..5bd908e80ad5 100644 --- a/kde-plasma/powerdevil/powerdevil-5.8.3.ebuild +++ b/kde-plasma/powerdevil/powerdevil-5.8.3.ebuild @@ -63,7 +63,7 @@ RDEPEND="${DEPEND} ) ) !kde-plasma/powerdevil:4 - !kde-base/systemsettings:4[handbook] + !kde-plasma/systemsettings:4[handbook] " src_configure() { diff --git a/kde-plasma/systemsettings/Manifest b/kde-plasma/systemsettings/Manifest index 67476083c151..ddb3f0adc0b8 100644 --- a/kde-plasma/systemsettings/Manifest +++ b/kde-plasma/systemsettings/Manifest @@ -1,2 +1,3 @@ +DIST kde-workspace-4.11.22.tar.xz 13553668 SHA256 f035334e843d67ee88551ae9e6c5f64bf7b1edfe311b12501575fe74be0b03b7 SHA512 9def2cc8d1e597259966cd6cc44e9aad7ebe2c7cde5943e362c6782d1344e7da4fff0dddd0fe0c948bca159dba128d8a36006e1ae409415cd22f74955d0a9b95 WHIRLPOOL 14b0fcef19bda4b92a42612387fb6307a50dbb3620e911e3e0aaf5d764fb263e1959baae2e55cb71d92d064542844ae963b170bb960a9b7dc18a11627b731802 DIST systemsettings-5.7.5.tar.xz 158296 SHA256 960938de95c04dae98df3e6189529c1d0d8eb99dbfd7ebcf0b33bc24bf54209b SHA512 c3bbbe243c97905cd4c0cdfa06576a94efcd0274522d4f17f6f3eabf725b271375de53071b4102bf01488c4c77056c6779dfdd97f94ed72ae6bea50a711eaad4 WHIRLPOOL 411226593cfdb954d3ef4979565e9a0a97b244d8e57198b215cdacee9f15eeb6b0f8894ab566dc6796d8bbd8459ec42c7aea998200952e8cb109ba49c078141d DIST systemsettings-5.8.3.tar.xz 157968 SHA256 b50ec8fb4402d332d9fb6c1aa00cd7431ac3299da3003cc54522c1544c610a6a SHA512 d1a81880057bf648527a42cf2a93f51bca8a10bceb4bd04ed3ec47fb57195840b6d4369425b3605ca791ebd5f612071e8dc0a154720088541a00093b0ddb03f3 WHIRLPOOL 595a298541cb39da14752431fb034d02bb3380246337e450b51bc8c962782b614aa4ce1416a7d1f51e5aa85e72e15be75724da40f1cda9ddfb84a2a26850306d diff --git a/kde-base/systemsettings/files/systemsettings-4.11.22-strigi-removal.patch b/kde-plasma/systemsettings/files/systemsettings-4.11.22-strigi-removal.patch similarity index 100% rename from kde-base/systemsettings/files/systemsettings-4.11.22-strigi-removal.patch rename to kde-plasma/systemsettings/files/systemsettings-4.11.22-strigi-removal.patch diff --git a/kde-base/systemsettings/files/systemsettings-kcm-randr.patch b/kde-plasma/systemsettings/files/systemsettings-kcm-randr.patch similarity index 100% rename from kde-base/systemsettings/files/systemsettings-kcm-randr.patch rename to kde-plasma/systemsettings/files/systemsettings-kcm-randr.patch diff --git a/kde-plasma/systemsettings/metadata.xml b/kde-plasma/systemsettings/metadata.xml index b028a419c873..af6e5dff2c87 100644 --- a/kde-plasma/systemsettings/metadata.xml +++ b/kde-plasma/systemsettings/metadata.xml @@ -7,5 +7,6 @@ Enable classic mode plugin, requires kde-frameworks/khtml + Use kde-plasma/kscreen for screen management diff --git a/kde-base/systemsettings/systemsettings-4.11.22-r2.ebuild b/kde-plasma/systemsettings/systemsettings-4.11.22-r2.ebuild similarity index 98% rename from kde-base/systemsettings/systemsettings-4.11.22-r2.ebuild rename to kde-plasma/systemsettings/systemsettings-4.11.22-r2.ebuild index 665deb46dad5..4bdb0d4a3e91 100644 --- a/kde-base/systemsettings/systemsettings-4.11.22-r2.ebuild +++ b/kde-plasma/systemsettings/systemsettings-4.11.22-r2.ebuild @@ -18,7 +18,7 @@ KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux" COMMONDEPEND=" dev-libs/glib:2 - $(add_kdebase_dep kwin) + kde-plasma/kwin:4 $(add_kdebase_dep libkworkspace) media-libs/fontconfig >=media-libs/freetype-2 diff --git a/kde-plasma/systemsettings/systemsettings-5.7.5.ebuild b/kde-plasma/systemsettings/systemsettings-5.7.5.ebuild index 65ecc2e9c2e3..63c77882d35d 100644 --- a/kde-plasma/systemsettings/systemsettings-5.7.5.ebuild +++ b/kde-plasma/systemsettings/systemsettings-5.7.5.ebuild @@ -34,7 +34,7 @@ DEPEND=" " RDEPEND="${DEPEND} gtk? ( $(add_plasma_dep kde-gtk-config) ) - !kde-base/systemsettings:4 + !kde-plasma/systemsettings:4 " src_configure() { diff --git a/kde-plasma/systemsettings/systemsettings-5.8.3.ebuild b/kde-plasma/systemsettings/systemsettings-5.8.3.ebuild index e6043475c6da..177613b6e606 100644 --- a/kde-plasma/systemsettings/systemsettings-5.8.3.ebuild +++ b/kde-plasma/systemsettings/systemsettings-5.8.3.ebuild @@ -34,7 +34,7 @@ DEPEND=" " RDEPEND="${DEPEND} gtk? ( $(add_plasma_dep kde-gtk-config) ) - !kde-base/systemsettings:4 + !kde-plasma/systemsettings:4 " src_configure() { diff --git a/mail-client/claws-mail/Manifest b/mail-client/claws-mail/Manifest index 7a2eb75e6b35..e3b7991675f8 100644 --- a/mail-client/claws-mail/Manifest +++ b/mail-client/claws-mail/Manifest @@ -1,2 +1,3 @@ DIST claws-mail-3.13.2.tar.xz 5582600 SHA256 6a731052814b3284abeca1662d47817a86e018bc7123ab428f015f0cfab40ad1 SHA512 7356a4286fc76e215746de846f412e80b4d21c3be90ac8edd7719be2874569f953ce5c094e4a20b0c467db994d710135fc14bcb01f8fb4e947bf7d1666261ea3 WHIRLPOOL ec64d157fffd7be2849c92209cf3a5cc29935fa60a9061577c1b0bbcdac28b51f800c731ebf5f9598bc34f56ee9815adddfb5691f5faa81c92252bd182ab5120 DIST claws-mail-3.14.0.tar.xz 5795536 SHA256 466bd70350c69055d980dc84038d13f231f4ed060af899910e29c7a1de83cc59 SHA512 c127110749af6f5d584f59c3b5800c54a4b06e0b4a8b236d70ef516b7b39c40c870109d58c1d4f13fae6a10176083e948757d95a03c7f1fd526c00cd0c488600 WHIRLPOOL 887b4290f06dadd5e19458cdaf0e12cc3c6e31167da65df80f23028250d828b669aa600cedd5ffedd33445287d3d2e0bd9b2fcb0c7d106fdee9d145152a0fc77 +DIST claws-mail-3.14.1.tar.xz 5812444 SHA256 b79a1dc04f0b3d1f693e84d7fa7282f140fb5280179281445a8b954ce423c335 SHA512 ee1653ebd14b8aee76e97ce81ec203e0beeea7074eba0aa34c69bceb0a80135cdb16e508009cb479047d5112abd7eaa4bdb7e46722f33a88419fb24eeb75ac30 WHIRLPOOL ae5f6296f6f56c7dd8683efa68f3d688d806a5f5da576147ad4e685d16def294c6a5f2e1bca18e137995bed2dffad1e2fd2fcfb990a96d68950eb38c96640e13 diff --git a/mail-client/claws-mail/claws-mail-3.14.1.ebuild b/mail-client/claws-mail/claws-mail-3.14.1.ebuild new file mode 100644 index 000000000000..fa974614f8fc --- /dev/null +++ b/mail-client/claws-mail/claws-mail-3.14.1.ebuild @@ -0,0 +1,222 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) +inherit autotools gnome2-utils eutils python-single-r1 + +DESCRIPTION="An email client (and news reader) based on GTK+" +HOMEPAGE="http://www.claws-mail.org/" + +SRC_URI="http://www.claws-mail.org/download.php?file=releases/${P}.tar.xz" + +SLOT="0" +LICENSE="GPL-3" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" + +IUSE="archive bogofilter calendar clamav dbus debug doc gdata gtk3 +imap ipv6 ldap +libcanberra +libindicate +libnotify networkmanager nls nntp +notification pda pdf perl +pgp python rss session sieve smime spamassassin spam-report spell +gnutls startup-notification valgrind webkit xface" +REQUIRED_USE="libcanberra? ( notification ) + libindicate? ( notification ) + libnotify? ( notification ) + networkmanager? ( dbus ) + smime? ( pgp )" + +# Plugins are all integrated or dropped since 3.9.1 +PLUGINBLOCK="!!mail-client/claws-mail-acpi-notifier + !!mail-client/claws-mail-archive + !!mail-client/claws-mail-att-remover + !!mail-client/claws-mail-attachwarner + !!mail-client/claws-mail-clamd + !!mail-client/claws-mail-fancy + !!mail-client/claws-mail-fetchinfo + !mail-client/claws-mail-gdata + !!mail-client/claws-mail-geolocation + !!mail-client/claws-mail-gtkhtml + !!mail-client/claws-mail-mailmbox + !!mail-client/claws-mail-newmail + !!mail-client/claws-mail-notification + !!mail-client/claws-mail-perl + !!mail-client/claws-mail-python + !!mail-client/claws-mail-rssyl + !!mail-client/claws-mail-spam-report + !!mail-client/claws-mail-tnef-parse + !!mail-client/claws-mail-vcalendar + !!mail-client/claws-mail-address_keeper + !!mail-client/claws-mail-pdf-viewer" + +COMMONDEPEND=" + archive? ( + app-arch/libarchive + >=net-misc/curl-7.9.7 + ) + bogofilter? ( mail-filter/bogofilter ) + calendar? ( >=net-misc/curl-7.9.7 ) + dbus? ( >=dev-libs/dbus-glib-0.60 ) + gdata? ( >=dev-libs/libgdata-0.17.1 ) + gnutls? ( >=net-libs/gnutls-3.0 ) + gtk3? ( x11-libs/gtk+:3 ) + !gtk3? ( >=x11-libs/gtk+-2.20:2 ) + imap? ( >=net-libs/libetpan-0.57 ) + ldap? ( >=net-nds/openldap-2.0.7 ) + nls? ( >=sys-devel/gettext-0.18 ) + nntp? ( >=net-libs/libetpan-0.57 ) + notification? ( + dev-libs/glib:2 + libcanberra? ( media-libs/libcanberra[gtk] ) + libindicate? ( dev-libs/libindicate:3[gtk] ) + libnotify? ( x11-libs/libnotify ) + ) + pda? ( >=app-pda/jpilot-0.99 ) + pdf? ( app-text/poppler[cairo] ) + pgp? ( >=app-crypt/gpgme-1.0.0 ) + session? ( + x11-libs/libICE + x11-libs/libSM + ) + smime? ( >=app-crypt/gpgme-1.0.0 ) + spam-report? ( >=net-misc/curl-7.9.7 ) + spell? ( >=app-text/enchant-1.0.0 ) + startup-notification? ( x11-libs/startup-notification ) + valgrind? ( dev-util/valgrind ) + webkit? ( >=net-libs/webkit-gtk-1.1.14:2 ) +" + +DEPEND="${PLUGINBLOCK} + ${COMMONDEPEND} + app-arch/xz-utils + virtual/pkgconfig + xface? ( >=media-libs/compface-1.4 )" + +RDEPEND="${COMMONDEPEND} + app-misc/mime-types + x11-misc/shared-mime-info + clamav? ( app-antivirus/clamav ) + networkmanager? ( net-misc/networkmanager ) + pdf? ( app-text/ghostscript-gpl ) + perl? ( dev-lang/perl:= ) + python? ( + ${PYTHON_DEPS} + >=dev-python/pygtk-2.10.3 + ) + rss? ( + dev-libs/libxml2 + net-misc/curl + )" + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_prepare() { + default + eautoreconf +} + +src_configure() { + # Don't use libsoup-gnome (bug #565924) + export HAVE_LIBSOUP_GNOME=no + + local myeconfargs=( + --disable-bsfilter-plugin + --disable-generic-umpc + --enable-acpi_notifier-plugin + --enable-address_keeper-plugin + --enable-alternate-addressbook + --enable-att_remover-plugin + --enable-attachwarner-plugin + --enable-fetchinfo-plugin + --enable-mailmbox-plugin + --enable-newmail-plugin + --enable-tnef_parse-plugin + --with-password-encryption=$(usex gnutls gnutls old) + $(use_enable archive archive-plugin) + $(use_enable bogofilter bogofilter-plugin) + $(use_enable calendar vcalendar-plugin) + $(use_enable clamav clamd-plugin) + $(use_enable dbus) + $(use_enable debug crash-dialog) + $(use_enable doc manual) + $(use_enable gdata gdata-plugin) + $(use_enable gnutls) + $(use_enable gtk3) + $(use_enable ipv6) + $(use_enable ldap) + $(use_enable networkmanager) + $(use_enable nls) + $(use_enable notification notification-plugin) + $(use_enable pda jpilot) + $(use_enable pdf pdf_viewer-plugin) + $(use_enable perl perl-plugin) + $(use_enable pgp pgpcore-plugin) + $(use_enable pgp pgpinline-plugin) + $(use_enable pgp pgpmime-plugin) + $(use_enable python python-plugin) + $(use_enable rss rssyl-plugin) + $(use_enable session libsm) + $(use_enable sieve managesieve-plugin) + $(use_enable smime smime-plugin) + $(use_enable spam-report spam_report-plugin) + $(use_enable spamassassin spamassassin-plugin) + $(use_enable spell enchant) + $(use_enable startup-notification) + $(use_enable valgrind valgrind) + $(use_enable webkit fancy-plugin) + $(use_enable xface compface) + ) + + # libetpan is needed if user wants nntp or imap functionality + if use imap || use nntp; then + myeconfargs+=( --enable-libetpan ) + else + myeconfargs+=( --disable-libetpan ) + fi + + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +src_install() { + local DOCS=( AUTHORS ChangeLog* INSTALL* NEWS README* TODO* ) + default + + # Makefile install claws-mail.png in /usr/share/icons/hicolor/48x48/apps + # => also install it in /usr/share/pixmaps for other desktop envs + # => also install higher resolution icons in /usr/share/icons/hicolor/... + insinto /usr/share/pixmaps + doins ${PN}.png + local size + for size in 64 128 ; do + newicon -s ${size} ${PN}-${size}x${size}.png ${PN}.png + done + + docinto tools + dodoc tools/README* + + domenu ${PN}.desktop + + einfo "Installing extra tools" + cd "${S}"/tools + exeinto /usr/$(get_libdir)/${PN}/tools + doexe *.pl *.py *.conf *.sh + doexe tb2claws-mail update-po uudec uuooffice + + # kill useless files + rm -f "${D}"/usr/lib*/claws-mail/plugins/*.{a,la} +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + ewarn "When upgrading from version 3.9.0 or below some changes have happened:" + ewarn "- There are no individual plugins in mail-client/claws-mail-* anymore, but they are integrated mostly controlled through USE flags" + 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 +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/mail-filter/bogofilter/bogofilter-1.2.4-r1.ebuild b/mail-filter/bogofilter/bogofilter-1.2.4-r1.ebuild index 62eb71076d43..c398220cabb5 100644 --- a/mail-filter/bogofilter/bogofilter-1.2.4-r1.ebuild +++ b/mail-filter/bogofilter/bogofilter-1.2.4-r1.ebuild @@ -17,12 +17,12 @@ IUSE="berkdb sqlite tokyocabinet" DEPEND=" virtual/libiconv - berkdb? ( >=sys-libs/db-3.2 ) + berkdb? ( >=sys-libs/db-3.2:* ) !berkdb? ( sqlite? ( >=dev-db/sqlite-3.6.22 ) !sqlite? ( tokyocabinet? ( dev-db/tokyocabinet ) - !tokyocabinet? ( >=sys-libs/db-3.2 ) + !tokyocabinet? ( >=sys-libs/db-3.2:* ) ) ) sci-libs/gsl:= diff --git a/media-gfx/digikam/digikam-4.14.0-r1.ebuild b/media-gfx/digikam/digikam-4.14.0-r1.ebuild index 3f81aead6b35..bf74f8a4ea86 100644 --- a/media-gfx/digikam/digikam-4.14.0-r1.ebuild +++ b/media-gfx/digikam/digikam-4.14.0-r1.ebuild @@ -49,7 +49,7 @@ CDEPEND=" addressbook? ( $(add_kdeapps_dep kdepimlibs) ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) - semantic-desktop? ( $(add_kdebase_dep baloo '' 4.12.0) ) + semantic-desktop? ( kde-frameworks/baloo:4 ) " RDEPEND="${CDEPEND} $(add_kdeapps_dep kreadconfig) diff --git a/media-gfx/digikam/digikam-4.4.0-r1.ebuild b/media-gfx/digikam/digikam-4.4.0-r1.ebuild index d8b0287b0ffd..8a24ffc1d8fa 100644 --- a/media-gfx/digikam/digikam-4.4.0-r1.ebuild +++ b/media-gfx/digikam/digikam-4.4.0-r1.ebuild @@ -50,9 +50,7 @@ CDEPEND=" addressbook? ( $(add_kdeapps_dep kdepimlibs) ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) - semantic-desktop? ( - $(add_kdebase_dep baloo) - ) + semantic-desktop? ( kde-frameworks/baloo:4 ) " RDEPEND="${CDEPEND} kde-apps/kreadconfig:4 diff --git a/media-gfx/hugin/hugin-2016.2.0.ebuild b/media-gfx/hugin/hugin-2016.2.0.ebuild index 5345e17ec412..8a366e22199f 100644 --- a/media-gfx/hugin/hugin-2016.2.0.ebuild +++ b/media-gfx/hugin/hugin-2016.2.0.ebuild @@ -2,10 +2,10 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 WX_GTK_VER="3.0" -PYTHON_COMPAT=( python{2_7,3_4} ) +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) inherit python-single-r1 wxwidgets versionator cmake-utils @@ -23,7 +23,7 @@ IUSE="debug lapack python sift $(echo ${LANGS//\ /\ l10n_})" CDEPEND=" !!dev-util/cocom dev-db/sqlite:3 - >=dev-libs/boost-1.49.0-r1:0= + dev-libs/boost:= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= @@ -34,7 +34,7 @@ CDEPEND=" media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] - sci-libs/fftw:= + sci-libs/fftw:3.0= sys-libs/zlib virtual/glu virtual/jpeg:0 @@ -52,27 +52,32 @@ DEPEND="${CDEPEND} REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +DOCS=( authors.txt README TODO ) + S=${WORKDIR}/${PN}-$(get_version_component_range 1-3) pkg_setup() { - DOCS="authors.txt README TODO" - mycmakeargs=( - -DBUILD_HSI=$(usex python ON OFF) - -DENABLE_LAPACK=$(usex lapack ON OFF) - ) use python && python-single-r1_pkg_setup } src_prepare() { + cmake-utils_src_prepare rm CMakeModules/{FindLAPACK,FindPkgConfig}.cmake || die +} - cmake-utils_src_prepare +src_configure() { + local mycmakeargs=( + -DBUILD_HSI=$(usex python) + -DENABLE_LAPACK=$(usex lapack) + ) + cmake-utils_src_configure } src_install() { cmake-utils_src_install use python && python_optimize + local lang for lang in ${LANGS} ; do case ${lang} in ca) dir=ca_ES;; @@ -80,6 +85,8 @@ src_install() { cs) dir=cs_CZ;; *) dir=${lang/-/_};; esac - use l10n_${lang} || rm -r "${D}"/usr/share/locale/${dir} + if ! use l10n_${lang} ; then + rm -r "${ED%/}"/usr/share/locale/${dir} || die + fi done } diff --git a/media-gfx/hugin/hugin-9999.ebuild b/media-gfx/hugin/hugin-9999.ebuild index b739963cb344..d40c3e79363d 100644 --- a/media-gfx/hugin/hugin-9999.ebuild +++ b/media-gfx/hugin/hugin-9999.ebuild @@ -2,10 +2,10 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 WX_GTK_VER="3.0" -PYTHON_COMPAT=( python{2_7,3_4} ) +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) inherit mercurial python-single-r1 wxwidgets versionator cmake-utils @@ -25,7 +25,7 @@ IUSE="debug lapack python sift $(echo ${LANGS//\ /\ l10n_})" CDEPEND=" !!dev-util/cocom dev-db/sqlite:3 - >=dev-libs/boost-1.49.0-r1:0= + dev-libs/boost:= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= @@ -36,7 +36,7 @@ CDEPEND=" media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] - sci-libs/fftw:= + sci-libs/fftw:3.0= sys-libs/zlib virtual/glu virtual/jpeg:0 @@ -54,27 +54,32 @@ DEPEND="${CDEPEND} REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" +DOCS=( authors.txt README TODO ) + S=${WORKDIR}/${PN}-$(get_version_component_range 1-3) pkg_setup() { - DOCS="authors.txt README TODO" - mycmakeargs=( - -DBUILD_HSI=$(usex python ON OFF) - -DENABLE_LAPACK=$(usex lapack ON OFF) - ) use python && python-single-r1_pkg_setup } src_prepare() { + cmake-utils_src_prepare rm CMakeModules/{FindLAPACK,FindPkgConfig}.cmake || die +} - cmake-utils_src_prepare +src_configure() { + local mycmakeargs=( + -DBUILD_HSI=$(usex python) + -DENABLE_LAPACK=$(usex lapack) + ) + cmake-utils_src_configure } src_install() { cmake-utils_src_install use python && python_optimize + local lang for lang in ${LANGS} ; do case ${lang} in ca) dir=ca_ES;; @@ -82,6 +87,8 @@ src_install() { cs) dir=cs_CZ;; *) dir=${lang/-/_};; esac - use l10n_${lang} || rm -r "${D}"/usr/share/locale/${dir} + if ! use l10n_${lang} ; then + rm -r "${ED%/}"/usr/share/locale/${dir} || die + fi done } diff --git a/media-sound/gmusicbrowser/gmusicbrowser-1.1.15-r2.ebuild b/media-sound/gmusicbrowser/gmusicbrowser-1.1.15-r2.ebuild new file mode 100644 index 000000000000..8cfecfbd8eef --- /dev/null +++ b/media-sound/gmusicbrowser/gmusicbrowser-1.1.15-r2.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit fdo-mime gnome2-utils + +DESCRIPTION="An open-source jukebox for large collections of mp3/ogg/flac files" +HOMEPAGE="http://gmusicbrowser.org/" +SRC_URI="http://${PN}.org/download/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dbus doc extras gstreamer gstreamer-0 libnotify mplayer" + +GSTREAMER_DEPEND="dev-perl/Glib-Object-Introspection" +GSTREAMER0_DEPEND=" + dev-perl/GStreamer + dev-perl/GStreamer-Interfaces + media-plugins/gst-plugins-meta:0.10" +MPLAYER_DEPEND="media-video/mplayer" +MPV_DEPEND="media-video/mpv" +OTHER_DEPEND=" + media-sound/alsa-utils + media-sound/flac123 + || ( media-sound/mpg123 media-sound/mpg321 ) + media-sound/vorbis-tools" + +RDEPEND="dev-lang/perl + dev-perl/gtk2-perl + virtual/perl-MIME-Base64 + || ( net-misc/wget dev-perl/AnyEvent-HTTP ) + dbus? ( dev-perl/Net-DBus ) + gstreamer? ( ${GSTREAMER_DEPEND} ) + gstreamer-0? ( ${GSTREAMER0_DEPEND} ) + mplayer? ( || ( ${MPLAYER_DEPEND} ${MPV_DEPEND} ) ) + !gstreamer? ( !gstreamer-0? ( !mplayer? ( ${OTHER_DEPEND} ) ) ) + extras? ( dev-perl/gnome2-wnck ) + libnotify? ( dev-perl/Gtk2-Notify )" +DEPEND="sys-devel/gettext" + +src_install() { + emake \ + DESTDIR="${D}" \ + iconsdir="${D%/}/usr/share/icons/hicolor" \ + install + + use doc && local HTML_DOCS=( layout_doc.html ) + einstalldocs +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + fdo-mime_desktop_database_update + gnome2_icon_cache_update + + elog "Gmusicbrowser supports gstreamer, mplayer, mpv and mpg123/ogg123..." + elog "for audio playback. Needed dependencies:" + elog " Gstreamer: ${GSTREAMER_DEPEND}" + elog " Gstreamer-0.10: ${GSTREAMER0_DEPEND}" + elog " mplayer: ${MPLAYER_DEPEND}" + elog " mpv: ${MPV_DEPEND}" + elog " mpg123/ogg123...: ${OTHER_DEPEND}" +} + +pkg_postrm() { + fdo-mime_desktop_database_update + gnome2_icon_cache_update +} diff --git a/media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild b/media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild index 3ac52e635b65..c2c17f37fffc 100644 --- a/media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild +++ b/media-sound/gmusicbrowser/gmusicbrowser-9999.ebuild @@ -2,9 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit eutils fdo-mime git-2 gnome2-utils +inherit eutils fdo-mime git-r3 gnome2-utils DESCRIPTION="An open-source jukebox for large collections of mp3/ogg/flac files" HOMEPAGE="http://gmusicbrowser.org/" @@ -13,9 +13,10 @@ EGIT_REPO_URI="git://github.com/squentin/${PN}.git" LICENSE="GPL-3" SLOT="0" KEYWORDS="" -IUSE="doc" +IUSE="dbus doc extras gstreamer gstreamer-0 libnotify mplayer" -GSTREAMER_DEPEND=" +GSTREAMER_DEPEND="dev-perl/Glib-Object-Introspection" +GSTREAMER0_DEPEND=" dev-perl/GStreamer dev-perl/GStreamer-Interfaces media-plugins/gst-plugins-meta:0.10" @@ -31,12 +32,13 @@ RDEPEND="dev-lang/perl dev-perl/gtk2-perl virtual/perl-MIME-Base64 || ( net-misc/wget dev-perl/AnyEvent-HTTP ) - || ( - ( ${GSTREAMER_DEPEND} ) - ( ${MPLAYER_DEPEND} ) - ( ${MPV_DEPEND} ) - ( ${OTHER_DEPEND} ) - )" + dbus? ( dev-perl/Net-DBus ) + gstreamer? ( ${GSTREAMER_DEPEND} ) + gstreamer-0? ( ${GSTREAMER0_DEPEND} ) + mplayer? ( || ( ${MPLAYER_DEPEND} ${MPV_DEPEND} ) ) + !gstreamer? ( !gstreamer-0? ( !mplayer? ( ${OTHER_DEPEND} ) ) ) + extras? ( dev-perl/gnome2-wnck ) + libnotify? ( dev-perl/Gtk2-Notify )" DEPEND="sys-devel/gettext doc? ( dev-perl/Text-Markdown )" @@ -46,12 +48,12 @@ src_compile() { src_install() { emake \ - DOCS="AUTHORS NEWS README" \ DESTDIR="${D}" \ - iconsdir="${D}/usr/share/icons/hicolor" \ + iconsdir="${D%/}/usr/share/icons/hicolor" \ install - use doc && dohtml layout_doc.html + use doc && local HTML_DOCS=( layout_doc.html ) + einstalldocs } pkg_preinst() { @@ -64,18 +66,11 @@ pkg_postinst() { elog "Gmusicbrowser supports gstreamer, mplayer, mpv and mpg123/ogg123..." elog "for audio playback. Needed dependencies:" - elog "Gstreamer: ${GSTREAMER_DEPEND}" - elog "mplayer: ${MPLAYER_DEPEND}" - elog "mpv: ${MPV_DEPEND}" - elog "mpg123/ogg123...: ${OTHER_DEPEND}" - elog - elog "This ebuild just ensures at least one implementation is installed!" - elog - elog "other optional dependencies:" - elog " dev-perl/Net-DBus (for dbus support and mpris1/2 plugins)" - elog " dev-perl/Gtk2-WebKit (for Web context plugin)" - elog " dev-perl/Gtk2-Notify (for Notify plugin)" - elog " dev-perl/gnome2-wnck (for Titlebar plugin)" + elog " Gstreamer: ${GSTREAMER_DEPEND}" + elog " Gstreamer-0.10: ${GSTREAMER0_DEPEND}" + elog " mplayer: ${MPLAYER_DEPEND}" + elog " mpv: ${MPV_DEPEND}" + elog " mpg123/ogg123...: ${OTHER_DEPEND}" } pkg_postrm() { diff --git a/media-sound/gmusicbrowser/metadata.xml b/media-sound/gmusicbrowser/metadata.xml index 39626a990be5..f2a602018650 100644 --- a/media-sound/gmusicbrowser/metadata.xml +++ b/media-sound/gmusicbrowser/metadata.xml @@ -1,8 +1,17 @@ - - sound@gentoo.org - Gentoo Sound project - + + Sergiy.Borodych@gmail.com + Sergiy Borodych + Proxied maintainer + + + sound@gentoo.org + Gentoo Sound project + + + Install some extra deps for plugins (ex. Titlebar) + Enable audio support via legacy gstreamer:0.10 + diff --git a/media-tv/kodi/Manifest b/media-tv/kodi/Manifest index 4d198da29a57..5448b44bdf1e 100644 --- a/media-tv/kodi/Manifest +++ b/media-tv/kodi/Manifest @@ -8,3 +8,6 @@ DIST kodi-16.1-generated-addons.tar.xz 38988 SHA256 9e5187b26e9aa5e273ae84a2435d DIST kodi-16.1.tar.gz 52091107 SHA256 7d82c8aff2715c83deecdf10c566e26105bec0473af530a1356d4c747ebdfd10 SHA512 fe7012ea899906d418faa19af5066e5976d092745e91030106ea4f75399ad67a4bb4e4f384605ab7b2d9e24174aab2e243531f31d79ff5ae33564361b25eb073 WHIRLPOOL eabe28e2d0bf35dc1272551e9179b2450607c97295daffcfa5ce90a56c5db42467fe0f9ba43cc542a0843cb867554682e9cd223a326c37bee7dfd086cb40ec4d DIST kodi-17.0b4-generated-addons.tar.xz 57024 SHA256 57da0a403fea4aed9a921ccec40d5fb6e2c4de8857308f9f46ce1339c8e6bd23 SHA512 78a786f6414ed38c6d89ae29537964586f7b5df28f08b0de3df209baa13905d35045dfcc71b40bf36dfbf29825892ed2b96cfee7365e56e5a13aa88abceddaf3 WHIRLPOOL bc582bc195637dd38ea0663c29decc5f30ed7b13586578d667191bd0fce696d6d7a934026a4be3f077fedcaef7611939ef3e74a0d5e9161ae65f4dd51d3bab87 DIST kodi-17.0b4.tar.gz 54924547 SHA256 ace9a50e1552bf38633d92d6ef6af9a4489c5ecfda6c36e76f1d36d77d383308 SHA512 dadf34ca53f967db5fdefa95e551fc0a0be6f48bee641a431ab3a39efc324d8096bafb223f98939e2008cc1fa8d384ea6a6d63d1f7af65f2601f313ed2f6d773 WHIRLPOOL 3a45f73dec832232125eeca2ae76c8f66f6e534e1f65a3cf15e046f03159cb791575db99ab38a6fe1230cdb97e4f479d616bf1f2a7863bff799cfa99b196534a +DIST libdvdcss-2f12236bc1c92f73c21e973363f79eb300de603f.tar.gz 95395 SHA256 b6eb2d929ff56cb051152c32010afc5e7cf5fe8c5ae32dca412a2b46b6b57e34 SHA512 12ba7aa653fcb26d5336bf2a8110c924d634cec79f684bbf19dc38ea33f69fb68c22c97f4c09e5ca7c35f95f6c324a6d70ccc2c501a99122a9321cafd33b2cd9 WHIRLPOOL 8570ad8d2b6e629cc1c7e544be2853cab3bb50fd73438cea47c7a0919b251cecf906f7446ef3714c54ee3e636278dc0dabab47f772440624ff49877068b7b50a +DIST libdvdnav-43b5f81f5fe30bceae3b7cecf2b0ca57fc930dac.tar.gz 130603 SHA256 8e3f0563e16df898fe115e1723e3f78dbc953f6e9cf4f04568add215371d9ed2 SHA512 901c6f24afa1d78b6ed78d1ee30daf634ca0bbc0467ef9cc3416bcab4fbc4fda6869ffa051791d85c0b510de748805328627681ef044668a7857299f0035232e WHIRLPOOL 588d060f418f18ef193061ff88260ac7929647b2babde5b78ab73141ffc7f3782ce1254bfee1234ec0da8bb28bc16ede301b4ec1e2d3073b9c6d22cb526f06ca +DIST libdvdread-17d99db97e7b8f23077b342369d3c22a6250affd.tar.gz 124326 SHA256 e7179b2054163652596a56301c9f025515cb08c6d6310b42b897c3ad11c0199b SHA512 e59ae0bfdc62698e407e3d70503c6a7c5e308545c9dae7843e25db3b5b62d9b26256be77ef4e884263add6b4abec3438c324bfd5715f6ca2ce7fa5962d43a6c2 WHIRLPOOL b42130027d201e545fabc27677bd4238d04bcbc5a0e622ca6da396ac340ea94b5c60004557334464a31dac880603dab99e2f189e41d6cddbe9e32728c626085a diff --git a/media-tv/kodi/kodi-17.0_beta4.ebuild b/media-tv/kodi/kodi-17.0_beta4-r1.ebuild similarity index 89% rename from media-tv/kodi/kodi-17.0_beta4.ebuild rename to media-tv/kodi/kodi-17.0_beta4-r1.ebuild index b38f7f56a115..51aef4018698 100644 --- a/media-tv/kodi/kodi-17.0_beta4.ebuild +++ b/media-tv/kodi/kodi-17.0_beta4-r1.ebuild @@ -10,6 +10,9 @@ PYTHON_REQ_USE="sqlite" inherit eutils linux-info python-single-r1 multiprocessing autotools toolchain-funcs +LIBDVDCSS_COMMIT="2f12236bc1c92f73c21e973363f79eb300de603f" +LIBDVDREAD_COMMIT="17d99db97e7b8f23077b342369d3c22a6250affd" +LIBDVDNAV_COMMIT="43b5f81f5fe30bceae3b7cecf2b0ca57fc930dac" CODENAME="Krypton" case ${PV} in 9999) @@ -23,6 +26,9 @@ case ${PV} in MY_PV=${MY_PV//_rc/rc} MY_P="${PN}-${MY_PV}" SRC_URI="https://github.com/xbmc/xbmc/archive/${MY_PV}-${CODENAME}.tar.gz -> ${MY_P}.tar.gz + https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_COMMIT}.tar.gz -> libdvdcss-${LIBDVDCSS_COMMIT}.tar.gz + https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_COMMIT}.tar.gz -> libdvdread-${LIBDVDREAD_COMMIT}.tar.gz + https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_COMMIT}.tar.gz -> libdvdnav-${LIBDVDNAV_COMMIT}.tar.gz !java? ( https://github.com/candrews/gentoo-kodi/raw/master/${MY_P}-generated-addons.tar.xz )" KEYWORDS="~amd64 ~x86" @@ -153,6 +159,9 @@ pkg_setup() { src_unpack() { [[ ${PV} == "9999" ]] && git-r3_src_unpack || default + cp "${DISTDIR}/libdvdcss-${LIBDVDCSS_COMMIT}.tar.gz" "${S}/tools/depends/target/libdvdcss/libdvdcss-master.tar.gz" || die + cp "${DISTDIR}/libdvdread-${LIBDVDREAD_COMMIT}.tar.gz" "${S}/tools/depends/target/libdvdread/libdvdread-master.tar.gz" || die + cp "${DISTDIR}/libdvdnav-${LIBDVDNAV_COMMIT}.tar.gz" "${S}/tools/depends/target/libdvdnav/libdvdnav-master.tar.gz" || die } src_prepare() { diff --git a/media-tv/kodi/kodi-9999.ebuild b/media-tv/kodi/kodi-9999.ebuild index b38f7f56a115..51aef4018698 100644 --- a/media-tv/kodi/kodi-9999.ebuild +++ b/media-tv/kodi/kodi-9999.ebuild @@ -10,6 +10,9 @@ PYTHON_REQ_USE="sqlite" inherit eutils linux-info python-single-r1 multiprocessing autotools toolchain-funcs +LIBDVDCSS_COMMIT="2f12236bc1c92f73c21e973363f79eb300de603f" +LIBDVDREAD_COMMIT="17d99db97e7b8f23077b342369d3c22a6250affd" +LIBDVDNAV_COMMIT="43b5f81f5fe30bceae3b7cecf2b0ca57fc930dac" CODENAME="Krypton" case ${PV} in 9999) @@ -23,6 +26,9 @@ case ${PV} in MY_PV=${MY_PV//_rc/rc} MY_P="${PN}-${MY_PV}" SRC_URI="https://github.com/xbmc/xbmc/archive/${MY_PV}-${CODENAME}.tar.gz -> ${MY_P}.tar.gz + https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_COMMIT}.tar.gz -> libdvdcss-${LIBDVDCSS_COMMIT}.tar.gz + https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_COMMIT}.tar.gz -> libdvdread-${LIBDVDREAD_COMMIT}.tar.gz + https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_COMMIT}.tar.gz -> libdvdnav-${LIBDVDNAV_COMMIT}.tar.gz !java? ( https://github.com/candrews/gentoo-kodi/raw/master/${MY_P}-generated-addons.tar.xz )" KEYWORDS="~amd64 ~x86" @@ -153,6 +159,9 @@ pkg_setup() { src_unpack() { [[ ${PV} == "9999" ]] && git-r3_src_unpack || default + cp "${DISTDIR}/libdvdcss-${LIBDVDCSS_COMMIT}.tar.gz" "${S}/tools/depends/target/libdvdcss/libdvdcss-master.tar.gz" || die + cp "${DISTDIR}/libdvdread-${LIBDVDREAD_COMMIT}.tar.gz" "${S}/tools/depends/target/libdvdread/libdvdread-master.tar.gz" || die + cp "${DISTDIR}/libdvdnav-${LIBDVDNAV_COMMIT}.tar.gz" "${S}/tools/depends/target/libdvdnav/libdvdnav-master.tar.gz" || die } src_prepare() { diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 52a3e750a369..0f5a36ce062c 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Sun, 06 Nov 2016 08:13:14 +0000 +Mon, 07 Nov 2016 05:43:25 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 52a3e750a369..0f5a36ce062c 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Sun, 06 Nov 2016 08:13:14 +0000 +Mon, 07 Nov 2016 05:43:25 +0000 diff --git a/metadata/md5-cache/app-admin/elektra-0.8.15 b/metadata/md5-cache/app-admin/elektra-0.8.15 index 98b13e5181e9..8e74267cac89 100644 --- a/metadata/md5-cache/app-admin/elektra-0.8.15 +++ b/metadata/md5-cache/app-admin/elektra-0.8.15 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=0/0.8.15 SRC_URI=ftp://ftp.markus-raab.org/elektra/releases/elektra-0.8.15.tar.gz _eclasses_=cmake-multilib 273c15f5a0a06438a38bb5c3e98fa2db cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e7e86e2428d3ff6db6a65f7bd8ab0bab +_md5_=5ec2e5a699f5f7fc5df4a26272a27908 diff --git a/metadata/md5-cache/app-admin/elektra-0.8.16 b/metadata/md5-cache/app-admin/elektra-0.8.16 new file mode 100644 index 000000000000..38e42526a4a8 --- /dev/null +++ b/metadata/md5-cache/app-admin/elektra-0.8.16 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=dev-libs/libltdl: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(-)?] >=dev-libs/libxml2-2.9.1-r4[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(-)?] augeas? ( app-admin/augeas ) dbus? ( >=sys-apps/dbus-1.6.18-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(-)?] ) iconv? ( >=virtual/libiconv-0-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(-)?] ) java? ( >=virtual/jdk-1.8.0 ) qt5? ( dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 ) uname? ( sys-apps/coreutils ) systemd? ( sys-apps/systemd[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(-)?] ) yajl? ( >=dev-libs/yajl-1.0.11-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(-)?] ) doc? ( app-doc/doxygen ) test? ( >=dev-cpp/gtest-1.7.0 ) sys-devel/make >=dev-util/cmake-2.8.12 java? ( >=dev-java/java-config-2.2.0-r3 ) +DESCRIPTION=Framework to store config parameters in hierarchical key-value pairs +EAPI=6 +HOMEPAGE=https://freedesktop.org/wiki/Software/Elektra +IUSE=dbus doc qt5 static-libs test augeas iconv ini java simpleini syslog systemd tcl +uname xml yajl 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 elibc_FreeBSD java +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-libs/libltdl: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(-)?] >=dev-libs/libxml2-2.9.1-r4[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(-)?] augeas? ( app-admin/augeas ) dbus? ( >=sys-apps/dbus-1.6.18-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(-)?] ) iconv? ( >=virtual/libiconv-0-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(-)?] ) java? ( >=virtual/jdk-1.8.0 ) qt5? ( dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 ) uname? ( sys-apps/coreutils ) systemd? ( sys-apps/systemd[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(-)?] ) yajl? ( >=dev-libs/yajl-1.0.11-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(-)?] ) java? ( >=dev-java/java-config-2.2.0-r3 ) +RESTRICT=test +SLOT=0/0.8.16 +SRC_URI=ftp://ftp.markus-raab.org/elektra/releases/elektra-0.8.16.tar.gz +_eclasses_=cmake-multilib 273c15f5a0a06438a38bb5c3e98fa2db cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=f22339969ad60fdd10ea6151d8717598 diff --git a/metadata/md5-cache/app-admin/elektra-9999 b/metadata/md5-cache/app-admin/elektra-9999 index c0ab957bdda8..5e4ddf6158c0 100644 --- a/metadata/md5-cache/app-admin/elektra-9999 +++ b/metadata/md5-cache/app-admin/elektra-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install preinst prepare setup test unpack -DEPEND=dev-libs/libltdl: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(-)?] >=dev-libs/libxml2-2.9.1-r4[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(-)?] augeas? ( app-admin/augeas ) dbus? ( >=sys-apps/dbus-1.6.18-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(-)?] ) iconv? ( >=virtual/libiconv-0-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(-)?] ) java? ( >=virtual/jdk-1.8.0 ) qt5? ( >=dev-qt/qtdeclarative-5.3:5 >=dev-qt/qtgui-5.3:5 >=dev-qt/qttest-5.3:5 >=dev-qt/qtwidgets-5.3:5 ) uname? ( sys-apps/coreutils ) systemd? ( sys-apps/systemd[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(-)?] ) yajl? ( >=dev-libs/yajl-1.0.11-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(-)?] ) doc? ( app-doc/doxygen ) test? ( >=dev-cpp/gtest-1.7.0 ) sys-devel/make >=dev-util/cmake-2.8.12 java? ( >=dev-java/java-config-2.2.0-r3 ) >=dev-vcs/git-1.8.2.1 +DEPEND=dev-libs/libltdl: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(-)?] >=dev-libs/libxml2-2.9.1-r4[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(-)?] augeas? ( app-admin/augeas ) dbus? ( >=sys-apps/dbus-1.6.18-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(-)?] ) iconv? ( >=virtual/libiconv-0-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(-)?] ) java? ( >=virtual/jdk-1.8.0 ) qt5? ( dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 ) uname? ( sys-apps/coreutils ) systemd? ( sys-apps/systemd[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(-)?] ) yajl? ( >=dev-libs/yajl-1.0.11-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(-)?] ) doc? ( app-doc/doxygen ) test? ( >=dev-cpp/gtest-1.7.0 ) sys-devel/make >=dev-util/cmake-2.8.12 java? ( >=dev-java/java-config-2.2.0-r3 ) >=dev-vcs/git-1.8.2.1 DESCRIPTION=Framework to store config parameters in hierarchical key-value pairs -EAPI=5 +EAPI=6 HOMEPAGE=https://freedesktop.org/wiki/Software/Elektra IUSE=dbus doc qt5 static-libs test augeas iconv ini java simpleini syslog systemd tcl +uname xml yajl 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 elibc_FreeBSD java LICENSE=BSD -RDEPEND=dev-libs/libltdl: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(-)?] >=dev-libs/libxml2-2.9.1-r4[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(-)?] augeas? ( app-admin/augeas ) dbus? ( >=sys-apps/dbus-1.6.18-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(-)?] ) iconv? ( >=virtual/libiconv-0-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(-)?] ) java? ( >=virtual/jdk-1.8.0 ) qt5? ( >=dev-qt/qtdeclarative-5.3:5 >=dev-qt/qtgui-5.3:5 >=dev-qt/qttest-5.3:5 >=dev-qt/qtwidgets-5.3:5 ) uname? ( sys-apps/coreutils ) systemd? ( sys-apps/systemd[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(-)?] ) yajl? ( >=dev-libs/yajl-1.0.11-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(-)?] ) java? ( >=dev-java/java-config-2.2.0-r3 ) +RDEPEND=dev-libs/libltdl: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(-)?] >=dev-libs/libxml2-2.9.1-r4[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(-)?] augeas? ( app-admin/augeas ) dbus? ( >=sys-apps/dbus-1.6.18-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(-)?] ) iconv? ( >=virtual/libiconv-0-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(-)?] ) java? ( >=virtual/jdk-1.8.0 ) qt5? ( dev-qt/qtdeclarative:5 dev-qt/qtgui:5 dev-qt/qttest:5 dev-qt/qtwidgets:5 ) uname? ( sys-apps/coreutils ) systemd? ( sys-apps/systemd[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(-)?] ) yajl? ( >=dev-libs/yajl-1.0.11-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(-)?] ) java? ( >=dev-java/java-config-2.2.0-r3 ) RESTRICT=test SLOT=0/9999 _eclasses_=cmake-multilib 273c15f5a0a06438a38bb5c3e98fa2db cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc git-r3 e928b84a9f6f1d9076d1d27687876dc6 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=47725ee8bedf0bd3ffa8660ba5faa240 +_md5_=4da02040699d6e845d84df0139b3f790 diff --git a/metadata/md5-cache/app-admin/glance-13.0.0 b/metadata/md5-cache/app-admin/glance-13.0.0 index ac405a85bf22..f58b2e52840b 100644 --- a/metadata/md5-cache/app-admin/glance-13.0.0 +++ b/metadata/md5-cache/app-admin/glance-13.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=Services for discovering, registering, and retrieving VM images EAPI=6 HOMEPAGE=https://launchpad.net/glance IUSE=doc mysql postgres +sqlite +swift python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] sqlite? ( >=dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/psycopg-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/httplib2-0.7.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pycrypto-2.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/futurist-0.11.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/futurist-0.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/taskflow-1.26.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/WSME-0.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyopenssl-0.14[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/osprofiler-1.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/glance_store-0.18.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/semantic_version-2.3.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cryptography-1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cursive-0.1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/monotonic-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=https://tarballs.openstack.org/glance/glance-13.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=4b28eb90fe3e27ee5669e5f7a327112a +_md5_=893f3b12fcbd2fec4bd1f1a8ab9a2a4a diff --git a/metadata/md5-cache/app-arch/dpkg-1.18.9 b/metadata/md5-cache/app-arch/dpkg-1.18.12 similarity index 92% rename from metadata/md5-cache/app-arch/dpkg-1.18.9 rename to metadata/md5-cache/app-arch/dpkg-1.18.12 index 8e23c4ee72cb..f178882c7cd5 100644 --- a/metadata/md5-cache/app-arch/dpkg-1.18.9 +++ b/metadata/md5-cache/app-arch/dpkg-1.18.12 @@ -8,6 +8,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=GPL-2+ RDEPEND=>=dev-lang/perl-5.6.0:= dev-perl/TimeDate bzip2? ( app-arch/bzip2 ) lzma? ( app-arch/xz-utils ) selinux? ( sys-libs/libselinux ) zlib? ( >=sys-libs/zlib-1.1.4 ) SLOT=0 -SRC_URI=mirror://debian/pool/main/d/dpkg/dpkg_1.18.9.tar.xz +SRC_URI=mirror://debian/pool/main/d/dpkg/dpkg_1.18.12.tar.xz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=58beb43ba5b1a1cbd0a75e8565f383d9 +_md5_=03bf9c61ad16bc616034b20e060a4a5c diff --git a/metadata/md5-cache/app-arch/unar-1.10.1 b/metadata/md5-cache/app-arch/unar-1.10.1 index 7020261af0cc..7b929531cb24 100644 --- a/metadata/md5-cache/app-arch/unar-1.10.1 +++ b/metadata/md5-cache/app-arch/unar-1.10.1 @@ -3,10 +3,10 @@ DEPEND=gnustep-base/gnustep-base >=gnustep-base/gnustep-make-2.6.0[native-except DESCRIPTION=unpacker for various archiving formats, e.g. rar v3 EAPI=5 HOMEPAGE=https://unarchiver.c3.cx/ -KEYWORDS=~amd64 +KEYWORDS=amd64 LICENSE=LGPL-2.1 RDEPEND=gnustep-base/gnustep-base >=gnustep-base/gnustep-make-2.6.0[native-exceptions] dev-libs/icu:= SLOT=0 SRC_URI=https://unarchiver.c3.cx/downloads/unar1.10.1_src.zip _eclasses_=multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=59de8962a98ccf95f490734f2f606e1c +_md5_=e19fc876c60cb46bebbb1f60a7acbaad diff --git a/metadata/md5-cache/app-crypt/simple-tpm-pk11-0.03 b/metadata/md5-cache/app-crypt/simple-tpm-pk11-0.03 deleted file mode 100644 index 5f8f22ce89a3..000000000000 --- a/metadata/md5-cache/app-crypt/simple-tpm-pk11-0.03 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=prepare -DEPEND=app-crypt/tpm-tools[pkcs11] dev-libs/opencryptoki[tpm] app-crypt/trousers !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=Simple PKCS11 provider for TPM chips -EAPI=5 -HOMEPAGE=https://github.com/ThomasHabets/simple-tpm-pk11 -IUSE=libressl -KEYWORDS=~amd64 -LICENSE=Apache-2.0 -RDEPEND=app-crypt/tpm-tools[pkcs11] dev-libs/opencryptoki[tpm] app-crypt/trousers !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) net-misc/openssh[-X509] -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/ThomasHabets/simple-tpm-pk11/archive/0.03.tar.gz -> simple-tpm-pk11-0.03.tar.gz -_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=3cd0a6b7a64ed00340be1045fc887063 diff --git a/metadata/md5-cache/app-crypt/simple-tpm-pk11-0.04 b/metadata/md5-cache/app-crypt/simple-tpm-pk11-0.06 similarity index 69% rename from metadata/md5-cache/app-crypt/simple-tpm-pk11-0.04 rename to metadata/md5-cache/app-crypt/simple-tpm-pk11-0.06 index 3e55b80c9ff9..07170c34fa14 100644 --- a/metadata/md5-cache/app-crypt/simple-tpm-pk11-0.04 +++ b/metadata/md5-cache/app-crypt/simple-tpm-pk11-0.06 @@ -1,7 +1,7 @@ DEFINED_PHASES=prepare DEPEND=app-crypt/tpm-tools[pkcs11] dev-libs/opencryptoki[tpm] app-crypt/trousers !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=Simple PKCS11 provider for TPM chips -EAPI=5 +EAPI=6 HOMEPAGE=https://github.com/ThomasHabets/simple-tpm-pk11 IUSE=libressl KEYWORDS=~amd64 @@ -9,6 +9,6 @@ LICENSE=Apache-2.0 RDEPEND=app-crypt/tpm-tools[pkcs11] dev-libs/opencryptoki[tpm] app-crypt/trousers !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) net-misc/openssh[-X509] RESTRICT=test SLOT=0 -SRC_URI=https://github.com/ThomasHabets/simple-tpm-pk11/archive/0.04.tar.gz -> simple-tpm-pk11-0.04.tar.gz -_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=3cd0a6b7a64ed00340be1045fc887063 +SRC_URI=https://github.com/ThomasHabets/simple-tpm-pk11/archive/0.06.tar.gz -> simple-tpm-pk11-0.06.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=79cdab21fe4268626342ca60071cb733 diff --git a/metadata/md5-cache/app-doc/kicad-doc-4.0.1 b/metadata/md5-cache/app-doc/kicad-doc-4.0.1 index e7a11e00f782..51f1cd1c6d94 100644 --- a/metadata/md5-cache/app-doc/kicad-doc-4.0.1 +++ b/metadata/md5-cache/app-doc/kicad-doc-4.0.1 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=>=app-text/asciidoc-8.6.9 app-text/dblatex >=app-text/po4a-0.45 >=sys-devel/gettext-0.18 dev-util/source-highlight dev-perl/Unicode-LineBreak l10n_ja? ( media-fonts/vlgothic ) sys-devel/make >=dev-util/cmake-2.8.12 +DEPEND=>=app-text/asciidoc-8.6.9 app-text/dblatex app-text/texlive:=[l10n_en?,l10n_fr?,l10n_it?,l10n_ja?,l10n_nl?,l10n_pl?] >=app-text/po4a-0.45 >=sys-devel/gettext-0.18 dev-util/source-highlight dev-perl/Unicode-LineBreak l10n_ja? ( media-fonts/vlgothic ) sys-devel/make >=dev-util/cmake-2.8.12 DESCRIPTION=Electronic Schematic and PCB design tools manuals EAPI=5 HOMEPAGE=http://www.kicad-pcb.org/ @@ -9,4 +9,4 @@ LICENSE=|| ( GPL-3+ CC-BY-3.0 ) GPL-2 SLOT=0 SRC_URI=https://github.com/KiCad/kicad-doc/archive/4.0.1.tar.gz -> kicad-doc-4.0.1.tar.gz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=fa04caf5e598c3397d446d291c3c2b0d +_md5_=47f786af610aa8ccdbd5613b8366aece diff --git a/metadata/md5-cache/app-doc/kicad-doc-4.0.2 b/metadata/md5-cache/app-doc/kicad-doc-4.0.2 index 723aa6d268a9..fa4a3ad35f77 100644 --- a/metadata/md5-cache/app-doc/kicad-doc-4.0.2 +++ b/metadata/md5-cache/app-doc/kicad-doc-4.0.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=>=app-text/asciidoc-8.6.9 app-text/dblatex >=app-text/po4a-0.45 >=sys-devel/gettext-0.18 dev-util/source-highlight dev-perl/Unicode-LineBreak l10n_ja? ( media-fonts/vlgothic ) sys-devel/make >=dev-util/cmake-2.8.12 +DEPEND=>=app-text/asciidoc-8.6.9 app-text/dblatex app-text/texlive:=[l10n_en?,l10n_fr?,l10n_it?,l10n_ja?,l10n_nl?,l10n_pl?] >=app-text/po4a-0.45 >=sys-devel/gettext-0.18 dev-util/source-highlight dev-perl/Unicode-LineBreak l10n_ja? ( media-fonts/vlgothic ) sys-devel/make >=dev-util/cmake-2.8.12 DESCRIPTION=Electronic Schematic and PCB design tools manuals EAPI=5 HOMEPAGE=http://www.kicad-pcb.org/ @@ -9,4 +9,4 @@ LICENSE=|| ( GPL-3+ CC-BY-3.0 ) GPL-2 SLOT=0 SRC_URI=https://github.com/KiCad/kicad-doc/archive/4.0.2.tar.gz -> kicad-doc-4.0.2.tar.gz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=fa04caf5e598c3397d446d291c3c2b0d +_md5_=47f786af610aa8ccdbd5613b8366aece diff --git a/metadata/md5-cache/app-doc/kicad-doc-4.0.4 b/metadata/md5-cache/app-doc/kicad-doc-4.0.4 new file mode 100644 index 000000000000..d3c6b9c87884 --- /dev/null +++ b/metadata/md5-cache/app-doc/kicad-doc-4.0.4 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=app-text/asciidoc-8.6.9 app-text/dblatex app-text/texlive:=[l10n_en?,l10n_fr?,l10n_it?,l10n_ja?,l10n_nl?,l10n_pl?] >=app-text/po4a-0.45 >=sys-devel/gettext-0.18 dev-util/source-highlight dev-perl/Unicode-LineBreak l10n_ja? ( media-fonts/vlgothic ) sys-devel/make >=dev-util/cmake-2.8.12 +DESCRIPTION=Electronic Schematic and PCB design tools manuals +EAPI=5 +HOMEPAGE=http://www.kicad-pcb.org/ +IUSE=html pdf l10n_en l10n_fr l10n_it l10n_ja l10n_nl l10n_pl +KEYWORDS=~amd64 +LICENSE=|| ( GPL-3+ CC-BY-3.0 ) GPL-2 +SLOT=0 +SRC_URI=https://github.com/KiCad/kicad-doc/archive/4.0.4.tar.gz -> kicad-doc-4.0.4.tar.gz +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=03bb688661f07c69f672d1da21576086 diff --git a/metadata/md5-cache/app-emulation/hyperd-0.7.0 b/metadata/md5-cache/app-emulation/hyperd-0.7.0 new file mode 100644 index 000000000000..fb45bf26354c --- /dev/null +++ b/metadata/md5-cache/app-emulation/hyperd-0.7.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare unpack +DEPEND=libvirt? ( >=app-emulation/libvirt-1.2.2 ) xen? ( app-emulation/xen ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 virtual/pkgconfig >=dev-lang/go-1.4.2:= +DESCRIPTION=Hypervisor-based Runtime for OCI +EAPI=6 +HOMEPAGE=https://github.com/hyperhq/hyperd +IUSE=libvirt xen +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=libvirt? ( >=app-emulation/libvirt-1.2.2 ) xen? ( app-emulation/xen ) +SLOT=0 +SRC_URI=https://github.com/hyperhq/hyperd/archive/v0.7.0.tar.gz -> hyperd-0.7.0.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c golang-base 08fe6e0e2b4750daff8887a7f0e1f873 golang-vcs-snapshot 1caa6d8238d2378ad688ae068ff22e5a libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=6da77e6b8a5cd99e51493ab6c8e37227 diff --git a/metadata/md5-cache/app-emulation/runv-0.7.0 b/metadata/md5-cache/app-emulation/runv-0.7.0 new file mode 100644 index 000000000000..5a5d2e8dc7c5 --- /dev/null +++ b/metadata/md5-cache/app-emulation/runv-0.7.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare unpack +DEPEND=libvirt? ( >=app-emulation/libvirt-1.2.2 ) xen? ( app-emulation/xen ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=dev-lang/go-1.4.2:= +DESCRIPTION=Hypervisor-based Runtime for OCI +EAPI=6 +HOMEPAGE=https://github.com/hyperhq/runv +IUSE=libvirt xen +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=libvirt? ( >=app-emulation/libvirt-1.2.2 ) xen? ( app-emulation/xen ) +SLOT=0 +SRC_URI=https://github.com/hyperhq/runv/archive/v0.7.0.tar.gz -> runv-0.7.0.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c golang-base 08fe6e0e2b4750daff8887a7f0e1f873 golang-vcs-snapshot 1caa6d8238d2378ad688ae068ff22e5a libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=660af32d414e79ba27e9d6f409fb9494 diff --git a/metadata/md5-cache/app-misc/khal-0.8.3 b/metadata/md5-cache/app-misc/khal-0.8.3 new file mode 100644 index 000000000000..800bb11b7c7f --- /dev/null +++ b/metadata/md5-cache/app-misc/khal-0.8.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools_scm[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] python_targets_python3_4? ( dev-lang/python:3.4[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] +DESCRIPTION=A CalDAV based calendar +EAPI=6 +HOMEPAGE=http://lostpackets.de/khal/ +IUSE=zsh-completion python_targets_python3_4 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/click-3.2[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] dev-python/icalendar[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] dev-python/urwid[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] dev-python/pyxdg[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] dev-python/pytz[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] dev-python/vdirsyncer[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] dev-python/pkginfo[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] dev-python/python-dateutil[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] dev-python/configobj[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] >=dev-python/tzlocal-1.0[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] dev-python/setproctitle[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] zsh-completion? ( app-shells/zsh ) python_targets_python3_4? ( dev-lang/python:3.4[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python3_4(-)?,-python_single_target_python3_4(-)] +REQUIRED_USE=|| ( python_targets_python3_4 ) +SLOT=0 +SRC_URI=mirror://pypi/k/khal/khal-0.8.3.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=65f4abe6f893b0115ff9882ad1a287b7 diff --git a/metadata/md5-cache/app-misc/neofetch-1.9 b/metadata/md5-cache/app-misc/neofetch-1.9.1 similarity index 70% rename from metadata/md5-cache/app-misc/neofetch-1.9 rename to metadata/md5-cache/app-misc/neofetch-1.9.1 index e0c589fe909c..d9590f98f85e 100644 --- a/metadata/md5-cache/app-misc/neofetch-1.9 +++ b/metadata/md5-cache/app-misc/neofetch-1.9.1 @@ -4,8 +4,9 @@ DESCRIPTION=Simple information system script EAPI=6 HOMEPAGE=https://github.com/dylanaraps/neofetch IUSE=X +KEYWORDS=~amd64 ~x86 LICENSE=MIT RDEPEND=app-shells/bash:* sys-apps/pciutils X? ( x11-apps/xprop x11-apps/xwininfo x11-apps/xrandr www-client/w3m[imlib] media-libs/imlib2 media-gfx/imagemagick ) SLOT=0 -SRC_URI=https://github.com/dylanaraps/neofetch/archive/1.9/neofetch-1.9.tar.gz -_md5_=b705025b70aba63debf31feadc29ffae +SRC_URI=https://github.com/dylanaraps/neofetch/archive/1.9.1/neofetch-1.9.1.tar.gz +_md5_=d4d5910f131e42c37045bb0cbf7eaa5b diff --git a/metadata/md5-cache/app-office/libreoffice-5.1.4.2 b/metadata/md5-cache/app-office/libreoffice-5.1.4.2 index a856362a293e..1be4774ea42f 100644 --- a/metadata/md5-cache/app-office/libreoffice-5.1.4.2 +++ b/metadata/md5-cache/app-office/libreoffice-5.1.4.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] app-arch/unzip app-arch/zip app-text/hunspell >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes app-text/poppler:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl >=dev-libs/boost-1.55:= dev-libs/expat dev-libs/hyphen dev-libs/icu:= =dev-libs/liborcus-0.9* dev-libs/librevenge dev-libs/nspr dev-libs/nss !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 x11-libs/cairo[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool >=dev-util/mdds-0.12.0:0= media-libs/glm net-misc/npapi-sdk sys-devel/bison sys-devel/flex sys-devel/gettext sys-devel/ucpp sys-libs/zlib virtual/pkgconfig x11-libs/libXt x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( dev-java/ant-core >=virtual/jdk-1.6 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) >=sys-apps/sed-4 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] ) +DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] app-arch/unzip app-arch/zip app-text/hunspell >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes app-text/poppler:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl >=dev-libs/boost-1.55:= dev-libs/expat dev-libs/hyphen =dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 x11-libs/cairo[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool >=dev-util/mdds-0.12.0:0= media-libs/glm net-misc/npapi-sdk sys-devel/bison sys-devel/flex sys-devel/gettext sys-devel/ucpp sys-libs/zlib virtual/pkgconfig x11-libs/libXt x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( dev-java/ant-core >=virtual/jdk-1.6 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) >=sys-apps/sed-4 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] ) DESCRIPTION=A full office productivity suite EAPI=6 HOMEPAGE=http://www.libreoffice.org @@ -7,9 +7,9 @@ IUSE=bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome KEYWORDS=amd64 ~arm x86 ~amd64-linux ~x86-linux LICENSE=|| ( LGPL-3 MPL-1.1 ) PDEPEND==app-office/libreoffice-l10n-5.1* -RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] app-arch/unzip app-arch/zip app-text/hunspell >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes app-text/poppler:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl >=dev-libs/boost-1.55:= dev-libs/expat dev-libs/hyphen dev-libs/icu:= =dev-libs/liborcus-0.9* dev-libs/librevenge dev-libs/nspr dev-libs/nss !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 x11-libs/cairo[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !app-office/openoffice media-fonts/liberation-fonts media-fonts/libertine media-fonts/urw-fonts java? ( >=virtual/jre-1.6 ) kde? ( >=kde-apps/kioclient-4.4:4[aqua=] ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.2.0-r3 ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] ) +RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] app-arch/unzip app-arch/zip app-text/hunspell >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes app-text/poppler:=[cxx] >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl >=dev-libs/boost-1.55:= dev-libs/expat dev-libs/hyphen =dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 x11-libs/cairo[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !app-office/openoffice media-fonts/liberation-fonts media-fonts/libertine media-fonts/urw-fonts java? ( >=virtual/jre-1.6 ) kde? ( >=kde-apps/kioclient-4.4:4[aqua=] ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.2.0-r3 ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] ) REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) bluetooth? ( dbus ) collada? ( gltf ) eds? ( gnome ) gnome? ( gtk ) telepathy? ( gtk ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-5.1.4.2.tar.xz http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-5.1.4.2.tar.xz http://download.documentfoundation.org/libreoffice/src/5.1.4//libreoffice-5.1.4.2.tar.xz http://download.documentfoundation.org/libreoffice/src/5.1.4//libreoffice-help-5.1.4.2.tar.xz http://download.documentfoundation.org/libreoffice/old/5.1.4.2//libreoffice-5.1.4.2.tar.xz http://download.documentfoundation.org/libreoffice/old/5.1.4.2//libreoffice-help-5.1.4.2.tar.xz http://dev-www.libreoffice.org/src//d62650a6f908e85643e557a236ea989c-vigra1.6.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz collada? ( http://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 pax-utils 4c2654a34ebe732e85fda354f6ee642f python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=146049a3cbf4af4620c00873e668d91d +_md5_=c33b8447f0e3c8466b4fdbe09eb9c3f4 diff --git a/metadata/md5-cache/app-office/libreoffice-5.2.2.2 b/metadata/md5-cache/app-office/libreoffice-5.2.2.2 index 17e70cad507e..2742c02a84ef 100644 --- a/metadata/md5-cache/app-office/libreoffice-5.2.2.2 +++ b/metadata/md5-cache/app-office/libreoffice-5.2.2.2 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack -DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] app-arch/unzip app-arch/zip app-text/hunspell >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl >=dev-libs/boost-1.55:= dev-libs/expat dev-libs/hyphen dev-libs/icu:= =dev-libs/liborcus-0.11* dev-libs/librevenge dev-libs/nspr dev-libs/nss !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 x11-libs/cairo[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool >=dev-util/mdds-1.2.0:1= media-libs/glm sys-devel/bison sys-devel/flex sys-devel/gettext sys-devel/ucpp sys-libs/zlib virtual/pkgconfig x11-libs/libXt x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( dev-java/ant-core >=virtual/jdk-1.6 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) >=sys-apps/sed-4 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] ) +DEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] app-arch/unzip app-arch/zip app-text/hunspell >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl >=dev-libs/boost-1.55:= dev-libs/expat dev-libs/hyphen =dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 x11-libs/cairo[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !=dev-libs/libatomic_ops-7.2d >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool >=dev-util/mdds-1.2.0:1= media-libs/glm sys-devel/bison sys-devel/flex sys-devel/gettext sys-devel/ucpp sys-libs/zlib virtual/pkgconfig x11-libs/libXt x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( dev-java/ant-core >=virtual/jdk-1.6 ) odk? ( >=app-doc/doxygen-1.8.4 ) test? ( dev-util/cppunit ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) >=sys-apps/sed-4 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] ) DESCRIPTION=A full office productivity suite EAPI=6 HOMEPAGE=http://www.libreoffice.org @@ -7,9 +7,9 @@ IUSE=bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux LICENSE=|| ( LGPL-3 MPL-1.1 ) PDEPEND==app-office/libreoffice-l10n-5.2* -RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] app-arch/unzip app-arch/zip app-text/hunspell >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl >=dev-libs/boost-1.55:= dev-libs/expat dev-libs/hyphen dev-libs/icu:= =dev-libs/liborcus-0.11* dev-libs/librevenge dev-libs/nspr dev-libs/nss !libressl? ( >=dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 x11-libs/cairo[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !app-office/openoffice media-fonts/liberation-fonts media-fonts/libertine media-fonts/urw-fonts java? ( >=virtual/jre-1.6 ) kde? ( >=kde-apps/kioclient-4.4:4[aqua=] ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.2.0-r3 ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] ) +RDEPEND=python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads,xml] ) python_single_target_python3_4? ( dev-lang/python:3.4[threads,xml] ) python_single_target_python3_5? ( dev-lang/python:3.5[threads,xml] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] app-arch/unzip app-arch/zip app-text/hunspell >=app-text/libabw-0.1.0 >=app-text/libebook-0.1 >=app-text/libetonyek-0.1 app-text/libexttextcat app-text/liblangtag >=app-text/libmspub-0.1.0 >=app-text/libmwaw-0.3.1 >=app-text/libodfgen-0.1.0 app-text/libwpd:0.10[tools] app-text/libwpg:0.3 >=app-text/libwps-0.4 app-text/mythes >=dev-cpp/clucene-2.3.3.4-r2 =dev-cpp/libcmis-0.5* dev-db/unixODBC dev-lang/perl >=dev-libs/boost-1.55:= dev-libs/expat dev-libs/hyphen =dev-libs/openssl-1.0.0d:0 ) libressl? ( dev-libs/libressl ) >=dev-libs/redland-1.0.16 media-gfx/graphite2 media-libs/fontconfig media-libs/freetype:2 >=media-libs/glew-1.10:= >=media-libs/harfbuzz-0.9.18:=[icu(+)] media-libs/lcms:2 >=media-libs/libcdr-0.1.0 >=media-libs/libfreehand-0.1.0 media-libs/libpagemaker >=media-libs/libpng-1.4:0= >=media-libs/libvisio-0.1.0 net-libs/neon net-misc/curl net-nds/openldap sci-mathematics/lpsolve virtual/jpeg:0 x11-libs/cairo[X,-xlib-xcb] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender virtual/glu virtual/opengl bluetooth? ( net-wireless/bluez ) coinmp? ( sci-libs/coinor-mp ) collada? ( >=media-libs/opencollada-1.2.2_p20150207 ) cups? ( net-print/cups ) dbus? ( dev-libs/dbus-glib ) eds? ( dev-libs/glib:2 gnome-extra/evolution-data-server ) firebird? ( >=dev-db/firebird-2.5 ) gltf? ( media-libs/libgltf ) gnome? ( gnome-base/dconf ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( x11-libs/gdk-pixbuf >=x11-libs/gtk+-2.24:2 ) gtk3? ( dev-libs/glib:2 dev-libs/gobject-introspection >=x11-libs/gtk+-3.8:3 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_scripting-beanshell? ( dev-java/bsh ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) mysql? ( dev-db/mysql-connector-c++ ) pdfimport? ( app-text/poppler:=[cxx] ) postgres? ( >=dev-db/postgresql-9.0:*[kerberos] ) telepathy? ( net-libs/telepathy-glib ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !app-office/openoffice media-fonts/liberation-fonts media-fonts/libertine media-fonts/urw-fonts java? ( >=virtual/jre-1.6 ) kde? ( >=kde-apps/kioclient-4.4:4[aqua=] ) vlc? ( media-video/vlc ) java? ( >=dev-java/java-config-2.2.0-r3 ) kde? ( kde-frameworks/oxygen-icons ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] ) REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) bluetooth? ( dbus ) collada? ( gltf ) eds? ( gnome ) gnome? ( gtk ) telepathy? ( gtk ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-5.2.2.2.tar.xz http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-5.2.2.2.tar.xz http://download.documentfoundation.org/libreoffice/src/5.2.2//libreoffice-5.2.2.2.tar.xz http://download.documentfoundation.org/libreoffice/src/5.2.2//libreoffice-help-5.2.2.2.tar.xz http://download.documentfoundation.org/libreoffice/old/5.2.2.2//libreoffice-5.2.2.2.tar.xz http://download.documentfoundation.org/libreoffice/old/5.2.2.2//libreoffice-help-5.2.2.2.tar.xz http://dev-www.libreoffice.org/src//ce12af00283eb90d9281956524250d6e-xmlsec1-1.2.20.tar.gz collada? ( http://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 pax-utils 4c2654a34ebe732e85fda354f6ee642f python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=e64a10116e6a7de99dd0be5debca52ce +_md5_=2eea62b306f67aa849e56a6ba64b3630 diff --git a/metadata/md5-cache/app-office/libreoffice-5.2.3.3 b/metadata/md5-cache/app-office/libreoffice-5.2.3.3 index f46f731941d4..5b53e4538bf8 100644 --- a/metadata/md5-cache/app-office/libreoffice-5.2.3.3 +++ b/metadata/md5-cache/app-office/libreoffice-5.2.3.3 @@ -12,4 +12,4 @@ REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-5.2.3.3.tar.xz http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-5.2.3.3.tar.xz http://download.documentfoundation.org/libreoffice/src/5.2.3//libreoffice-5.2.3.3.tar.xz http://download.documentfoundation.org/libreoffice/src/5.2.3//libreoffice-help-5.2.3.3.tar.xz http://download.documentfoundation.org/libreoffice/old/5.2.3.3//libreoffice-5.2.3.3.tar.xz http://download.documentfoundation.org/libreoffice/old/5.2.3.3//libreoffice-help-5.2.3.3.tar.xz http://dev-www.libreoffice.org/src//ce12af00283eb90d9281956524250d6e-xmlsec1-1.2.20.tar.gz collada? ( http://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 pax-utils 4c2654a34ebe732e85fda354f6ee642f python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=e64a10116e6a7de99dd0be5debca52ce +_md5_=c72fa7e1986724788a9174d0c147b174 diff --git a/metadata/md5-cache/app-office/libreoffice-5.2.9999 b/metadata/md5-cache/app-office/libreoffice-5.2.9999 index 3a15c726c0db..7858c6d0963b 100644 --- a/metadata/md5-cache/app-office/libreoffice-5.2.9999 +++ b/metadata/md5-cache/app-office/libreoffice-5.2.9999 @@ -11,4 +11,4 @@ REQUIRED_USE=^^ ( python_single_target_python2_7 python_single_target_python3_4 SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.8.tar.xz ) http://dev-www.libreoffice.org/src//ce12af00283eb90d9281956524250d6e-xmlsec1-1.2.20.tar.gz collada? ( http://dev-www.libreoffice.org/src//4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2 ) java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc git-r3 e928b84a9f6f1d9076d1d27687876dc6 gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 pax-utils 4c2654a34ebe732e85fda354f6ee642f python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=e64a10116e6a7de99dd0be5debca52ce +_md5_=c72fa7e1986724788a9174d0c147b174 diff --git a/metadata/md5-cache/app-office/scribus-1.5.2-r1 b/metadata/md5-cache/app-office/scribus-1.5.2-r1 deleted file mode 100644 index e4bf0e26f054..000000000000 --- a/metadata/md5-cache/app-office/scribus-1.5.2-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare setup test -DEPEND=>=dev-lang/python-2.7.5-r2:2.7[tk?] >=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_python2_7(+)] app-text/libmspub >=app-text/poppler-0.19.0:= dev-libs/boost dev-libs/hyphen dev-libs/librevenge dev-libs/libxml2 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtquickcontrols:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-libs/fontconfig media-libs/freetype:2 media-libs/lcms:2 media-libs/libcdr media-libs/libpagemaker media-libs/libpng:0 media-libs/libvisio media-libs/tiff:0 net-print/cups sys-libs/zlib[minizip] virtual/jpeg:0= >=x11-libs/cairo-1.10.0[X,svg] boost? ( dev-libs/boost ) hunspell? ( app-text/hunspell ) graphicsmagick? ( media-gfx/graphicsmagick ) osg? ( dev-games/openscenegraph ) pdf? ( app-text/podofo:0= ) scripts? ( dev-python/pillow[tk?,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_python2_7(+)] ) tk? ( dev-python/pillow[tk?,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_python2_7(+)] ) dev-qt/linguist-tools:5 virtual/pkgconfig dev-util/ninja >=dev-util/cmake-2.8.12 -DESCRIPTION=Desktop publishing (DTP) and layout program -EAPI=6 -HOMEPAGE=http://www.scribus.net/ -IUSE=+boost debug examples graphicsmagick hunspell +minimal osg +pdf scripts templates tk linguas_af linguas_ar linguas_bg linguas_br linguas_ca linguas_ca_ES linguas_cs linguas_cs_CZ linguas_cy linguas_cy_GB linguas_da linguas_da_DK linguas_de linguas_de@1901 linguas_de_CH linguas_de_DE linguas_el linguas_en_AU linguas_en_GB linguas_en_US linguas_eo linguas_es linguas_es_ES linguas_et linguas_eu linguas_fi linguas_fi_FI linguas_fr linguas_gl linguas_he linguas_hr linguas_hu linguas_hu_HU linguas_ia linguas_id linguas_id_ID linguas_is linguas_is_IS linguas_it linguas_ja linguas_ko linguas_ku linguas_la linguas_lt linguas_lt_LT linguas_nb_NO linguas_nl linguas_nn_NO linguas_pl linguas_pl_PL linguas_pt linguas_pt_BR linguas_pt_PT linguas_ro linguas_ro_RO linguas_ru linguas_ru_RU linguas_sa linguas_sk linguas_sk_SK linguas_sl linguas_sl_SI linguas_sq linguas_sr linguas_sv linguas_sv_SE linguas_th_TH linguas_tr linguas_uk linguas_uk_UA linguas_zh_CN linguas_zh_TW python_targets_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-lang/python-2.7.5-r2:2.7[tk?] >=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_python2_7(+)] app-text/libmspub >=app-text/poppler-0.19.0:= dev-libs/boost dev-libs/hyphen dev-libs/librevenge dev-libs/libxml2 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtquickcontrols:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-libs/fontconfig media-libs/freetype:2 media-libs/lcms:2 media-libs/libcdr media-libs/libpagemaker media-libs/libpng:0 media-libs/libvisio media-libs/tiff:0 net-print/cups sys-libs/zlib[minizip] virtual/jpeg:0= >=x11-libs/cairo-1.10.0[X,svg] boost? ( dev-libs/boost ) hunspell? ( app-text/hunspell ) graphicsmagick? ( media-gfx/graphicsmagick ) osg? ( dev-games/openscenegraph ) pdf? ( app-text/podofo:0= ) scripts? ( dev-python/pillow[tk?,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_python2_7(+)] ) tk? ( dev-python/pillow[tk?,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_python2_7(+)] ) app-text/ghostscript-gpl -REQUIRED_USE=python_targets_python2_7 tk? ( scripts ) -SLOT=0 -SRC_URI=mirror://sourceforge/project/scribus/scribus-devel/1.5.2/scribus-1.5.2.tar.xz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=3b5290faec52e40135a75ea46fd68939 diff --git a/metadata/md5-cache/app-office/scribus-1.5.2-r2 b/metadata/md5-cache/app-office/scribus-1.5.2-r2 new file mode 100644 index 000000000000..58788e8cde71 --- /dev/null +++ b/metadata/md5-cache/app-office/scribus-1.5.2-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=>=dev-lang/python-2.7.5-r2:2.7[tk?] >=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_python2_7(+)] app-text/libmspub app-text/poppler:= dev-libs/hyphen dev-libs/librevenge dev-libs/libxml2 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtquickcontrols:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-libs/fontconfig media-libs/freetype:2 media-libs/lcms:2 media-libs/libcdr media-libs/libpagemaker media-libs/libpng:0= media-libs/libvisio media-libs/tiff:0 net-print/cups sys-libs/zlib[minizip] virtual/jpeg:0= >=x11-libs/cairo-1.10.0[X,svg] boost? ( >=dev-libs/boost-1.62:= ) hunspell? ( app-text/hunspell ) graphicsmagick? ( media-gfx/graphicsmagick ) osg? ( dev-games/openscenegraph ) pdf? ( app-text/podofo:0= ) scripts? ( dev-python/pillow[tk?,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_python2_7(+)] ) tk? ( dev-python/pillow[tk?,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_python2_7(+)] ) dev-qt/linguist-tools:5 virtual/pkgconfig dev-util/ninja >=dev-util/cmake-3.2 +DESCRIPTION=Desktop publishing (DTP) and layout program +EAPI=6 +HOMEPAGE=http://www.scribus.net/ +IUSE=+boost debug examples graphicsmagick hunspell +minimal osg +pdf scripts templates tk linguas_af linguas_ar linguas_bg linguas_br linguas_ca linguas_ca_ES linguas_cs linguas_cs_CZ linguas_cy linguas_cy_GB linguas_da linguas_da_DK linguas_de linguas_de@1901 linguas_de_CH linguas_de_DE linguas_el linguas_en_AU linguas_en_GB linguas_en_US linguas_eo linguas_es linguas_es_ES linguas_et linguas_eu linguas_fi linguas_fi_FI linguas_fr linguas_gl linguas_he linguas_hr linguas_hu linguas_hu_HU linguas_ia linguas_id linguas_id_ID linguas_is linguas_is_IS linguas_it linguas_ja linguas_ko linguas_ku linguas_la linguas_lt linguas_lt_LT linguas_nb_NO linguas_nl linguas_nn_NO linguas_pl linguas_pl_PL linguas_pt linguas_pt_BR linguas_pt_PT linguas_ro linguas_ro_RO linguas_ru linguas_ru_RU linguas_sa linguas_sk linguas_sk_SK linguas_sl linguas_sl_SI linguas_sq linguas_sr linguas_sv linguas_sv_SE linguas_th_TH linguas_tr linguas_uk linguas_uk_UA linguas_zh_CN linguas_zh_TW python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-lang/python-2.7.5-r2:2.7[tk?] >=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_python2_7(+)] app-text/libmspub app-text/poppler:= dev-libs/hyphen dev-libs/librevenge dev-libs/libxml2 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5 dev-qt/qtopengl:5 dev-qt/qtprintsupport:5 dev-qt/qtquickcontrols:5 dev-qt/qtwidgets:5 dev-qt/qtxml:5 media-libs/fontconfig media-libs/freetype:2 media-libs/lcms:2 media-libs/libcdr media-libs/libpagemaker media-libs/libpng:0= media-libs/libvisio media-libs/tiff:0 net-print/cups sys-libs/zlib[minizip] virtual/jpeg:0= >=x11-libs/cairo-1.10.0[X,svg] boost? ( >=dev-libs/boost-1.62:= ) hunspell? ( app-text/hunspell ) graphicsmagick? ( media-gfx/graphicsmagick ) osg? ( dev-games/openscenegraph ) pdf? ( app-text/podofo:0= ) scripts? ( dev-python/pillow[tk?,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_python2_7(+)] ) tk? ( dev-python/pillow[tk?,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_python2_7(+)] ) app-text/ghostscript-gpl +REQUIRED_USE=python_targets_python2_7 tk? ( scripts ) +SLOT=0 +SRC_URI=mirror://sourceforge/project/scribus/scribus-devel/1.5.2/scribus-1.5.2.tar.xz +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=006736d6e72feb2396b494160a14ed20 diff --git a/metadata/md5-cache/app-portage/distpatch-0.1.1 b/metadata/md5-cache/app-portage/distpatch-0.1.1 deleted file mode 100644 index 896436e03574..000000000000 --- a/metadata/md5-cache/app-portage/distpatch-0.1.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm prepare -DEPEND=>=sys-apps/portage-2.1.8.3 dev-python/snakeoil dev-python/setuptools || ( =dev-lang/python-3.3* =dev-lang/python-3.2* =dev-lang/python-3.1* =dev-lang/python-2.7* =dev-lang/python-2.6* ) -DESCRIPTION=Distfile Patching Support for Gentoo Linux (tools) -EAPI=3 -HOMEPAGE=https://www.gentoo.org/proj/en/infrastructure/distpatch/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=sys-apps/portage-2.1.8.3 dev-python/snakeoil >=dev-util/diffball-1.0.1 || ( =dev-lang/python-3.3* =dev-lang/python-3.2* =dev-lang/python-3.1* =dev-lang/python-2.7* =dev-lang/python-2.6* ) -SLOT=0 -SRC_URI=mirror://github/rafaelmartins/distpatch/distpatch-0.1.1.tar.gz -_eclasses_=distutils ad9e4720eb3e69090dd968b152fc611b multilib 165fc17c38d1b11dac2008280dab6e80 python efc1c55fc44c5b7272fc2ffba73c3e6f toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=852c7fbb9c051aec078ab30962bcb9b2 diff --git a/metadata/md5-cache/app-portage/distpatch-0.1.2 b/metadata/md5-cache/app-portage/distpatch-0.1.2 new file mode 100644 index 000000000000..4e4b9378910e --- /dev/null +++ b/metadata/md5-cache/app-portage/distpatch-0.1.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=sys-apps/portage-2.1.8.3 dev-python/snakeoil dev-python/setuptools 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_python2_7(-)] +DESCRIPTION=Distfile Patching Support for Gentoo Linux (tools) +EAPI=6 +HOMEPAGE=https://www.gentoo.org/proj/en/infrastructure/distpatch/ +IUSE=python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=sys-apps/portage-2.1.8.3 dev-python/snakeoil >=dev-util/diffball-1.0.1 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_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=https://github.com/rafaelmartins/distpatch/releases/download/v0.1.2/distpatch-0.1.2.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=463888acdd5b856261e25bea89a66193 diff --git a/metadata/md5-cache/app-portage/eix-0.32.1 b/metadata/md5-cache/app-portage/eix-0.32.1-r1 similarity index 60% rename from metadata/md5-cache/app-portage/eix-0.32.1 rename to metadata/md5-cache/app-portage/eix-0.32.1-r1 index d6c13eadea4e..2ae33d668ceb 100644 --- a/metadata/md5-cache/app-portage/eix-0.32.1 +++ b/metadata/md5-cache/app-portage/eix-0.32.1-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install postinst postrm prepare setup -DEPEND=sqlite? ( >=dev-db/sqlite-3 ) nls? ( virtual/libintl ) app-arch/xz-utils nls? ( sys-devel/gettext ) virtual/pkgconfig -DESCRIPTION=Search and query ebuilds, portage incl. local settings, ext. overlays and more +DEPEND=nls? ( virtual/libintl ) sqlite? ( >=dev-db/sqlite-3:= ) app-arch/xz-utils nls? ( sys-devel/gettext ) virtual/pkgconfig +DESCRIPTION=Search and query ebuilds EAPI=6 HOMEPAGE=https://github.com/vaeth/eix/ -IUSE=debug +dep doc nls optimization +required-use security strong-optimization strong-security sqlite swap-remote tools linguas_de linguas_ru +IUSE=debug doc nls sqlite linguas_de linguas_ru KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~ia64-hpux ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-2 -RDEPEND=sqlite? ( >=dev-db/sqlite-3 ) nls? ( virtual/libintl ) app-shells/push app-shells/quoter +RDEPEND=nls? ( virtual/libintl ) sqlite? ( >=dev-db/sqlite-3:= ) app-shells/push app-shells/quoter SLOT=0 SRC_URI=https://github.com/vaeth/eix/releases/download/v0.32.1/eix-0.32.1.tar.xz _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 l10n e26ea0642846685782f1813642e7ff0f multilib 165fc17c38d1b11dac2008280dab6e80 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=f932ddaad053f9d953ba999f0acb86f5 +_md5_=69df2d4ff487d057502b112c45d34872 diff --git a/metadata/md5-cache/app-portage/flaggie-0.2.1 b/metadata/md5-cache/app-portage/flaggie-0.2.1 index 79dc561bed4a..82cf6b051103 100644 --- a/metadata/md5-cache/app-portage/flaggie-0.2.1 +++ b/metadata/md5-cache/app-portage/flaggie-0.2.1 @@ -2,13 +2,13 @@ DEFINED_PHASES=compile configure install postinst prepare test DEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] DESCRIPTION=A smart CLI mangler for package.* files EAPI=5 -HOMEPAGE=https://bitbucket.org/mgorny/flaggie/ +HOMEPAGE=https://github.com/mgorny/flaggie/ IUSE=python_targets_pypy python_targets_python2_7 python_targets_python3_4 KEYWORDS=amd64 arm ~hppa ~mips ~ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=sys-apps/portage[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 ) SLOT=0 -SRC_URI=https://www.bitbucket.org/mgorny/flaggie/downloads/flaggie-0.2.1.tar.bz2 +SRC_URI=https://github.com/mgorny/flaggie/releases/download/flaggie-0.2.1/flaggie-0.2.1.tar.bz2 _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b3d32a65b3b8ededf68b738ad3568387 +_md5_=bcfdcfe63a77059b6a402a46a2bcd4ff diff --git a/metadata/md5-cache/app-portage/flaggie-9999 b/metadata/md5-cache/app-portage/flaggie-9999 index c73a888f3237..256e66e45451 100644 --- a/metadata/md5-cache/app-portage/flaggie-9999 +++ b/metadata/md5-cache/app-portage/flaggie-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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 +DEPEND=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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-vcs/git-1.8.2.1 DESCRIPTION=A smart CLI mangler for package.* files -EAPI=5 -HOMEPAGE=https://bitbucket.org/mgorny/flaggie/ -IUSE=python_targets_python2_7 python_targets_python3_4 +EAPI=6 +HOMEPAGE=https://github.com/mgorny/flaggie/ +IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 LICENSE=BSD -RDEPEND=sys-apps/portage[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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 ) +RDEPEND=sys-apps/portage[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 _eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 git-r3 e928b84a9f6f1d9076d1d27687876dc6 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=d8bb254271dd6e4d65c58c0b4f208ba3 +_md5_=d5b5c2a835c0e7316b0c413e7f5214b8 diff --git a/metadata/md5-cache/app-portage/g-octave-0.4.1-r4 b/metadata/md5-cache/app-portage/g-octave-0.4.1-r4 deleted file mode 100644 index 3edd4462dc0e..000000000000 --- a/metadata/md5-cache/app-portage/g-octave-0.4.1-r4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile config install postinst postrm prepare test -DEPEND=doc? ( >=dev-python/sphinx-1.0 ) dev-lang/python -DESCRIPTION=A tool that generates and installs ebuilds for Octave-Forge -EAPI=2 -HOMEPAGE=https://github.com/rafaelmartins/g-octave -IUSE=doc test -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=sys-apps/portage dev-lang/python -SLOT=0 -SRC_URI=mirror://github/rafaelmartins/g-octave/g-octave-0.4.1.tar.gz https://github.com/rafaelmartins/g-octave-db/tarball/bdf02cbf0a8d017c6c1bddeffd6f03d5d90695ed -> g-octave-db-bdf02cb.tar.gz -_eclasses_=distutils ad9e4720eb3e69090dd968b152fc611b eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 python efc1c55fc44c5b7272fc2ffba73c3e6f toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=68de003a2b4a6a844f038a64928929f1 diff --git a/metadata/md5-cache/app-portage/g-octave-0.4.1-r5 b/metadata/md5-cache/app-portage/g-octave-0.4.1-r5 new file mode 100644 index 000000000000..a65daac22620 --- /dev/null +++ b/metadata/md5-cache/app-portage/g-octave-0.4.1-r5 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile config configure install postinst prepare test +DEPEND=doc? ( >=dev-python/sphinx-1.0 ) 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_python2_7(-)] +DESCRIPTION=A tool that generates and installs ebuilds for Octave-Forge +EAPI=6 +HOMEPAGE=https://github.com/rafaelmartins/g-octave +IUSE=doc test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=sys-apps/portage 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_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://github/rafaelmartins/g-octave/g-octave-0.4.1.tar.gz https://github.com/rafaelmartins/g-octave-db/tarball/bdf02cbf0a8d017c6c1bddeffd6f03d5d90695ed -> g-octave-db-bdf02cb.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=09b80cc9b71b9e27aaf3b46e004f85fe diff --git a/metadata/md5-cache/dev-haskell/mutable-containers-0.3.3 b/metadata/md5-cache/dev-haskell/mutable-containers-0.3.3 new file mode 100644 index 000000000000..4e826deb6865 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/mutable-containers-0.3.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/mono-traversable:=[profile?] >=dev-haskell/primitive-0.5.2.1:=[profile?] dev-haskell/vector:=[profile?] >=dev-lang/ghc-7.8.2:= >=dev-haskell/cabal-1.18.1.3 test? ( dev-haskell/hspec dev-haskell/quickcheck ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Abstactions and concrete implementations of mutable containers +EAPI=6 +HOMEPAGE=https://github.com/snoyberg/mono-traversable +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-haskell/mono-traversable:=[profile?] >=dev-haskell/primitive-0.5.2.1:=[profile?] dev-haskell/vector:=[profile?] >=dev-lang/ghc-7.8.2:= +SLOT=0/0.3.3 +SRC_URI=mirror://hackage/packages/archive/mutable-containers/0.3.3/mutable-containers-0.3.3.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=11ccf48f7e12f1b915ce8e25fa2a1e7f diff --git a/metadata/md5-cache/dev-haskell/parsec-3.1.11 b/metadata/md5-cache/dev-haskell/parsec-3.1.11 new file mode 100644 index 000000000000..b5551ead9b4d --- /dev/null +++ b/metadata/md5-cache/dev-haskell/parsec-3.1.11 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/mtl:=[profile?] >=dev-haskell/text-0.2:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/hunit-1.2 =dev-haskell/test-framework-0.6 =dev-haskell/test-framework-hunit-0.2 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Monadic parser combinators +EAPI=6 +HOMEPAGE=https://github.com/aslatter/parsec +IUSE=doc hscolour profile test +KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris +LICENSE=BSD +RDEPEND=dev-haskell/mtl:=[profile?] >=dev-haskell/text-0.2:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/3.1.11 +SRC_URI=mirror://hackage/packages/archive/parsec/3.1.11/parsec-3.1.11.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=cb4ff6def12980c71cc8c3b7fdd042bb diff --git a/metadata/md5-cache/dev-haskell/pretty-show-1.6.12 b/metadata/md5-cache/dev-haskell/pretty-show-1.6.12 new file mode 100644 index 000000000000..89b7f97c5bf2 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/pretty-show-1.6.12 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/haskell-lexer-1:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 dev-haskell/happy doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Tools for working with derived 'Show' instances and generic inspection of values +EAPI=6 +HOMEPAGE=http://wiki.github.com/yav/pretty-show +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-haskell/haskell-lexer-1:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/1.6.12 +SRC_URI=mirror://hackage/packages/archive/pretty-show/1.6.12/pretty-show-1.6.12.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=af8b9d475dbb21b6378682c5fed92fc2 diff --git a/metadata/md5-cache/dev-haskell/psqueues-0.2.2.2 b/metadata/md5-cache/dev-haskell/psqueues-0.2.2.2 new file mode 100644 index 000000000000..b288c180fcf2 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/psqueues-0.2.2.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/hashable-1.2.1:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/hunit-1.2 =dev-haskell/quickcheck-2.7 =dev-haskell/test-framework-0.8 =dev-haskell/test-framework-hunit-0.3 =dev-haskell/test-framework-quickcheck2-0.3 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Pure priority search queues +EAPI=6 +HOMEPAGE=http://hackage.haskell.org/package/psqueues +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/hashable-1.2.1:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/0.2.2.2 +SRC_URI=mirror://hackage/packages/archive/psqueues/0.2.2.2/psqueues-0.2.2.2.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=c02fa7ceb9fc8c36e9e2d199258fadd9 diff --git a/metadata/md5-cache/dev-haskell/quickcheck-instances-0.3.12-r1 b/metadata/md5-cache/dev-haskell/quickcheck-instances-0.3.12-r1 new file mode 100644 index 000000000000..4a559f8ecd3a --- /dev/null +++ b/metadata/md5-cache/dev-haskell/quickcheck-instances-0.3.12-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=>=dev-haskell/hashable-1.1.2.3:=[profile?] =dev-haskell/old-time-1.0:=[profile?] =dev-haskell/quickcheck-2.1:2=[profile?] >=dev-haskell/scientific-0.2:=[profile?] =dev-haskell/text-0.7:=[profile?] =dev-haskell/unordered-containers-0.2.1:=[profile?] =dev-haskell/vector-0.9:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.6 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Common quickcheck instances +EAPI=5 +HOMEPAGE=https://github.com/aslatter/qc-instances +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/hashable-1.1.2.3:=[profile?] =dev-haskell/old-time-1.0:=[profile?] =dev-haskell/quickcheck-2.1:2=[profile?] >=dev-haskell/scientific-0.2:=[profile?] =dev-haskell/text-0.7:=[profile?] =dev-haskell/unordered-containers-0.2.1:=[profile?] =dev-haskell/vector-0.9:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/0.3.12 +SRC_URI=mirror://hackage/packages/archive/quickcheck-instances/0.3.12/quickcheck-instances-0.3.12.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=1f09cd0e9e10cc0b1e9fe5dd235f4ac8 diff --git a/metadata/md5-cache/dev-haskell/quickcheck-io-0.1.4 b/metadata/md5-cache/dev-haskell/quickcheck-io-0.1.4 new file mode 100644 index 000000000000..0231067a2e91 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/quickcheck-io-0.1.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/hunit-1.2.5:=[profile?] >=dev-haskell/quickcheck-2.5.1:2=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Use HUnit assertions as QuickCheck properties +EAPI=6 +HOMEPAGE=https://github.com/hspec/quickcheck-io#readme +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-haskell/hunit-1.2.5:=[profile?] >=dev-haskell/quickcheck-2.5.1:2=[profile?] >=dev-lang/ghc-7.4.1:= +SLOT=0/0.1.4 +SRC_URI=mirror://hackage/packages/archive/quickcheck-io/0.1.4/quickcheck-io-0.1.4.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=80ab306e322db5b28f1cc02a720733a7 diff --git a/metadata/md5-cache/dev-haskell/sandi-0.4.0 b/metadata/md5-cache/dev-haskell/sandi-0.4.0 new file mode 100644 index 000000000000..b137ab72aada --- /dev/null +++ b/metadata/md5-cache/dev-haskell/sandi-0.4.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/stringsearch-0.3:=[profile?] =dev-lang/ghc-7.8.2:= with-conduit? ( >=dev-haskell/conduit-1.2:=[profile?] =dev-haskell/exceptions-0.6:=[profile?] =dev-haskell/cabal-1.18.1.3 test? ( dev-haskell/hunit dev-haskell/tasty dev-haskell/tasty-hunit dev-haskell/tasty-quickcheck dev-haskell/tasty-th ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Data encoding library +EAPI=6 +HOMEPAGE=http://hackage.haskell.org/package/sandi +IUSE=+with-conduit doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/stringsearch-0.3:=[profile?] =dev-lang/ghc-7.8.2:= with-conduit? ( >=dev-haskell/conduit-1.2:=[profile?] =dev-haskell/exceptions-0.6:=[profile?] =dev-haskell/binary-0.4.1:=[profile?] =dev-haskell/bytestring-builder-0.10.4:=[profile?] =dev-haskell/hashable-1.1.2:=[profile?] =dev-haskell/text-0.8:=[profile?] =dev-haskell/vector-0.5:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 test? ( >=dev-haskell/quickcheck-2.5 =dev-haskell/smallcheck-1.0 =dev-haskell/tasty-0.5 =dev-haskell/tasty-ant-xml-1.0 =dev-haskell/tasty-hunit-0.8 =dev-haskell/tasty-quickcheck-0.8 =dev-haskell/tasty-smallcheck-0.2 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Numbers represented using scientific notation +EAPI=6 +HOMEPAGE=https://github.com/basvandijk/scientific +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/binary-0.4.1:=[profile?] =dev-haskell/bytestring-builder-0.10.4:=[profile?] =dev-haskell/hashable-1.1.2:=[profile?] =dev-haskell/text-0.8:=[profile?] =dev-haskell/vector-0.5:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/0.3.4.9 +SRC_URI=mirror://hackage/packages/archive/scientific/0.3.4.9/scientific-0.3.4.9.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=0ba0437e3ea42fd040163308d8226ea6 diff --git a/metadata/md5-cache/dev-haskell/setlocale-1.0.0.4 b/metadata/md5-cache/dev-haskell/setlocale-1.0.0.4 new file mode 100644 index 000000000000..9aa12fe99d71 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/setlocale-1.0.0.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-lang/ghc-7.6.1:= >=dev-haskell/cabal-1.16.0 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Haskell bindings to setlocale +EAPI=6 +HOMEPAGE=https://bitbucket.org/IchUndNichtDu/haskell-setlocale +IUSE=doc hscolour profile +KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=BSD +RDEPEND=>=dev-lang/ghc-7.6.1:= +SLOT=0/1.0.0.4 +SRC_URI=mirror://hackage/packages/archive/setlocale/1.0.0.4/setlocale-1.0.0.4.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=6ad595841502b76252e929bd59a6ff1a diff --git a/metadata/md5-cache/dev-haskell/shellish-0.1.4 b/metadata/md5-cache/dev-haskell/shellish-0.1.4 index cf3d21143571..e5b13ce5d817 100644 --- a/metadata/md5-cache/dev-haskell/shellish-0.1.4 +++ b/metadata/md5-cache/dev-haskell/shellish-0.1.4 @@ -10,4 +10,4 @@ RDEPEND=dev-haskell/mtl[profile?] dev-haskell/strict[profile?] dev-haskell/unix- SLOT=0 SRC_URI=mirror://hackage/packages/archive/shellish/0.1.4/shellish-0.1.4.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=51f8e90f8edf14d6daaa7969a46b0d55 +_md5_=5b1557be9f23c52819af8366fa60f729 diff --git a/metadata/md5-cache/dev-haskell/shelly-1.6.8.1 b/metadata/md5-cache/dev-haskell/shelly-1.6.8.1 new file mode 100644 index 000000000000..10834e5a496a --- /dev/null +++ b/metadata/md5-cache/dev-haskell/shelly-1.6.8.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/async:=[profile?] dev-haskell/enclosed-exceptions:=[profile?] >=dev-haskell/exceptions-0.6:=[profile?] =dev-haskell/monad-control-0.3.2:=[profile?] =dev-haskell/mtl-2:=[profile?] =dev-haskell/system-filepath-0.4.7:=[profile?] =dev-lang/ghc-7.8.2:= >=dev-haskell/cabal-1.18.1.3 test? ( >=dev-haskell/hspec-1.5 >=dev-haskell/hunit-1.2 >=dev-haskell/text-0.11 ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=shell-like (systems) programming in Haskell +EAPI=6 +HOMEPAGE=https://github.com/yesodweb/Shelly.hs +IUSE=examples lifted doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-haskell/async:=[profile?] dev-haskell/enclosed-exceptions:=[profile?] >=dev-haskell/exceptions-0.6:=[profile?] =dev-haskell/monad-control-0.3.2:=[profile?] =dev-haskell/mtl-2:=[profile?] =dev-haskell/system-filepath-0.4.7:=[profile?] =dev-lang/ghc-7.8.2:= +SLOT=0/1.6.8.1 +SRC_URI=mirror://hackage/packages/archive/shelly/1.6.8.1/shelly-1.6.8.1.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=38f92a039936e72eed71a8161b074834 diff --git a/metadata/md5-cache/dev-haskell/simple-sendfile-0.2.25 b/metadata/md5-cache/dev-haskell/simple-sendfile-0.2.25 new file mode 100644 index 000000000000..0898c606f2fa --- /dev/null +++ b/metadata/md5-cache/dev-haskell/simple-sendfile-0.2.25 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/network:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 test? ( dev-haskell/conduit dev-haskell/conduit-extra >=dev-haskell/hspec-1.3 dev-haskell/hunit dev-haskell/resourcet ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Cross platform library for the sendfile system call +EAPI=6 +HOMEPAGE=http://hackage.haskell.org/package/simple-sendfile +IUSE=+allow-bsd doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-haskell/network:=[profile?] >=dev-lang/ghc-7.4.1:= +SLOT=0/0.2.25 +SRC_URI=mirror://hackage/packages/archive/simple-sendfile/0.2.25/simple-sendfile-0.2.25.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=733628fb18be9ae527f01cc461f11d2d diff --git a/metadata/md5-cache/dev-haskell/statistics-0.13.3.0 b/metadata/md5-cache/dev-haskell/statistics-0.13.3.0 new file mode 100644 index 000000000000..5439d2dba825 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/statistics-0.13.3.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/aeson-0.6.0.0:=[profile?] >=dev-haskell/binary-0.5.1.0:=[profile?] dev-haskell/erf:=[profile?] >=dev-haskell/math-functions-0.1.5.2:=[profile?] >=dev-haskell/monad-par-0.3.4:=[profile?] >=dev-haskell/mwc-random-0.13.0.0:=[profile?] >=dev-haskell/primitive-0.3:=[profile?] >=dev-haskell/vector-0.10:=[profile?] >=dev-haskell/vector-algorithms-0.4:=[profile?] >=dev-haskell/vector-binary-instances-0.2.1:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( dev-haskell/hunit >=dev-haskell/ieee754-0.7.3 >=dev-haskell/quickcheck-2.7.5 dev-haskell/test-framework dev-haskell/test-framework-hunit dev-haskell/test-framework-quickcheck2 ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=A library of statistical types, data, and functions +EAPI=6 +HOMEPAGE=https://github.com/bos/statistics +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/aeson-0.6.0.0:=[profile?] >=dev-haskell/binary-0.5.1.0:=[profile?] dev-haskell/erf:=[profile?] >=dev-haskell/math-functions-0.1.5.2:=[profile?] >=dev-haskell/monad-par-0.3.4:=[profile?] >=dev-haskell/mwc-random-0.13.0.0:=[profile?] >=dev-haskell/primitive-0.3:=[profile?] >=dev-haskell/vector-0.10:=[profile?] >=dev-haskell/vector-algorithms-0.4:=[profile?] >=dev-haskell/vector-binary-instances-0.2.1:=[profile?] >=dev-lang/ghc-7.4.1:= +RESTRICT=test +SLOT=0/0.13.3.0 +SRC_URI=mirror://hackage/packages/archive/statistics/0.13.3.0/statistics-0.13.3.0.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=45eedb34d61b4fa830480f5622f4c171 diff --git a/metadata/md5-cache/dev-haskell/stmonadtrans-0.3.4 b/metadata/md5-cache/dev-haskell/stmonadtrans-0.3.4 new file mode 100644 index 000000000000..ad67a8098a67 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/stmonadtrans-0.3.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/mtl:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=A monad transformer version of the ST monad +EAPI=6 +HOMEPAGE=http://hackage.haskell.org/package/STMonadTrans +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-haskell/mtl:=[profile?] >=dev-lang/ghc-7.4.1:= +RESTRICT=test +SLOT=0/0.3.4 +SRC_URI=mirror://hackage/packages/archive/STMonadTrans/0.3.4/STMonadTrans-0.3.4.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=56442316ce6a5215848952795224f71e diff --git a/metadata/md5-cache/dev-haskell/streaming-commons-0.1.16 b/metadata/md5-cache/dev-haskell/streaming-commons-0.1.16 new file mode 100644 index 000000000000..fae293467356 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/streaming-commons-0.1.16 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/async:=[profile?] >=dev-haskell/blaze-builder-0.3:=[profile?] =dev-haskell/network-2.4.0.0:=[profile?] dev-haskell/random:=[profile?] dev-haskell/stm:=[profile?] dev-haskell/text:=[profile?] dev-haskell/zlib:=[profile?] >=dev-lang/ghc-7.8.2:= >=dev-haskell/cabal-1.18.1.3 test? ( >=dev-haskell/hspec-1.8 dev-haskell/quickcheck ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Common lower-level functions needed by various streaming data libraries +EAPI=6 +HOMEPAGE=https://github.com/fpco/streaming-commons +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-haskell/async:=[profile?] >=dev-haskell/blaze-builder-0.3:=[profile?] =dev-haskell/network-2.4.0.0:=[profile?] dev-haskell/random:=[profile?] dev-haskell/stm:=[profile?] dev-haskell/text:=[profile?] dev-haskell/zlib:=[profile?] >=dev-lang/ghc-7.8.2:= +SLOT=0/0.1.16 +SRC_URI=mirror://hackage/packages/archive/streaming-commons/0.1.16/streaming-commons-0.1.16.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=7cf56d476e032455f6237ee6a3b9cd3d diff --git a/metadata/md5-cache/dev-haskell/syb-with-class-0.6.1.7 b/metadata/md5-cache/dev-haskell/syb-with-class-0.6.1.7 new file mode 100644 index 000000000000..1c21d45e29d8 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/syb-with-class-0.6.1.7 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.6 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Scrap Your Boilerplate With Class +EAPI=6 +HOMEPAGE=http://hackage.haskell.org/package/syb-with-class +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-lang/ghc-7.4.1:= +SLOT=0/0.6.1.7 +SRC_URI=mirror://hackage/packages/archive/syb-with-class/0.6.1.7/syb-with-class-0.6.1.7.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=9dfd2ff7d6af26230eb27e31c0f51a45 diff --git a/metadata/md5-cache/dev-haskell/tasty-0.11.0.4 b/metadata/md5-cache/dev-haskell/tasty-0.11.0.4 new file mode 100644 index 000000000000..3ae4d39e73de --- /dev/null +++ b/metadata/md5-cache/dev-haskell/tasty-0.11.0.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/ansi-terminal-0.6.2:=[profile?] >=dev-haskell/async-2.0:=[profile?] >=dev-haskell/clock-0.4.4.0:=[profile?] dev-haskell/mtl:=[profile?] >=dev-haskell/optparse-applicative-0.11:=[profile?] >=dev-haskell/regex-tdfa-1.1.8.2:=[profile?] >=dev-haskell/stm-2.3:=[profile?] >=dev-haskell/tagged-0.5:=[profile?] >=dev-haskell/unbounded-delays-0.1:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Modern and extensible testing framework +EAPI=6 +HOMEPAGE=http://documentup.com/feuerbach/tasty +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-haskell/ansi-terminal-0.6.2:=[profile?] >=dev-haskell/async-2.0:=[profile?] >=dev-haskell/clock-0.4.4.0:=[profile?] dev-haskell/mtl:=[profile?] >=dev-haskell/optparse-applicative-0.11:=[profile?] >=dev-haskell/regex-tdfa-1.1.8.2:=[profile?] >=dev-haskell/stm-2.3:=[profile?] >=dev-haskell/tagged-0.5:=[profile?] >=dev-haskell/unbounded-delays-0.1:=[profile?] >=dev-lang/ghc-7.4.1:= +SLOT=0/0.11.0.4 +SRC_URI=mirror://hackage/packages/archive/tasty/0.11.0.4/tasty-0.11.0.4.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=f2be8fd8abd8ea55511fe17d85103d3f diff --git a/metadata/md5-cache/dev-haskell/tasty-golden-2.3.1.1 b/metadata/md5-cache/dev-haskell/tasty-golden-2.3.1.1 new file mode 100644 index 000000000000..e52756a82b1a --- /dev/null +++ b/metadata/md5-cache/dev-haskell/tasty-golden-2.3.1.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/async:=[profile?] dev-haskell/mtl:=[profile?] dev-haskell/optparse-applicative:=[profile?] dev-haskell/tagged:=[profile?] >=dev-haskell/tasty-0.8:=[profile?] dev-haskell/temporary:=[profile?] >=dev-lang/ghc-7.6.1:= >=dev-haskell/cabal-1.16.0 test? ( dev-haskell/tasty-hunit dev-haskell/temporary-rc ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Golden tests support for tasty +EAPI=6 +HOMEPAGE=https://github.com/feuerbach/tasty-golden +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-haskell/async:=[profile?] dev-haskell/mtl:=[profile?] dev-haskell/optparse-applicative:=[profile?] dev-haskell/tagged:=[profile?] >=dev-haskell/tasty-0.8:=[profile?] dev-haskell/temporary:=[profile?] >=dev-lang/ghc-7.6.1:= +SLOT=0/2.3.1.1 +SRC_URI=mirror://hackage/packages/archive/tasty-golden/2.3.1.1/tasty-golden-2.3.1.1.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=46766f295c665f9ff75eb5d840512dfb diff --git a/metadata/md5-cache/dev-haskell/tasty-quickcheck-0.8.4 b/metadata/md5-cache/dev-haskell/tasty-quickcheck-0.8.4 index ea2cd2f8c0df..347d4e548bfe 100644 --- a/metadata/md5-cache/dev-haskell/tasty-quickcheck-0.8.4 +++ b/metadata/md5-cache/dev-haskell/tasty-quickcheck-0.8.4 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm setup test -DEPEND=dev-haskell/tagged:=[profile?] >=dev-haskell/tasty-0.10.1:=[profile?] >=dev-lang/ghc-7.4.1:= old-quickcheck? ( >=dev-haskell/quickcheck-2.5:2=[profile?] =dev-haskell/quickcheck-2.7:2=[profile?] =dev-haskell/cabal-1.10 test? ( dev-haskell/pcre-light dev-haskell/tasty-hunit ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DEPEND=dev-haskell/tagged:=[profile?] >=dev-haskell/tasty-0.10.1:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/quickcheck-2.5:2=[profile?] =dev-haskell/cabal-1.10 test? ( dev-haskell/pcre-light dev-haskell/tasty-hunit ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) DESCRIPTION=QuickCheck support for the Tasty test framework EAPI=5 HOMEPAGE=http://documentup.com/feuerbach/tasty -IUSE=old-quickcheck doc hscolour profile test +IUSE=doc hscolour profile test KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=dev-haskell/tagged:=[profile?] >=dev-haskell/tasty-0.10.1:=[profile?] >=dev-lang/ghc-7.4.1:= old-quickcheck? ( >=dev-haskell/quickcheck-2.5:2=[profile?] =dev-haskell/quickcheck-2.7:2=[profile?] =dev-haskell/tasty-0.10.1:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/quickcheck-2.5:2=[profile?] =dev-haskell/mtl-2.1.2:=[profile?] >=dev-haskell/optparse-applicative-0.6:=[profile?] >=dev-haskell/reducers-3.10.1:=[profile?] >=dev-haskell/split-0.1:=[profile?] =dev-haskell/stm-2.4.2:=[profile?] >=dev-haskell/tagged-0.7:=[profile?] =dev-haskell/tasty-0.10:=[profile?] =dev-haskell/transformers-0.3.0.0:=[profile?] >=dev-lang/ghc-7.6.1:= >=dev-haskell/cabal-1.16.0 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Run tests by filtering the tests depending on the result of previous runs +EAPI=6 +HOMEPAGE=https://github.com/ocharles/tasty-rerun +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/mtl-2.1.2:=[profile?] >=dev-haskell/optparse-applicative-0.6:=[profile?] >=dev-haskell/reducers-3.10.1:=[profile?] >=dev-haskell/split-0.1:=[profile?] =dev-haskell/stm-2.4.2:=[profile?] >=dev-haskell/tagged-0.7:=[profile?] =dev-haskell/tasty-0.10:=[profile?] =dev-haskell/transformers-0.3.0.0:=[profile?] >=dev-lang/ghc-7.6.1:= +SLOT=0/1.1.6 +SRC_URI=mirror://hackage/packages/archive/tasty-rerun/1.1.6/tasty-rerun-1.1.6.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=c419f04d321418b3535bfac7a6c2ff28 diff --git a/metadata/md5-cache/dev-haskell/test-framework-th-prime-0.0.9 b/metadata/md5-cache/dev-haskell/test-framework-th-prime-0.0.9 new file mode 100644 index 000000000000..3ea9a55b3d2b --- /dev/null +++ b/metadata/md5-cache/dev-haskell/test-framework-th-prime-0.0.9 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/cpphs-0.2.1:=[profile?] dev-haskell/haskell-src-exts:=[profile?] dev-haskell/test-framework:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.6 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Template Haskell for test framework +EAPI=6 +HOMEPAGE=http://hackage.haskell.org/package/test-framework-th-prime +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/cpphs-0.2.1:=[profile?] dev-haskell/haskell-src-exts:=[profile?] dev-haskell/test-framework:=[profile?] >=dev-lang/ghc-7.4.1:= +SLOT=0/0.0.9 +SRC_URI=mirror://hackage/packages/archive/test-framework-th-prime/0.0.9/test-framework-th-prime-0.0.9.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=a99bdf80bbb8bd379004d8287a0616db diff --git a/metadata/md5-cache/dev-haskell/texmath-0.8.6.7 b/metadata/md5-cache/dev-haskell/texmath-0.8.6.7 new file mode 100644 index 000000000000..d9582f6b5be3 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/texmath-0.8.6.7 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/mtl:=[profile?] >=dev-haskell/pandoc-types-1.12.3.3:=[profile?] =dev-haskell/parsec-3:=[profile?] dev-haskell/syb:=[profile?] dev-haskell/xml:=[profile?] >=dev-lang/ghc-7.4.1:= executable? ( dev-haskell/aeson:=[profile?] dev-haskell/split:=[profile?] dev-haskell/text:=[profile?] network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] ) !network-uri? ( =dev-haskell/cabal-1.10 test? ( dev-haskell/temporary dev-haskell/utf8-string !executable? ( dev-haskell/split dev-haskell/text ) ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Conversion between formats used to represent mathematics +EAPI=6 +HOMEPAGE=https://github.com/jgm/texmath +IUSE=executable +network-uri doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=dev-haskell/mtl:=[profile?] >=dev-haskell/pandoc-types-1.12.3.3:=[profile?] =dev-haskell/parsec-3:=[profile?] dev-haskell/syb:=[profile?] dev-haskell/xml:=[profile?] >=dev-lang/ghc-7.4.1:= executable? ( dev-haskell/aeson:=[profile?] dev-haskell/split:=[profile?] dev-haskell/text:=[profile?] network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] ) !network-uri? ( =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Compatibility of TimeLocale between old-locale and time-1.5 +EAPI=6 +HOMEPAGE=https://github.com/khibino/haskell-time-locale-compat +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-haskell/old-locale:=[profile?] >=dev-lang/ghc-7.4.1:= +SLOT=0/0.1.1.3 +SRC_URI=mirror://hackage/packages/archive/time-locale-compat/0.1.1.3/time-locale-compat-0.1.1.3.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=e3d4e7e18f70e443820177e203b9947e diff --git a/metadata/md5-cache/dev-haskell/timezone-olson-0.1.7-r1 b/metadata/md5-cache/dev-haskell/timezone-olson-0.1.7-r1 new file mode 100644 index 000000000000..3b34b2d58f37 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/timezone-olson-0.1.7-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=>=dev-haskell/extensible-exceptions-0.1.0:=[profile?] =dev-haskell/timezone-series-0.1.0:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=A pure Haskell parser and renderer for binary Olson timezone files +EAPI=5 +HOMEPAGE=http://projects.haskell.org/time-ng/ +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/extensible-exceptions-0.1.0:=[profile?] =dev-haskell/timezone-series-0.1.0:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/0.1.7 +SRC_URI=mirror://hackage/packages/archive/timezone-olson/0.1.7/timezone-olson-0.1.7.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=1832452ea50a60da0e0e3c411d45fa50 diff --git a/metadata/md5-cache/dev-haskell/timezone-series-0.1.6.1 b/metadata/md5-cache/dev-haskell/timezone-series-0.1.6.1 new file mode 100644 index 000000000000..cd521f329662 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/timezone-series-0.1.6.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Enhanced timezone handling for Data.Time +EAPI=6 +HOMEPAGE=http://projects.haskell.org/time-ng/ +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-lang/ghc-7.4.1:= +SLOT=0/0.1.6.1 +SRC_URI=mirror://hackage/packages/archive/timezone-series/0.1.6.1/timezone-series-0.1.6.1.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=69c0a6265ea1fe9efc72a6209685c780 diff --git a/metadata/md5-cache/dev-haskell/unix-compat-0.4.2.0 b/metadata/md5-cache/dev-haskell/unix-compat-0.4.2.0 new file mode 100644 index 000000000000..fbd035466f09 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/unix-compat-0.4.2.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.6 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Portable POSIX-compatibility layer +EAPI=6 +HOMEPAGE=https://github.com/jystic/unix-compat +IUSE=old-time doc hscolour profile +KEYWORDS=~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 +LICENSE=BSD +RDEPEND=>=dev-lang/ghc-7.4.1:= +SLOT=0/0.4.2.0 +SRC_URI=mirror://hackage/packages/archive/unix-compat/0.4.2.0/unix-compat-0.4.2.0.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=752d469ac800eb5938ec5913f569b15c diff --git a/metadata/md5-cache/dev-haskell/unix-time-0.3.7 b/metadata/md5-cache/dev-haskell/unix-time-0.3.7 new file mode 100644 index 000000000000..9fb9d13b39e5 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/unix-time-0.3.7 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/old-time:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.10 test? ( >=dev-haskell/doctest-0.9.3 >=dev-haskell/hspec-1.5 dev-haskell/old-locale dev-haskell/quickcheck ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Unix time parser/formatter and utilities +EAPI=6 +HOMEPAGE=http://hackage.haskell.org/package/unix-time +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-haskell/old-time:=[profile?] >=dev-lang/ghc-7.4.1:= +SLOT=0/0.3.7 +SRC_URI=mirror://hackage/packages/archive/unix-time/0.3.7/unix-time-0.3.7.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=ab8febe3a3e13aad173b85b4b9626078 diff --git a/metadata/md5-cache/dev-haskell/unordered-containers-0.2.7.1 b/metadata/md5-cache/dev-haskell/unordered-containers-0.2.7.1 new file mode 100644 index 000000000000..63f730c4cfeb --- /dev/null +++ b/metadata/md5-cache/dev-haskell/unordered-containers-0.2.7.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/hashable-1.0.1.1:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( dev-haskell/chasingbottoms dev-haskell/hunit >=dev-haskell/quickcheck-2.4.0.1 >=dev-haskell/test-framework-0.3.3 dev-haskell/test-framework-hunit >=dev-haskell/test-framework-quickcheck2-0.2.9 ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Efficient hashing-based container types +EAPI=6 +HOMEPAGE=https://github.com/tibbe/unordered-containers +IUSE=debug doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/hashable-1.0.1.1:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/0.2.7.1 +SRC_URI=mirror://hackage/packages/archive/unordered-containers/0.2.7.1/unordered-containers-0.2.7.1.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=112dd54a7f19b2cd2412006edd51b52d diff --git a/metadata/md5-cache/dev-haskell/uuid-1.3.12 b/metadata/md5-cache/dev-haskell/uuid-1.3.12 index e98f62815e31..cb95de9c2c0e 100644 --- a/metadata/md5-cache/dev-haskell/uuid-1.3.12 +++ b/metadata/md5-cache/dev-haskell/uuid-1.3.12 @@ -1,5 +1,5 @@ -DEFINED_PHASES=compile configure install postinst postrm setup test -DEPEND=>=dev-haskell/binary-0.4:=[profile?] =dev-haskell/network-info-0.2:=[profile?] =dev-haskell/random-1.0.1:=[profile?] =dev-haskell/text-1:=[profile?] =dev-haskell/uuid-types-1.0.2:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/hunit-1.2 =dev-haskell/quickcheck-2.4 =dev-haskell/tasty-0.10 =dev-haskell/tasty-hunit-0.9 =dev-haskell/tasty-quickcheck-0.8 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=>=dev-haskell/binary-0.4:=[profile?] =dev-haskell/network-info-0.2:=[profile?] =dev-haskell/random-1.0.1:=[profile?] =dev-haskell/text-1:=[profile?] =dev-haskell/uuid-types-1.0.2:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/hunit-1.2 =dev-haskell/quickcheck-2.4 >=dev-haskell/tasty-0.10 =dev-haskell/tasty-hunit-0.9 =dev-haskell/tasty-quickcheck-0.8 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) DESCRIPTION=For creating, comparing, parsing and printing Universally Unique Identifiers EAPI=5 HOMEPAGE=https://github.com/aslatter/uuid @@ -10,4 +10,4 @@ RDEPEND=>=dev-haskell/binary-0.4:=[profile?] =dev-haskell/blaze-builder-0.2.1.4:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] >=dev-haskell/cryptonite-0.6:=[profile?] >=dev-haskell/file-embed-0.0.3.1:=[profile?] dev-haskell/http-date:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] >=dev-haskell/memory-0.7:=[profile?] >=dev-haskell/mime-types-0.1:=[profile?] =dev-haskell/old-locale-1.0.0.2:=[profile?] >=dev-haskell/optparse-applicative-0.7:=[profile?] >=dev-haskell/text-0.7:=[profile?] >=dev-haskell/transformers-0.2.2:=[profile?] >=dev-haskell/unix-compat-0.2:=[profile?] >=dev-haskell/unordered-containers-0.2:=[profile?] >=dev-haskell/wai-3.0:=[profile?] =dev-haskell/wai-extra-3.0:=[profile?] =dev-haskell/warp-3.0.11:=[profile?] =dev-haskell/zlib-0.5:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/hspec-1.3 dev-haskell/mockery dev-haskell/network dev-haskell/temporary ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=WAI application for static serving +EAPI=6 +HOMEPAGE=http://www.yesodweb.com/book/web-application-interface +IUSE=print doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-haskell/blaze-builder-0.2.1.4:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] >=dev-haskell/cryptonite-0.6:=[profile?] >=dev-haskell/file-embed-0.0.3.1:=[profile?] dev-haskell/http-date:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] >=dev-haskell/memory-0.7:=[profile?] >=dev-haskell/mime-types-0.1:=[profile?] =dev-haskell/old-locale-1.0.0.2:=[profile?] >=dev-haskell/optparse-applicative-0.7:=[profile?] >=dev-haskell/text-0.7:=[profile?] >=dev-haskell/transformers-0.2.2:=[profile?] >=dev-haskell/unix-compat-0.2:=[profile?] >=dev-haskell/unordered-containers-0.2:=[profile?] >=dev-haskell/wai-3.0:=[profile?] =dev-haskell/wai-extra-3.0:=[profile?] =dev-haskell/warp-3.0.11:=[profile?] =dev-haskell/zlib-0.5:=[profile?] >=dev-lang/ghc-7.4.1:= +SLOT=0/3.1.6.1 +SRC_URI=mirror://hackage/packages/archive/wai-app-static/3.1.6.1/wai-app-static-3.1.6.1.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=bda471c99972cc398ae1d3ac427fc375 diff --git a/metadata/md5-cache/dev-haskell/wai-extra-3.0.18 b/metadata/md5-cache/dev-haskell/wai-extra-3.0.18 new file mode 100644 index 000000000000..fc695f6b7d2f --- /dev/null +++ b/metadata/md5-cache/dev-haskell/wai-extra-3.0.18 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/aeson:=[profile?] dev-haskell/ansi-terminal:=[profile?] dev-haskell/base64-bytestring:=[profile?] >=dev-haskell/blaze-builder-0.2.1.4:=[profile?] =dev-haskell/case-insensitive-0.2:=[profile?] dev-haskell/cookie:=[profile?] dev-haskell/data-default-class:=[profile?] >=dev-haskell/fast-logger-2.4.5:=[profile?] =dev-haskell/http-types-0.7:=[profile?] dev-haskell/iproute:=[profile?] >=dev-haskell/lifted-base-0.1.2:=[profile?] >=dev-haskell/network-2.6.1.0:=[profile?] >=dev-haskell/old-locale-1.0.0.2:=[profile?] =dev-haskell/resourcet-0.4.6:=[profile?] =dev-haskell/stringsearch-0.3:=[profile?] =dev-haskell/text-0.7:=[profile?] dev-haskell/unix-compat:=[profile?] dev-haskell/vault:=[profile?] >=dev-haskell/void-0.5:=[profile?] >=dev-haskell/wai-3.0.3.0:=[profile?] =dev-haskell/wai-logger-2.2.6:=[profile?] =dev-lang/ghc-7.8.2:= >=dev-haskell/cabal-1.18.1.3 test? ( >=dev-haskell/hspec-1.3 dev-haskell/hunit ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Provides some basic WAI handlers and middleware +EAPI=6 +HOMEPAGE=https://github.com/yesodweb/wai +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-haskell/aeson:=[profile?] dev-haskell/ansi-terminal:=[profile?] dev-haskell/base64-bytestring:=[profile?] >=dev-haskell/blaze-builder-0.2.1.4:=[profile?] =dev-haskell/case-insensitive-0.2:=[profile?] dev-haskell/cookie:=[profile?] dev-haskell/data-default-class:=[profile?] >=dev-haskell/fast-logger-2.4.5:=[profile?] =dev-haskell/http-types-0.7:=[profile?] dev-haskell/iproute:=[profile?] >=dev-haskell/lifted-base-0.1.2:=[profile?] >=dev-haskell/network-2.6.1.0:=[profile?] >=dev-haskell/old-locale-1.0.0.2:=[profile?] =dev-haskell/resourcet-0.4.6:=[profile?] =dev-haskell/stringsearch-0.3:=[profile?] =dev-haskell/text-0.7:=[profile?] dev-haskell/unix-compat:=[profile?] dev-haskell/vault:=[profile?] >=dev-haskell/void-0.5:=[profile?] >=dev-haskell/wai-3.0.3.0:=[profile?] =dev-haskell/wai-logger-2.2.6:=[profile?] =dev-lang/ghc-7.8.2:= +SLOT=0/3.0.18 +SRC_URI=mirror://hackage/packages/archive/wai-extra/3.0.18/wai-extra-3.0.18.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=f4a49fefb5ed1734405d9aa5355b8055 diff --git a/metadata/md5-cache/dev-haskell/wxdirect-0.92.2.0-r1 b/metadata/md5-cache/dev-haskell/wxdirect-0.92.2.0-r1 new file mode 100644 index 000000000000..a7517da6d014 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/wxdirect-0.92.2.0-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=>=dev-haskell/parsec-2.1.0:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.2 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=helper tool for building wxHaskell +EAPI=5 +HOMEPAGE=https://wiki.haskell.org/WxHaskell +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~ppc ~sparc ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/parsec-2.1.0:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=3.0/0.92.2.0 +SRC_URI=mirror://hackage/packages/archive/wxdirect/0.92.2.0/wxdirect-0.92.2.0.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=fb6f9be3a50f66aaf924a55cb28789b5 diff --git a/metadata/md5-cache/dev-haskell/xhtml-3000.2.1-r1 b/metadata/md5-cache/dev-haskell/xhtml-3000.2.1-r1 index be9cc3e263d1..0fb36d1a8262 100644 --- a/metadata/md5-cache/dev-haskell/xhtml-3000.2.1-r1 +++ b/metadata/md5-cache/dev-haskell/xhtml-3000.2.1-r1 @@ -10,4 +10,4 @@ RDEPEND=>=dev-lang/ghc-6.10.4:= SLOT=0/3000.2.1 SRC_URI=mirror://hackage/packages/archive/xhtml/3000.2.1/xhtml-3000.2.1.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=158f846f8caecfaa99d2f4e41a16e249 +_md5_=52f86d8a68df2afbe554ad728138d649 diff --git a/metadata/md5-cache/dev-haskell/xml-hamlet-0.4.0.12 b/metadata/md5-cache/dev-haskell/xml-hamlet-0.4.0.12 new file mode 100644 index 000000000000..2412c517b478 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/xml-hamlet-0.4.0.12 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/parsec-2.0:=[profile?] =dev-haskell/shakespeare-1.0:=[profile?] =dev-haskell/text-0.10:=[profile?] >=dev-haskell/xml-conduit-1.0:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/hspec-1.3 dev-haskell/hunit ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Hamlet-style quasiquoter for XML content +EAPI=6 +HOMEPAGE=http://www.yesodweb.com/ +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/parsec-2.0:=[profile?] =dev-haskell/shakespeare-1.0:=[profile?] =dev-haskell/text-0.10:=[profile?] >=dev-haskell/xml-conduit-1.0:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/0.4.0.12 +SRC_URI=mirror://hackage/packages/archive/xml-hamlet/0.4.0.12/xml-hamlet-0.4.0.12.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=4e619e20f0adf781fa785fd0ab36e0a1 diff --git a/metadata/md5-cache/dev-haskell/yaml-0.8.20 b/metadata/md5-cache/dev-haskell/yaml-0.8.20 new file mode 100644 index 000000000000..f69c7741c79e --- /dev/null +++ b/metadata/md5-cache/dev-haskell/yaml-0.8.20 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/aeson-0.7:=[profile?] >=dev-haskell/attoparsec-0.11.3.0:=[profile?] >=dev-haskell/conduit-1.1.0:=[profile?] =dev-haskell/resourcet-0.3:=[profile?] =dev-lang/ghc-7.8.2:= !no-examples? ( dev-haskell/raw-strings-qq:=[profile?] ) system-libyaml? ( dev-libs/libyaml ) >=dev-haskell/cabal-1.18.1.3 test? ( dev-haskell/aeson-qq dev-haskell/base-compat >=dev-haskell/hspec-1.3 dev-haskell/hunit dev-haskell/mockery dev-haskell/temporary ) system-libyaml? ( virtual/pkgconfig ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Support for parsing and rendering YAML documents +EAPI=6 +HOMEPAGE=https://github.com/snoyberg/yaml/ +IUSE=+no-examples no-exe no-unicode system-libyaml doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/aeson-0.7:=[profile?] >=dev-haskell/attoparsec-0.11.3.0:=[profile?] >=dev-haskell/conduit-1.1.0:=[profile?] =dev-haskell/resourcet-0.3:=[profile?] =dev-lang/ghc-7.8.2:= !no-examples? ( dev-haskell/raw-strings-qq:=[profile?] ) system-libyaml? ( dev-libs/libyaml ) +SLOT=0/0.8.20 +SRC_URI=mirror://hackage/packages/archive/yaml/0.8.20/yaml-0.8.20.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=aa35a4787190c343305ce3e805be10d0 diff --git a/metadata/md5-cache/dev-haskell/yesod-auth-1.4.13.5 b/metadata/md5-cache/dev-haskell/yesod-auth-1.4.13.5 new file mode 100644 index 000000000000..057c9674eb08 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/yesod-auth-1.4.13.5 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/aeson-0.7:=[profile?] >=dev-haskell/authenticate-1.3:=[profile?] dev-haskell/base16-bytestring:=[profile?] dev-haskell/base64-bytestring:=[profile?] dev-haskell/binary:=[profile?] dev-haskell/blaze-builder:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] dev-haskell/byteable:=[profile?] dev-haskell/conduit:=[profile?] dev-haskell/conduit-extra:=[profile?] dev-haskell/cryptohash:=[profile?] dev-haskell/data-default:=[profile?] >=dev-haskell/email-validate-1.0:=[profile?] dev-haskell/file-embed:=[profile?] dev-haskell/http-client:=[profile?] >=dev-haskell/http-conduit-2.1:=[profile?] dev-haskell/http-types:=[profile?] >=dev-haskell/lifted-base-0.1:=[profile?] >=dev-haskell/mime-mail-0.3:=[profile?] >=dev-haskell/nonce-1.0.2:=[profile?] =dev-haskell/persistent-2.1:=[profile?] =dev-haskell/persistent-template-2.1:=[profile?] =dev-haskell/random-1.0.0.2:=[profile?] dev-haskell/resourcet:=[profile?] dev-haskell/safe:=[profile?] dev-haskell/shakespeare:=[profile?] >=dev-haskell/text-0.7:=[profile?] >=dev-haskell/transformers-0.2.2:=[profile?] dev-haskell/unordered-containers:=[profile?] >=dev-haskell/wai-1.4:=[profile?] >=dev-haskell/yesod-core-1.4.20:=[profile?] =dev-haskell/yesod-form-1.4:=[profile?] =dev-haskell/yesod-persistent-1.4:=[profile?] >=dev-lang/ghc-7.4.1:= network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] ) !network-uri? ( =dev-haskell/cabal-1.6.0 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Authentication for Yesod +EAPI=6 +HOMEPAGE=http://www.yesodweb.com/ +IUSE=+network-uri doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-haskell/aeson-0.7:=[profile?] >=dev-haskell/authenticate-1.3:=[profile?] dev-haskell/base16-bytestring:=[profile?] dev-haskell/base64-bytestring:=[profile?] dev-haskell/binary:=[profile?] dev-haskell/blaze-builder:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] dev-haskell/byteable:=[profile?] dev-haskell/conduit:=[profile?] dev-haskell/conduit-extra:=[profile?] dev-haskell/cryptohash:=[profile?] dev-haskell/data-default:=[profile?] >=dev-haskell/email-validate-1.0:=[profile?] dev-haskell/file-embed:=[profile?] dev-haskell/http-client:=[profile?] >=dev-haskell/http-conduit-2.1:=[profile?] dev-haskell/http-types:=[profile?] >=dev-haskell/lifted-base-0.1:=[profile?] >=dev-haskell/mime-mail-0.3:=[profile?] >=dev-haskell/nonce-1.0.2:=[profile?] =dev-haskell/persistent-2.1:=[profile?] =dev-haskell/persistent-template-2.1:=[profile?] =dev-haskell/random-1.0.0.2:=[profile?] dev-haskell/resourcet:=[profile?] dev-haskell/safe:=[profile?] dev-haskell/shakespeare:=[profile?] >=dev-haskell/text-0.7:=[profile?] >=dev-haskell/transformers-0.2.2:=[profile?] dev-haskell/unordered-containers:=[profile?] >=dev-haskell/wai-1.4:=[profile?] >=dev-haskell/yesod-core-1.4.20:=[profile?] =dev-haskell/yesod-form-1.4:=[profile?] =dev-haskell/yesod-persistent-1.4:=[profile?] >=dev-lang/ghc-7.4.1:= network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] ) !network-uri? ( =dev-haskell/cryptohash-0.8:=[profile?] >=dev-haskell/persistent-2.1:=[profile?] =dev-haskell/pwstore-fast-2.2:=[profile?] >=dev-haskell/text-0.7:=[profile?] >=dev-haskell/yesod-auth-1.4:=[profile?] =dev-haskell/yesod-core-1.4:=[profile?] =dev-haskell/yesod-form-1.4:=[profile?] =dev-haskell/yesod-persistent-1.2:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8.0 test? ( dev-haskell/basic-prelude >=dev-haskell/hspec-2.0.0 dev-haskell/http-conduit dev-haskell/http-types dev-haskell/monad-logger dev-haskell/network-uri dev-haskell/persistent-sqlite dev-haskell/resourcet dev-haskell/wai-extra dev-haskell/yesod >=dev-haskell/yesod-test-1.4.3 ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Authentication plugin for Yesod +EAPI=6 +HOMEPAGE=https://github.com/paul-rouse/yesod-auth-hashdb +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-haskell/cryptohash-0.8:=[profile?] >=dev-haskell/persistent-2.1:=[profile?] =dev-haskell/pwstore-fast-2.2:=[profile?] >=dev-haskell/text-0.7:=[profile?] >=dev-haskell/yesod-auth-1.4:=[profile?] =dev-haskell/yesod-core-1.4:=[profile?] =dev-haskell/yesod-form-1.4:=[profile?] =dev-haskell/yesod-persistent-1.2:=[profile?] >=dev-lang/ghc-7.4.1:= +SLOT=0/1.5.1.3 +SRC_URI=mirror://hackage/packages/archive/yesod-auth-hashdb/1.5.1.3/yesod-auth-hashdb-1.5.1.3.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=1360c3ea716de6dffa955103d2873191 diff --git a/metadata/md5-cache/dev-haskell/yesod-core-1.4.25 b/metadata/md5-cache/dev-haskell/yesod-core-1.4.25 new file mode 100644 index 000000000000..9175181f90d7 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/yesod-core-1.4.25 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/aeson-0.5:=[profile?] dev-haskell/auto-update:=[profile?] >=dev-haskell/blaze-builder-0.2.1.4:=[profile?] =dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] dev-haskell/byteable:=[profile?] >=dev-haskell/case-insensitive-0.2:=[profile?] >=dev-haskell/cereal-0.3:=[profile?] >=dev-haskell/clientsession-0.9.1:=[profile?] =dev-haskell/conduit-1.2:=[profile?] dev-haskell/conduit-extra:=[profile?] >=dev-haskell/cookie-0.4.2:=[profile?] =dev-haskell/exceptions-0.6:=[profile?] >=dev-haskell/fast-logger-2.2:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] >=dev-haskell/lifted-base-0.1.2:=[profile?] >=dev-haskell/monad-control-0.3:=[profile?] =dev-haskell/monad-logger-0.3.1:=[profile?] =dev-haskell/old-locale-1.0.0.2:=[profile?] =dev-haskell/parsec-2:=[profile?] =dev-haskell/path-pieces-0.1.2:=[profile?] =dev-haskell/random-1.0.0.2:=[profile?] =dev-haskell/resourcet-0.4.9:=[profile?] =dev-haskell/shakespeare-2.0:=[profile?] >=dev-haskell/text-0.7:=[profile?] >=dev-haskell/transformers-base-0.4:=[profile?] dev-haskell/unix-compat:=[profile?] >=dev-haskell/unordered-containers-0.2:=[profile?] >=dev-haskell/vector-0.9:=[profile?] =dev-haskell/wai-3.0:=[profile?] >=dev-haskell/wai-extra-3.0.7:=[profile?] >=dev-haskell/wai-logger-0.2:=[profile?] >=dev-haskell/warp-3.0.2:=[profile?] dev-haskell/word8:=[profile?] >=dev-lang/ghc-7.8.2:= >=dev-haskell/cabal-1.18.1.3 test? ( dev-haskell/async >=dev-haskell/hspec-1.3 dev-haskell/hspec-expectations dev-haskell/hunit dev-haskell/network >=dev-haskell/quickcheck-2 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Creation of type-safe, RESTful web applications +EAPI=6 +HOMEPAGE=http://www.yesodweb.com/ +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-haskell/aeson-0.5:=[profile?] dev-haskell/auto-update:=[profile?] >=dev-haskell/blaze-builder-0.2.1.4:=[profile?] =dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] dev-haskell/byteable:=[profile?] >=dev-haskell/case-insensitive-0.2:=[profile?] >=dev-haskell/cereal-0.3:=[profile?] >=dev-haskell/clientsession-0.9.1:=[profile?] =dev-haskell/conduit-1.2:=[profile?] dev-haskell/conduit-extra:=[profile?] >=dev-haskell/cookie-0.4.2:=[profile?] =dev-haskell/exceptions-0.6:=[profile?] >=dev-haskell/fast-logger-2.2:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] >=dev-haskell/lifted-base-0.1.2:=[profile?] >=dev-haskell/monad-control-0.3:=[profile?] =dev-haskell/monad-logger-0.3.1:=[profile?] =dev-haskell/old-locale-1.0.0.2:=[profile?] =dev-haskell/parsec-2:=[profile?] =dev-haskell/path-pieces-0.1.2:=[profile?] =dev-haskell/random-1.0.0.2:=[profile?] =dev-haskell/resourcet-0.4.9:=[profile?] =dev-haskell/shakespeare-2.0:=[profile?] >=dev-haskell/text-0.7:=[profile?] >=dev-haskell/transformers-base-0.4:=[profile?] dev-haskell/unix-compat:=[profile?] >=dev-haskell/unordered-containers-0.2:=[profile?] >=dev-haskell/vector-0.9:=[profile?] =dev-haskell/wai-3.0:=[profile?] >=dev-haskell/wai-extra-3.0.7:=[profile?] >=dev-haskell/wai-logger-0.2:=[profile?] >=dev-haskell/warp-3.0.2:=[profile?] dev-haskell/word8:=[profile?] >=dev-lang/ghc-7.8.2:= +SLOT=0/1.4.25 +SRC_URI=mirror://hackage/packages/archive/yesod-core/1.4.25/yesod-core-1.4.25.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=114daf2563fa15b0b365546b7ce22ccb diff --git a/metadata/md5-cache/dev-haskell/yesod-form-1.4.8 b/metadata/md5-cache/dev-haskell/yesod-form-1.4.8 new file mode 100644 index 000000000000..8c2a8cef1ab4 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/yesod-form-1.4.8 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/aeson:=[profile?] >=dev-haskell/attoparsec-0.10:=[profile?] >=dev-haskell/blaze-builder-0.2.1.4:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] dev-haskell/byteable:=[profile?] dev-haskell/data-default:=[profile?] >=dev-haskell/email-validate-1.0:=[profile?] dev-haskell/persistent:=[profile?] dev-haskell/resourcet:=[profile?] dev-haskell/semigroups:=[profile?] >=dev-haskell/shakespeare-2.0:=[profile?] >=dev-haskell/text-0.9:=[profile?] >=dev-haskell/wai-1.3:=[profile?] >=dev-haskell/xss-sanitize-0.3.0.1:=[profile?] >=dev-haskell/yesod-core-1.4.14:=[profile?] =dev-haskell/yesod-persistent-1.4:=[profile?] =dev-lang/ghc-7.8.2:= network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] ) !network-uri? ( =dev-haskell/cabal-1.18.1.3 test? ( dev-haskell/hspec ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Form handling support for Yesod Web Framework +EAPI=6 +HOMEPAGE=http://www.yesodweb.com/ +IUSE=+network-uri doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-haskell/aeson:=[profile?] >=dev-haskell/attoparsec-0.10:=[profile?] >=dev-haskell/blaze-builder-0.2.1.4:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] dev-haskell/byteable:=[profile?] dev-haskell/data-default:=[profile?] >=dev-haskell/email-validate-1.0:=[profile?] dev-haskell/persistent:=[profile?] dev-haskell/resourcet:=[profile?] dev-haskell/semigroups:=[profile?] >=dev-haskell/shakespeare-2.0:=[profile?] >=dev-haskell/text-0.9:=[profile?] >=dev-haskell/wai-1.3:=[profile?] >=dev-haskell/xss-sanitize-0.3.0.1:=[profile?] >=dev-haskell/yesod-core-1.4.14:=[profile?] =dev-haskell/yesod-persistent-1.4:=[profile?] =dev-lang/ghc-7.8.2:= network-uri? ( >=dev-haskell/network-uri-2.6:=[profile?] ) !network-uri? ( =dev-haskell/persistent-2.1:=[profile?] =dev-haskell/persistent-template-2.1:=[profile?] =dev-haskell/resourcet-0.4.5:=[profile?] >=dev-haskell/transformers-0.2.2:=[profile?] >=dev-haskell/yesod-core-1.4.0:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( dev-haskell/hspec dev-haskell/persistent-sqlite dev-haskell/text dev-haskell/wai-extra ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Some helpers for using Persistent from Yesod +EAPI=6 +HOMEPAGE=http://www.yesodweb.com/ +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-haskell/blaze-builder:=[profile?] dev-haskell/conduit:=[profile?] >=dev-haskell/persistent-2.1:=[profile?] =dev-haskell/persistent-template-2.1:=[profile?] =dev-haskell/resourcet-0.4.5:=[profile?] >=dev-haskell/transformers-0.2.2:=[profile?] >=dev-haskell/yesod-core-1.4.0:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/1.4.0.6 +SRC_URI=mirror://hackage/packages/archive/yesod-persistent/1.4.0.6/yesod-persistent-1.4.0.6.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=5f7f59161cd52efd81774db802029e1d diff --git a/metadata/md5-cache/dev-haskell/yesod-static-1.5.0.5 b/metadata/md5-cache/dev-haskell/yesod-static-1.5.0.5 new file mode 100644 index 000000000000..bdcaa6047f9b --- /dev/null +++ b/metadata/md5-cache/dev-haskell/yesod-static-1.5.0.5 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=dev-haskell/async:=[profile?] >=dev-haskell/attoparsec-0.10:=[profile?] >=dev-haskell/base64-bytestring-0.1.0.1:=[profile?] >=dev-haskell/blaze-builder-0.3:=[profile?] >=dev-haskell/byteable-0.1:=[profile?] >=dev-haskell/conduit-0.5:=[profile?] dev-haskell/conduit-extra:=[profile?] >=dev-haskell/cryptohash-0.11:=[profile?] >=dev-haskell/cryptohash-conduit-0.1:=[profile?] >=dev-haskell/css-text-0.1.2:=[profile?] dev-haskell/data-default:=[profile?] >=dev-haskell/file-embed-0.0.4.1:=[profile?] =dev-haskell/hashable-1.1:=[profile?] dev-haskell/hjsmin:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] >=dev-haskell/mime-types-0.1:=[profile?] >=dev-haskell/old-time-1.0:=[profile?] >=dev-haskell/resourcet-0.4:=[profile?] >=dev-haskell/text-0.9:=[profile?] >=dev-haskell/unix-compat-0.2:=[profile?] >=dev-haskell/unordered-containers-0.2:=[profile?] >=dev-haskell/wai-1.3:=[profile?] >=dev-haskell/wai-app-static-3.1:=[profile?] >=dev-haskell/yesod-core-1.4:=[profile?] =dev-lang/ghc-7.8.2:= >=dev-haskell/cabal-1.18.1.3 test? ( >=dev-haskell/hspec-1.3 dev-haskell/hunit dev-haskell/wai-extra >=dev-haskell/yesod-test-1.4 ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Static file serving subsite for Yesod Web Framework +EAPI=6 +HOMEPAGE=http://www.yesodweb.com/ +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-haskell/async:=[profile?] >=dev-haskell/attoparsec-0.10:=[profile?] >=dev-haskell/base64-bytestring-0.1.0.1:=[profile?] >=dev-haskell/blaze-builder-0.3:=[profile?] >=dev-haskell/byteable-0.1:=[profile?] >=dev-haskell/conduit-0.5:=[profile?] dev-haskell/conduit-extra:=[profile?] >=dev-haskell/cryptohash-0.11:=[profile?] >=dev-haskell/cryptohash-conduit-0.1:=[profile?] >=dev-haskell/css-text-0.1.2:=[profile?] dev-haskell/data-default:=[profile?] >=dev-haskell/file-embed-0.0.4.1:=[profile?] =dev-haskell/hashable-1.1:=[profile?] dev-haskell/hjsmin:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] >=dev-haskell/mime-types-0.1:=[profile?] >=dev-haskell/old-time-1.0:=[profile?] >=dev-haskell/resourcet-0.4:=[profile?] >=dev-haskell/text-0.9:=[profile?] >=dev-haskell/unix-compat-0.2:=[profile?] >=dev-haskell/unordered-containers-0.2:=[profile?] >=dev-haskell/wai-1.3:=[profile?] >=dev-haskell/wai-app-static-3.1:=[profile?] >=dev-haskell/yesod-core-1.4:=[profile?] =dev-lang/ghc-7.8.2:= +SLOT=0/1.5.0.5 +SRC_URI=mirror://hackage/packages/archive/yesod-static/1.5.0.5/yesod-static-1.5.0.5.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=1075a7f3e29a786c2f2329d15b8c2d19 diff --git a/metadata/md5-cache/dev-haskell/yesod-test-1.5.3 b/metadata/md5-cache/dev-haskell/yesod-test-1.5.3 new file mode 100644 index 000000000000..23ec6a469234 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/yesod-test-1.5.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/attoparsec-0.10:=[profile?] dev-haskell/blaze-builder:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] >=dev-haskell/case-insensitive-0.2:=[profile?] dev-haskell/cookie:=[profile?] >=dev-haskell/hspec-core-2:=[profile?] =dev-haskell/html-conduit-0.1:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] >=dev-haskell/hunit-1.2:=[profile?] dev-haskell/monad-control:=[profile?] >=dev-haskell/network-2.2:=[profile?] >=dev-haskell/persistent-1.0:=[profile?] >=dev-haskell/pretty-show-1.6:=[profile?] dev-haskell/text:=[profile?] >=dev-haskell/transformers-0.2.2:=[profile?] >=dev-haskell/wai-3.0:=[profile?] dev-haskell/wai-extra:=[profile?] >=dev-haskell/xml-conduit-1.0:=[profile?] >=dev-haskell/xml-types-0.3:=[profile?] >=dev-haskell/yesod-core-1.4.14:=[profile?] >=dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( dev-haskell/hspec dev-haskell/lifted-base dev-haskell/yesod-form ) doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=integration testing for WAI/Yesod Applications +EAPI=6 +HOMEPAGE=http://www.yesodweb.com +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-haskell/attoparsec-0.10:=[profile?] dev-haskell/blaze-builder:=[profile?] >=dev-haskell/blaze-html-0.5:=[profile?] >=dev-haskell/blaze-markup-0.5.1:=[profile?] >=dev-haskell/case-insensitive-0.2:=[profile?] dev-haskell/cookie:=[profile?] >=dev-haskell/hspec-core-2:=[profile?] =dev-haskell/html-conduit-0.1:=[profile?] >=dev-haskell/http-types-0.7:=[profile?] >=dev-haskell/hunit-1.2:=[profile?] dev-haskell/monad-control:=[profile?] >=dev-haskell/network-2.2:=[profile?] >=dev-haskell/persistent-1.0:=[profile?] >=dev-haskell/pretty-show-1.6:=[profile?] dev-haskell/text:=[profile?] >=dev-haskell/transformers-0.2.2:=[profile?] >=dev-haskell/wai-3.0:=[profile?] dev-haskell/wai-extra:=[profile?] >=dev-haskell/xml-conduit-1.0:=[profile?] >=dev-haskell/xml-types-0.3:=[profile?] >=dev-haskell/yesod-core-1.4.14:=[profile?] >=dev-lang/ghc-7.4.1:= +SLOT=0/1.5.3 +SRC_URI=mirror://hackage/packages/archive/yesod-test/1.5.3/yesod-test-1.5.3.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=77ebe72718b5db35ceebe9cac9995cdc diff --git a/metadata/md5-cache/dev-haskell/zlib-0.6.1.2 b/metadata/md5-cache/dev-haskell/zlib-0.6.1.2 new file mode 100644 index 000000000000..f10ad598acd6 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/zlib-0.6.1.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-lang/ghc-7.4.1:= sys-libs/zlib >=dev-haskell/cabal-1.10 test? ( >=dev-haskell/quickcheck-2 =dev-haskell/tasty-0.8 =dev-haskell/tasty-hunit-0.8 =dev-haskell/tasty-quickcheck-0.8 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Compression and decompression in the gzip and zlib formats +EAPI=6 +HOMEPAGE=http://hackage.haskell.org/package/zlib +IUSE=non-blocking-ffi doc hscolour profile test +KEYWORDS=~amd64 ~x86 ~ppc-macos ~x86-macos +LICENSE=BSD +RDEPEND=>=dev-lang/ghc-7.4.1:= sys-libs/zlib +SLOT=0/0.6.1.2 +SRC_URI=mirror://hackage/packages/archive/zlib/0.6.1.2/zlib-0.6.1.2.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=e412826a08a14691fe44cd54ab7a4a91 diff --git a/metadata/md5-cache/dev-haskell/zlib-enum-0.2.3.1-r1 b/metadata/md5-cache/dev-haskell/zlib-enum-0.2.3.1-r1 new file mode 100644 index 000000000000..1ce279f5434d --- /dev/null +++ b/metadata/md5-cache/dev-haskell/zlib-enum-0.2.3.1-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=>=dev-haskell/enumerator-0.4:=[profile?] =dev-haskell/transformers-0.2:=[profile?] >=dev-haskell/zlib-bindings-0.1:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.6 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Enumerator interface for zlib compression +EAPI=5 +HOMEPAGE=https://github.com/maltem/zlib-enum +IUSE=doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-haskell/enumerator-0.4:=[profile?] =dev-haskell/transformers-0.2:=[profile?] >=dev-haskell/zlib-bindings-0.1:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/0.2.3.1 +SRC_URI=mirror://hackage/packages/archive/zlib-enum/0.2.3.1/zlib-enum-0.2.3.1.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=fcae130670607451cafcc0934b632986 diff --git a/metadata/md5-cache/dev-java/jmf-bin-2.1.1e-r2 b/metadata/md5-cache/dev-java/jmf-bin-2.1.1e-r2 deleted file mode 100644 index a34d621b5e12..000000000000 --- a/metadata/md5-cache/dev-java/jmf-bin-2.1.1e-r2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile install nofetch preinst setup unpack -DEPEND=>=app-arch/unzip-5.50-r1 >=dev-java/java-config-2.2.0-r3 -DESCRIPTION=The Java Media Framework API (JMF) -EAPI=0 -HOMEPAGE=http://www.oracle.com/technetwork/java/javase/tech/index-jsp-140239.html -IUSE=elibc_FreeBSD -KEYWORDS=amd64 x86 -LICENSE=sun-bcla-jmf -RDEPEND=>=virtual/jre-1.4 >=dev-java/java-config-2.2.0-r3 -RESTRICT=fetch -SLOT=0 -SRC_URI=jmf-2_1_1e-alljava.zip -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-pkg-2 eb1f0d7d874162c70088f5ae32c31ee7 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=adff3978e55ae4d0bb03d7eafb935849 diff --git a/metadata/md5-cache/dev-java/jna-3.4.0 b/metadata/md5-cache/dev-java/jna-3.4.0 deleted file mode 100644 index 7639a13ae6fc..000000000000 --- a/metadata/md5-cache/dev-java/jna-3.4.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install preinst prepare setup test unpack -DEPEND=virtual/libffi >=virtual/jdk-1.6 virtual/pkgconfig test? ( dev-java/junit:0 dev-java/ant-junit:0 dev-java/ant-trax:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 dev-java/ant-nodeps >=dev-java/javatoolkit-0.3.0-r2 -DESCRIPTION=Java Native Access (JNA) -EAPI=4 -HOMEPAGE=https://github.com/twall/jna#readme -IUSE=+awt +nio-buffers elibc_FreeBSD test doc source elibc_FreeBSD -KEYWORDS=amd64 x86 -LICENSE=LGPL-2.1 -RDEPEND=virtual/libffi >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) -REQUIRED_USE=test? ( awt nio-buffers ) -SLOT=0 -SRC_URI=https://github.com/twall/jna/tarball/3.4.0 -> jna-3.4.0.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-ant-2 d1abcccd8e9c606be17deacfe5c7368a java-pkg-2 eb1f0d7d874162c70088f5ae32c31ee7 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=34b1633398ec48616a8c72e41cd7c12b diff --git a/metadata/md5-cache/dev-java/jna-3.4.1 b/metadata/md5-cache/dev-java/jna-3.4.1 index c59cc67eb612..60ccfec5f7c5 100644 --- a/metadata/md5-cache/dev-java/jna-3.4.1 +++ b/metadata/md5-cache/dev-java/jna-3.4.1 @@ -4,11 +4,11 @@ DESCRIPTION=Java Native Access (JNA) EAPI=5 HOMEPAGE=https://github.com/twall/jna#readme IUSE=+awt +nio-buffers elibc_FreeBSD test doc source elibc_FreeBSD -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=LGPL-2.1 RDEPEND=virtual/libffi >=virtual/jre-1.6 >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) REQUIRED_USE=test? ( awt nio-buffers ) SLOT=0 SRC_URI=https://github.com/twall/jna/tarball/3.4.1 -> jna-3.4.1.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-ant-2 d1abcccd8e9c606be17deacfe5c7368a java-pkg-2 eb1f0d7d874162c70088f5ae32c31ee7 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=cf8a311885564d9ba9f9e4e5c03311a2 +_md5_=135ca9c5bdc4add9ea974997a147529f diff --git a/metadata/md5-cache/dev-java/jna-4.2.2 b/metadata/md5-cache/dev-java/jna-4.2.2-r1 similarity index 90% rename from metadata/md5-cache/dev-java/jna-4.2.2 rename to metadata/md5-cache/dev-java/jna-4.2.2-r1 index 954aea05c7ef..577be9b4ced8 100644 --- a/metadata/md5-cache/dev-java/jna-4.2.2 +++ b/metadata/md5-cache/dev-java/jna-4.2.2-r1 @@ -1,7 +1,7 @@ DEFINED_PHASES=compile configure install preinst prepare setup test -DEPEND=virtual/libffi >=virtual/jdk-1.7 x11-libs/libXt virtual/pkgconfig test? ( dev-java/ant-junit:0 dev-java/guava:18 dev-java/javassist:3 dev-java/reflections:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 +DEPEND=virtual/libffi >=virtual/jdk-1.7 x11-libs/libXt virtual/pkgconfig test? ( dev-java/ant-junit:0 dev-java/guava:20 dev-java/javassist:3 dev-java/reflections:0 ) >=dev-java/java-config-2.2.0-r3 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2:0 >=dev-java/javatoolkit-0.3.0-r2 DESCRIPTION=Java Native Access (JNA) -EAPI=5 +EAPI=6 HOMEPAGE=https://github.com/twall/jna IUSE=+awt +nio-buffers test elibc_FreeBSD doc source elibc_FreeBSD KEYWORDS=~amd64 ~x86 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=4 SRC_URI=https://github.com/twall/jna/archive/4.2.2.tar.gz -> jna-4.2.2.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-ant-2 d1abcccd8e9c606be17deacfe5c7368a java-pkg-2 eb1f0d7d874162c70088f5ae32c31ee7 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=5704a608ee7a1119f357c0c076008678 +_md5_=ff68237e00d92f721c308939ceade907 diff --git a/metadata/md5-cache/dev-libs/icu-58.1 b/metadata/md5-cache/dev-libs/icu-58.1 index e53e7e2f5312..2390ab44f58d 100644 --- a/metadata/md5-cache/dev-libs/icu-58.1 +++ b/metadata/md5-cache/dev-libs/icu-58.1 @@ -9,4 +9,4 @@ LICENSE=BSD SLOT=0/58.1 SRC_URI=http://download.icu-project.org/files/icu4c/58.1/icu4c-58_1-src.tgz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=43bd704b84b55e268c784b130f44c915 +_md5_=20416a1209318955b719e42b82d98465 diff --git a/metadata/md5-cache/dev-libs/icu-layoutex-58.1 b/metadata/md5-cache/dev-libs/icu-layoutex-58.1 new file mode 100644 index 000000000000..189b8ed49379 --- /dev/null +++ b/metadata/md5-cache/dev-libs/icu-layoutex-58.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=virtual/pkgconfig ~dev-libs/icu-58.1 dev-libs/icu-le-hb !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=External layout part of International Components for Unicode +EAPI=6 +HOMEPAGE=http://www.icu-project.org/ +IUSE=debug static-libs 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=~amd64 ~x86 +LICENSE=BSD +RDEPEND=~dev-libs/icu-58.1 dev-libs/icu-le-hb +SLOT=0/58.1 +SRC_URI=http://download.icu-project.org/files/icu4c/58.1/icu4c-58_1-src.tgz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=8a29cd0abe3f037ac4cd019b483120aa diff --git a/metadata/md5-cache/dev-libs/icu-le-hb-1.0.3 b/metadata/md5-cache/dev-libs/icu-le-hb-1.0.3 new file mode 100644 index 000000000000..fa4b20a5fdfd --- /dev/null +++ b/metadata/md5-cache/dev-libs/icu-le-hb-1.0.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=media-libs/harfbuzz:= >=dev-libs/icu-58.1 virtual/pkgconfig !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=ICU Layout Engine API on top of HarfBuzz shaping library +EAPI=6 +HOMEPAGE=http://www.harfbuzz.org https://github.com/behdad/icu-le-hb +IUSE=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=~amd64 ~x86 +LICENSE=icu +RDEPEND=media-libs/harfbuzz:= +SLOT=0 +SRC_URI=https://github.com/behdad/icu-le-hb/archive/1.0.3.tar.gz -> icu-le-hb-1.0.3.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c libtool 4890219c51da247200223277f993e054 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=a2077117a9d1f5fffccc12213c8a28a6 diff --git a/metadata/md5-cache/dev-libs/libgit2-0.20.0-r1 b/metadata/md5-cache/dev-libs/libgit2-0.20.0-r1 deleted file mode 100644 index 53bd8a4d3ca1..000000000000 --- a/metadata/md5-cache/dev-libs/libgit2-0.20.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-libs/zlib net-libs/http-parser ssh? ( net-libs/libssh2 ) sys-devel/make >=dev-util/cmake-2.8.12 -DESCRIPTION=A linkable library for Git -EAPI=5 -HOMEPAGE=https://libgit2.github.com/ -IUSE=examples ssh test threads trace -KEYWORDS=amd64 x86 ~ppc-macos -LICENSE=GPL-2-with-linking-exception -RDEPEND=sys-libs/zlib net-libs/http-parser ssh? ( net-libs/libssh2 ) -SLOT=0 -SRC_URI=https://github.com/libgit2/libgit2/archive/v0.20.0.tar.gz -> libgit2-0.20.0.tar.gz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=664535d2043fe2f44ceac21f2b3bc5c5 diff --git a/metadata/md5-cache/dev-libs/libgit2-0.21.5 b/metadata/md5-cache/dev-libs/libgit2-0.21.5 deleted file mode 100644 index 80807892fd7a..000000000000 --- a/metadata/md5-cache/dev-libs/libgit2-0.21.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=sys-libs/zlib net-libs/http-parser ssh? ( net-libs/libssh2 ) sys-devel/make >=dev-util/cmake-2.8.12 -DESCRIPTION=A linkable library for Git -EAPI=5 -HOMEPAGE=https://libgit2.github.com/ -IUSE=examples ssh test threads trace -KEYWORDS=amd64 x86 ~ppc-macos -LICENSE=GPL-2-with-linking-exception -RDEPEND=sys-libs/zlib net-libs/http-parser ssh? ( net-libs/libssh2 ) -SLOT=0/21 -SRC_URI=https://github.com/libgit2/libgit2/archive/v0.21.5.tar.gz -> libgit2-0.21.5.tar.gz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e2e106c7204127150f02a0b5565eb2e8 diff --git a/metadata/md5-cache/dev-libs/libgit2-0.23.2-r1 b/metadata/md5-cache/dev-libs/libgit2-0.23.2-r1 deleted file mode 100644 index 72c4c591fe8a..000000000000 --- a/metadata/md5-cache/dev-libs/libgit2-0.23.2-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=!libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) sys-libs/zlib net-libs/http-parser gssapi? ( virtual/krb5 ) ssh? ( net-libs/libssh2 ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.12 -DESCRIPTION=A linkable library for Git -EAPI=5 -HOMEPAGE=https://libgit2.github.com/ -IUSE=examples gssapi libressl ssh test threads trace -KEYWORDS=~amd64 ~x86 ~ppc-macos -LICENSE=GPL-2-with-linking-exception -RDEPEND=!libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) sys-libs/zlib net-libs/http-parser gssapi? ( virtual/krb5 ) ssh? ( net-libs/libssh2 ) -SLOT=0/23 -SRC_URI=https://github.com/libgit2/libgit2/archive/v0.23.2.tar.gz -> libgit2-0.23.2.tar.gz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=bd39254858694d13f41c7b22aaa5dddc diff --git a/metadata/md5-cache/dev-libs/libgit2-0.23.3 b/metadata/md5-cache/dev-libs/libgit2-0.23.3 deleted file mode 100644 index 28051efb833c..000000000000 --- a/metadata/md5-cache/dev-libs/libgit2-0.23.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=!libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) sys-libs/zlib net-libs/http-parser gssapi? ( virtual/krb5 ) ssh? ( net-libs/libssh2 ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.12 -DESCRIPTION=A linkable library for Git -EAPI=5 -HOMEPAGE=https://libgit2.github.com/ -IUSE=examples gssapi libressl ssh test threads trace -KEYWORDS=~amd64 ~x86 ~ppc-macos -LICENSE=GPL-2-with-linking-exception -RDEPEND=!libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) sys-libs/zlib net-libs/http-parser gssapi? ( virtual/krb5 ) ssh? ( net-libs/libssh2 ) -SLOT=0/23 -SRC_URI=https://github.com/libgit2/libgit2/archive/v0.23.3.tar.gz -> libgit2-0.23.3.tar.gz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=bd39254858694d13f41c7b22aaa5dddc diff --git a/metadata/md5-cache/dev-libs/libgit2-0.24.0 b/metadata/md5-cache/dev-libs/libgit2-0.24.0 deleted file mode 100644 index bb369c272a8e..000000000000 --- a/metadata/md5-cache/dev-libs/libgit2-0.24.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=!libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) sys-libs/zlib net-libs/http-parser:= gssapi? ( virtual/krb5 ) ssh? ( net-libs/libssh2 ) virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.12 -DESCRIPTION=A linkable library for Git -EAPI=5 -HOMEPAGE=https://libgit2.github.com/ -IUSE=examples gssapi libressl ssh test threads trace -KEYWORDS=~amd64 ~arm ~ppc ~x86 ~ppc-macos -LICENSE=GPL-2-with-linking-exception -RDEPEND=!libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) sys-libs/zlib net-libs/http-parser:= gssapi? ( virtual/krb5 ) ssh? ( net-libs/libssh2 ) -SLOT=0/24 -SRC_URI=https://github.com/libgit2/libgit2/archive/v0.24.0.tar.gz -> libgit2-0.24.0.tar.gz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=032123a809e59bca7e91bf2ce42f762d diff --git a/metadata/md5-cache/dev-lua/luasec-0.6 b/metadata/md5-cache/dev-lua/luasec-0.6 new file mode 100644 index 000000000000..ff050c0f1e14 --- /dev/null +++ b/metadata/md5-cache/dev-lua/luasec-0.6 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare +DEPEND=>=dev-lang/lua-5.1:0[deprecated] dev-lua/luasocket !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl:= ) virtual/pkgconfig +DESCRIPTION=Lua binding for OpenSSL library to provide TLS/SSL communication +EAPI=5 +HOMEPAGE=https://github.com/brunoos/luasec http://www.inf.puc-rio.br/~brunoos/luasec/ +IUSE=libressl +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=MIT +RDEPEND=>=dev-lang/lua-5.1:0[deprecated] dev-lua/luasocket !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl:= ) +SLOT=0 +SRC_URI=https://github.com/brunoos/luasec/archive/luasec-0.6.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=7a4bd676d7cbd2c1fa8bd9e59037079b diff --git a/metadata/md5-cache/dev-perl/DBD-mysql-4.38.0 b/metadata/md5-cache/dev-perl/DBD-mysql-4.38.0 new file mode 100644 index 000000000000..f10d6f2d83ea --- /dev/null +++ b/metadata/md5-cache/dev-perl/DBD-mysql-4.38.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-perl/DBI-1.609.0 virtual/libmysqlclient:= embedded? ( virtual/mysql[embedded] ) virtual/perl-ExtUtils-MakeMaker virtual/perl-Data-Dumper test? ( dev-perl/Test-Deep >=virtual/perl-Test-Simple-0.900.0 virtual/perl-Time-HiRes ) dev-lang/perl:= +DESCRIPTION=MySQL driver for the Perl5 Database Interface (DBI) +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/DBD-mysql/ +IUSE=embedded test +ssl +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=>=dev-perl/DBI-1.609.0 virtual/libmysqlclient:= embedded? ( virtual/mysql[embedded] ) dev-lang/perl:= +REQUIRED_USE=?? ( embedded ssl ) +SLOT=0 +SRC_URI=mirror://cpan/authors/id/C/CA/CAPTTOFU/DBD-mysql-4.038.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions aac50de73be0a80ebe780e0b20850130 perl-module f6549146ea31a902e20b5f2e6f244358 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=5e9f991cdd3b9809d1ef3ebaa5c53d86 diff --git a/metadata/md5-cache/dev-perl/DBI-1.636.0 b/metadata/md5-cache/dev-perl/DBI-1.636.0 new file mode 100644 index 000000000000..c545d02b9b03 --- /dev/null +++ b/metadata/md5-cache/dev-perl/DBI-1.636.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-perl/PlRPC-0.200.0 >=virtual/perl-Sys-Syslog-0.170.0 virtual/perl-File-Spec !<=dev-perl/SQL-Statement-1.330.0 >=virtual/perl-ExtUtils-MakeMaker-6.480.0 test? ( >=virtual/perl-Test-Simple-0.900.0 ) dev-lang/perl:= +DESCRIPTION=Database independent interface for Perl +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/DBI/ +IUSE=test examples +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=>=dev-perl/PlRPC-0.200.0 >=virtual/perl-Sys-Syslog-0.170.0 virtual/perl-File-Spec !<=dev-perl/SQL-Statement-1.330.0 dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/T/TI/TIMB/DBI-1.636.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions aac50de73be0a80ebe780e0b20850130 perl-module f6549146ea31a902e20b5f2e6f244358 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=05b88d62393e5dddc113040564e47071 diff --git a/metadata/md5-cache/dev-perl/DBICx-TestDatabase-0.50.0 b/metadata/md5-cache/dev-perl/DBICx-TestDatabase-0.50.0 new file mode 100644 index 000000000000..43540efc958b --- /dev/null +++ b/metadata/md5-cache/dev-perl/DBICx-TestDatabase-0.50.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=virtual/perl-File-Temp >=dev-perl/DBD-SQLite-1.290.0 dev-perl/SQL-Translator >=virtual/perl-ExtUtils-MakeMaker-6.360.0 test? ( dev-perl/DBIx-Class >=virtual/perl-Test-Simple-1.1.10 ) dev-lang/perl:= +DESCRIPTION=create a temporary database from a DBIx::Class::Schema +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/DBICx-TestDatabase/ +IUSE=test +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=virtual/perl-File-Temp >=dev-perl/DBD-SQLite-1.290.0 dev-perl/SQL-Translator dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/J/JR/JROCKWAY/DBICx-TestDatabase-0.05.tar.gz +_eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions aac50de73be0a80ebe780e0b20850130 perl-module f6549146ea31a902e20b5f2e6f244358 +_md5_=46ab636bcda25b78ecd252373a1647cf diff --git a/metadata/md5-cache/dev-perl/DBIx-Class-0.82.840 b/metadata/md5-cache/dev-perl/DBIx-Class-0.82.840 new file mode 100644 index 000000000000..b3a31b0d6774 --- /dev/null +++ b/metadata/md5-cache/dev-perl/DBIx-Class-0.82.840 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=admin? ( >=dev-perl/Moose-0.980.0 >=dev-perl/MooseX-Types-0.210.0 >=dev-perl/JSON-Any-1.220.0 >=dev-perl/MooseX-Types-JSON-0.20.0 >=dev-perl/MooseX-Types-Path-Class-0.50.0 >=dev-perl/namespace-autoclean-0.90.0 ) admin_script? ( >=dev-perl/Moose-0.980.0 >=dev-perl/MooseX-Types-0.210.0 >=dev-perl/JSON-Any-1.220.0 >=dev-perl/MooseX-Types-JSON-0.20.0 >=dev-perl/MooseX-Types-Path-Class-0.50.0 >=dev-perl/namespace-autoclean-0.90.0 >=dev-perl/Getopt-Long-Descriptive-0.81.0 >=dev-perl/Text-CSV-1.160.0 ) deploy? ( >=dev-perl/SQL-Translator-0.110.60 ) replicated? ( >=dev-perl/Moose-0.980.0 >=dev-perl/MooseX-Types-0.210.0 >=dev-perl/Hash-Merge-0.120.0 ) >=dev-perl/Class-Accessor-Grouped-0.100.120 >=dev-perl/Class-C3-Componentised-1.0.900 >=dev-perl/Class-Inspector-1.240.0 >=dev-perl/Config-Any-0.200.0 >=dev-perl/Context-Preserve-0.10.0 >=dev-perl/Data-Dumper-Concise-2.20.0 >=dev-perl/Data-Page-2.10.0 >=dev-perl/DBI-1.570.0 >=dev-perl/Devel-GlobalDestruction-0.90.0 virtual/perl-File-Path >=dev-perl/Hash-Merge-0.120.0 >=dev-perl/MRO-Compat-0.120.0 >=dev-perl/Math-Base36-0.70.0 >=virtual/perl-Math-BigInt-1.80 >=dev-perl/Module-Find-0.70.0 >=dev-perl/Moo-2.0.0 >=dev-perl/Path-Class-0.180.0 >=dev-perl/SQL-Abstract-1.810.0 >=virtual/perl-Scalar-List-Utils-1.160.0 >=dev-perl/Scope-Guard-0.30.0 >=dev-perl/Sub-Name-0.40.0 >=virtual/perl-Text-Balanced-2.0.0 >=dev-perl/Try-Tiny-0.70.0 >=dev-perl/namespace-clean-0.240.0 >=virtual/perl-ExtUtils-MakeMaker-6.590.0 test? ( >=dev-perl/DBD-SQLite-1.290.0 >=virtual/perl-File-Temp-0.220.0 >=dev-perl/Package-Stash-0.280.0 >=dev-perl/Test-Deep-0.101.0 >=dev-perl/Test-Exception-0.310.0 >=virtual/perl-Test-Simple-0.940.0 >=dev-perl/Test-Warn-0.210.0 ) dev-lang/perl:= +DESCRIPTION=Extensible and flexible object <-> relational mapper +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/DBIx-Class/ +IUSE=test admin admin_script deploy replicated examples +KEYWORDS=~amd64 ~x86 ~ppc-aix +LICENSE=|| ( Artistic GPL-1+ ) +RDEPEND=admin? ( >=dev-perl/Moose-0.980.0 >=dev-perl/MooseX-Types-0.210.0 >=dev-perl/JSON-Any-1.220.0 >=dev-perl/MooseX-Types-JSON-0.20.0 >=dev-perl/MooseX-Types-Path-Class-0.50.0 >=dev-perl/namespace-autoclean-0.90.0 ) admin_script? ( >=dev-perl/Moose-0.980.0 >=dev-perl/MooseX-Types-0.210.0 >=dev-perl/JSON-Any-1.220.0 >=dev-perl/MooseX-Types-JSON-0.20.0 >=dev-perl/MooseX-Types-Path-Class-0.50.0 >=dev-perl/namespace-autoclean-0.90.0 >=dev-perl/Getopt-Long-Descriptive-0.81.0 >=dev-perl/Text-CSV-1.160.0 ) deploy? ( >=dev-perl/SQL-Translator-0.110.60 ) replicated? ( >=dev-perl/Moose-0.980.0 >=dev-perl/MooseX-Types-0.210.0 >=dev-perl/Hash-Merge-0.120.0 ) >=dev-perl/Class-Accessor-Grouped-0.100.120 >=dev-perl/Class-C3-Componentised-1.0.900 >=dev-perl/Class-Inspector-1.240.0 >=dev-perl/Config-Any-0.200.0 >=dev-perl/Context-Preserve-0.10.0 >=dev-perl/Data-Dumper-Concise-2.20.0 >=dev-perl/Data-Page-2.10.0 >=dev-perl/DBI-1.570.0 >=dev-perl/Devel-GlobalDestruction-0.90.0 virtual/perl-File-Path >=dev-perl/Hash-Merge-0.120.0 >=dev-perl/MRO-Compat-0.120.0 >=dev-perl/Math-Base36-0.70.0 >=virtual/perl-Math-BigInt-1.80 >=dev-perl/Module-Find-0.70.0 >=dev-perl/Moo-2.0.0 >=dev-perl/Path-Class-0.180.0 >=dev-perl/SQL-Abstract-1.810.0 >=virtual/perl-Scalar-List-Utils-1.160.0 >=dev-perl/Scope-Guard-0.30.0 >=dev-perl/Sub-Name-0.40.0 >=virtual/perl-Text-Balanced-2.0.0 >=dev-perl/Try-Tiny-0.70.0 >=dev-perl/namespace-clean-0.240.0 dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/R/RI/RIBASUSHI/DBIx-Class-0.082840.tar.gz +_eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions aac50de73be0a80ebe780e0b20850130 perl-module f6549146ea31a902e20b5f2e6f244358 +_md5_=f0f97b394f81e79327907d848e1808c0 diff --git a/metadata/md5-cache/dev-perl/Glib-Object-Introspection-0.40.0 b/metadata/md5-cache/dev-perl/Glib-Object-Introspection-0.40.0 new file mode 100644 index 000000000000..b8dbe1a71b1e --- /dev/null +++ b/metadata/md5-cache/dev-perl/Glib-Object-Introspection-0.40.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-perl/ExtUtils-Depends-0.300.0 >=dev-perl/extutils-pkgconfig-1.0.0 >=dev-perl/glib-perl-1.320.0 >=dev-libs/gobject-introspection-1.0 >=dev-libs/libffi-3.0.0 >=dev-libs/glib-2.0.0 dev-lang/perl:= +DESCRIPTION=Dynamically create Perl language bindings +EAPI=6 +HOMEPAGE=http://search.cpan.org/dist/Glib-Object-Introspection/ +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2.1 +RDEPEND=>=dev-perl/glib-perl-1.320.0 >=dev-libs/gobject-introspection-1.0 >=dev-libs/libffi-3.0.0 >=dev-libs/glib-2.0.0 dev-lang/perl:= +SLOT=0 +SRC_URI=mirror://cpan/authors/id/X/XA/XAOC/Glib-Object-Introspection-0.040.tar.gz +_eclasses_=multiprocessing e32940a7b2a9992ad217eccddb84d548 perl-functions aac50de73be0a80ebe780e0b20850130 perl-module f6549146ea31a902e20b5f2e6f244358 +_md5_=4576109ccf5d468a4ba01cecb88b257e diff --git a/metadata/md5-cache/dev-python/Babel-2.3.4 b/metadata/md5-cache/dev-python/Babel-2.3.4 index d1570a468fea..f9d5d33d7d46 100644 --- a/metadata/md5-cache/dev-python/Babel-2.3.4 +++ b/metadata/md5-cache/dev-python/Babel-2.3.4 @@ -4,11 +4,11 @@ DESCRIPTION=A collection of tools for internationalizing Python applications EAPI=5 HOMEPAGE=http://babel.edgewall.org/ https://pypi.python.org/pypi/Babel IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=BSD RDEPEND=dev-python/pytz[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/B/Babel/Babel-2.3.4.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=8428c6a84bc2b8483a78b461feff686c +_md5_=fe8143eb780426429b32917b3e48bd92 diff --git a/metadata/md5-cache/dev-python/alembic-0.8.7 b/metadata/md5-cache/dev-python/alembic-0.8.7 index 9478d90c997b..5c6d7c5ac346 100644 --- a/metadata/md5-cache/dev-python/alembic-0.8.7 +++ b/metadata/md5-cache/dev-python/alembic-0.8.7 @@ -4,11 +4,11 @@ DESCRIPTION=database migrations tool, written by the author of SQLAlchemy EAPI=5 HOMEPAGE=https://bitbucket.org/zzzeek/alembic IUSE=test doc python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=MIT RDEPEND=>=dev-python/sqlalchemy-0.8.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/mako[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-editor-0.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/a/alembic/alembic-0.8.7.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=ee2fa4fee03dff8debc2975131ff8fde +_md5_=181be67b3cd045c76335f7be518cdcfb diff --git a/metadata/md5-cache/dev-python/aodhclient-0.6.0 b/metadata/md5-cache/dev-python/aodhclient-0.6.0 index ac246c8bdfb3..0a95f77487fa 100644 --- a/metadata/md5-cache/dev-python/aodhclient-0.6.0 +++ b/metadata/md5-cache/dev-python/aodhclient-0.6.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Aodh API EAPI=6 HOMEPAGE=https://github.com/openstack/python-aodhclient IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cliff-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/osc-lib-1.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/a/aodhclient/aodhclient-0.6.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=215575dc2490fd8caedb05498727b5d8 +_md5_=7a125dc3ab8565e5331ad29052aec656 diff --git a/metadata/md5-cache/dev-python/bandit-1.1.0 b/metadata/md5-cache/dev-python/bandit-1.1.0 index 2a82735782d6..4b9d31f4b488 100644 --- a/metadata/md5-cache/dev-python/bandit-1.1.0 +++ b/metadata/md5-cache/dev-python/bandit-1.1.0 @@ -4,11 +4,11 @@ DESCRIPTION=A security linter from OpenStack Security EAPI=6 HOMEPAGE=https://openstack.org IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/git-python-1.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/b/bandit/bandit-1.1.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=2066c874e7332145b62518d4add392d0 +_md5_=aa7037f679219cf6461b0423394c495a diff --git a/metadata/md5-cache/dev-python/bitstring-3.1.1 b/metadata/md5-cache/dev-python/bitstring-3.1.1 deleted file mode 100644 index 6be26b8dba40..000000000000 --- a/metadata/md5-cache/dev-python/bitstring-3.1.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=app-arch/unzip python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=A pure Python module for creation and analysis of binary data -EAPI=5 -HOMEPAGE=https://python-bitstring.googlecode.com/ -IUSE=test python_targets_python2_7 python_targets_python3_4 -KEYWORDS=amd64 x86 -LICENSE=MIT -RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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://python-bitstring.googlecode.com/files/bitstring-3.1.1.zip -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=941b776e6ad27bf1b373d55f4c553499 diff --git a/metadata/md5-cache/dev-python/bitstring-3.1.5 b/metadata/md5-cache/dev-python/bitstring-3.1.5 index 5610d1a2648b..d49371334da1 100644 --- a/metadata/md5-cache/dev-python/bitstring-3.1.5 +++ b/metadata/md5-cache/dev-python/bitstring-3.1.5 @@ -4,11 +4,11 @@ DESCRIPTION=A pure Python module for creation and analysis of binary data EAPI=6 HOMEPAGE=https://github.com/scott-griffiths/bitstring IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=https://github.com/scott-griffiths/bitstring/archive/bitstring-3.1.5.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=f9c1454e29eac6975c7f4f919c808192 +_md5_=8e78da77d0455f978516677bc2b6370e diff --git a/metadata/md5-cache/dev-python/cliff-2.2.0 b/metadata/md5-cache/dev-python/cliff-2.2.0 index 864aac5eea31..eedf28c4a4c4 100644 --- a/metadata/md5-cache/dev-python/cliff-2.2.0 +++ b/metadata/md5-cache/dev-python/cliff-2.2.0 @@ -4,11 +4,11 @@ DESCRIPTION=Command Line Interface Formulation Framework EAPI=6 HOMEPAGE=https://github.com/dreamhost/cliff IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cmd2-0.6.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/pyparsing-2.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/unicodecsv-0.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/c/cliff/cliff-2.2.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=4e17715788ef5d3fe52eddadcf12fd49 +_md5_=88c1e9e03b4220c5f19184d12125160f diff --git a/metadata/md5-cache/dev-python/croniter-0.3.11 b/metadata/md5-cache/dev-python/croniter-0.3.11 index dcee64fdfdb8..871513afc232 100644 --- a/metadata/md5-cache/dev-python/croniter-0.3.11 +++ b/metadata/md5-cache/dev-python/croniter-0.3.11 @@ -4,11 +4,11 @@ DESCRIPTION=Python module to provide iteration for datetime object EAPI=5 HOMEPAGE=https://github.com/kiorky/croniter https://pypi.python.org/pypi/croniter IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=MIT RDEPEND=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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/c/croniter/croniter-0.3.11.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=8efc881b8fab79f9437c1a19bf22a777 +_md5_=194372bba1b02dcf2fcff4986a09feda diff --git a/metadata/md5-cache/dev-python/cryptography-1.5.2 b/metadata/md5-cache/dev-python/cryptography-1.5.2 index 128a80ce02d8..7b1d818efe0b 100644 --- a/metadata/md5-cache/dev-python/cryptography-1.5.2 +++ b/metadata/md5-cache/dev-python/cryptography-1.5.2 @@ -4,11 +4,11 @@ DESCRIPTION=Library providing cryptographic recipes and primitives EAPI=5 HOMEPAGE=https://github.com/pyca/cryptography/ https://pypi.python.org/pypi/cryptography/ IUSE=libressl test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux LICENSE=|| ( Apache-2.0 BSD ) RDEPEND=!libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl ) python_targets_python2_7? ( >=dev-python/cffi-1.4.1:=[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_4? ( >=dev-python/cffi-1.4.1:=[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_5? ( >=dev-python/cffi-1.4.1:=[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_pypy? ( dev-python/enum34[python_targets_pypy(-)?,-python_single_target_pypy(-),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_python2_7(-)?,-python_single_target_python2_7(-)] ) >=dev-python/idna-2.0[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyasn1-0.1.8[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.4.1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( >=virtual/pypy-2.6.0 ) virtual/python-ipaddress[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/c/cryptography/cryptography-1.5.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=662fac4b81ce271540f7ebb0fc568aec +_md5_=54c5ec355b8a0a4a660e01cfdb84769e diff --git a/metadata/md5-cache/dev-python/cryptography-vectors-1.5.2 b/metadata/md5-cache/dev-python/cryptography-vectors-1.5.2 index 0460be6698d2..4ab665165f00 100644 --- a/metadata/md5-cache/dev-python/cryptography-vectors-1.5.2 +++ b/metadata/md5-cache/dev-python/cryptography-vectors-1.5.2 @@ -4,11 +4,11 @@ DESCRIPTION=Test vectors for the cryptography package EAPI=5 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 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd +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:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/c/cryptography-vectors/cryptography_vectors-1.5.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=bcaa8d912f20fd63fba76ff5fa62fa96 +_md5_=b6a731f4f8d549e96c56a73575c33d24 diff --git a/metadata/md5-cache/dev-python/cursive-0.1.1 b/metadata/md5-cache/dev-python/cursive-0.1.1 index c5da4ba3d22c..8d6ae07032ab 100644 --- a/metadata/md5-cache/dev-python/cursive-0.1.1 +++ b/metadata/md5-cache/dev-python/cursive-0.1.1 @@ -4,11 +4,11 @@ DESCRIPTION=Cursive implements OpenStack-specific validation of digital signatur EAPI=6 HOMEPAGE=https://github.com/openstack/cursive IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cryptography-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/netifaces-0.10.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/castellan-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/c/cursive/cursive-0.1.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=2238ad195786799de8b2a8f0f890f85a +_md5_=f7ecba34ceaf29c180ee8f5588449faf diff --git a/metadata/md5-cache/dev-python/dogpile-cache-0.6.2 b/metadata/md5-cache/dev-python/dogpile-cache-0.6.2 index 1603d09c0c9f..1d918b2c12db 100644 --- a/metadata/md5-cache/dev-python/dogpile-cache-0.6.2 +++ b/metadata/md5-cache/dev-python/dogpile-cache-0.6.2 @@ -4,11 +4,11 @@ DESCRIPTION=A locking API for expiring values while a single thread generates a EAPI=5 HOMEPAGE=https://bitbucket.org/zzzeek/dogpile.cache IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/d/dogpile.cache/dogpile.cache-0.6.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=2e0285668f7bff12a741826042287435 +_md5_=33c6e0d433e6600d2992df45b7211d43 diff --git a/metadata/md5-cache/dev-python/fixtures-3.0.0 b/metadata/md5-cache/dev-python/fixtures-3.0.0 index c43e70d50e7d..f60ddb0623c9 100644 --- a/metadata/md5-cache/dev-python/fixtures-3.0.0 +++ b/metadata/md5-cache/dev-python/fixtures-3.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=Fixtures, reusable state for writing clean tests and more EAPI=6 HOMEPAGE=https://launchpad.net/python-fixtures https://pypi.python.org/pypi/fixtures IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux LICENSE=|| ( Apache-2.0 BSD ) RDEPEND=>=dev-python/pbr-0.11[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/testtools-0.9.22[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/f/fixtures/fixtures-3.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=dc47d82bb5f38c82fb5a773ea51854d5 +_md5_=e8722758a0993c1014fbc68b29bf7dc3 diff --git a/metadata/md5-cache/dev-python/flask-admin-1.4.2-r1 b/metadata/md5-cache/dev-python/flask-admin-1.4.2-r1 new file mode 100644 index 000000000000..544471a64ea3 --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-admin-1.4.2-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/flask-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/wtforms[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/flask-wtf[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/peewee[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/wtf-peewee[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/flask-pymongo[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/flask-mongoengine[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/flask-sqlalchemy[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/flask-babelex[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/shapely[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/geoalchemy2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pillow-2.9[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-),jpeg] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Simple and extensible admin interface framework for Flask +EAPI=6 +HOMEPAGE=https://pypi.python.org/pypi/Flask-Admin +IUSE=examples test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/flask-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/wtforms[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/F/Flask-Admin/Flask-Admin-1.4.2.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=b93a862e5730ab59b9d5b7b6bdd31748 diff --git a/metadata/md5-cache/dev-python/flask-babelex-0.9.3 b/metadata/md5-cache/dev-python/flask-babelex-0.9.3 new file mode 100644 index 000000000000..f4a78b3cc45a --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-babelex-0.9.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/flask[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/speaklater-1.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/jinja-2.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/flask-sphinx-themes[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Adds i18n/l10n support to Flask applications +EAPI=6 +HOMEPAGE=http://github.com/mrjoes/flask-babelex https://pypi.python.org/pypi/Flask-BabelEx +IUSE=doc python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-python/flask[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/speaklater-1.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/jinja-2.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/F/Flask-BabelEx/Flask-BabelEx-0.9.3.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=767e1721bc52a9c2a398bbd95dd881a4 diff --git a/metadata/md5-cache/dev-python/flask-migrate-1.2.0 b/metadata/md5-cache/dev-python/flask-migrate-1.2.0 deleted file mode 100644 index 09b1e0d626f4..000000000000 --- a/metadata/md5-cache/dev-python/flask-migrate-1.2.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/alembic[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/flask-sqlalchemy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/flask-script[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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_python2_7(-)] -DESCRIPTION=SQLAlchemy database migrations for Flask applications using Alembic -EAPI=5 -HOMEPAGE=https://pypi.python.org/pypi/Flask-Migrate -IUSE=test python_targets_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=mirror://pypi/F/Flask-Migrate/Flask-Migrate-1.2.0.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b676bdda301e658db59a90769843e254 diff --git a/metadata/md5-cache/dev-python/flask-migrate-1.3.1 b/metadata/md5-cache/dev-python/flask-migrate-1.3.1 deleted file mode 100644 index fb3e9a02be42..000000000000 --- a/metadata/md5-cache/dev-python/flask-migrate-1.3.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/alembic[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/flask-sqlalchemy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/flask-script[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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_python2_7(-)] -DESCRIPTION=SQLAlchemy database migrations for Flask applications using Alembic -EAPI=5 -HOMEPAGE=https://pypi.python.org/pypi/Flask-Migrate -IUSE=test python_targets_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=mirror://pypi/F/Flask-Migrate/Flask-Migrate-1.3.1.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b676bdda301e658db59a90769843e254 diff --git a/metadata/md5-cache/dev-python/flask-migrate-1.4.0 b/metadata/md5-cache/dev-python/flask-migrate-1.4.0 deleted file mode 100644 index 7b15476ba77f..000000000000 --- a/metadata/md5-cache/dev-python/flask-migrate-1.4.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/alembic[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/flask-sqlalchemy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/flask-script[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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_python2_7(-)] -DESCRIPTION=SQLAlchemy database migrations for Flask applications using Alembic -EAPI=5 -HOMEPAGE=https://pypi.python.org/pypi/Flask-Migrate -IUSE=test python_targets_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=mirror://pypi/F/Flask-Migrate/Flask-Migrate-1.4.0.zip -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=dbd0d17fb1dd3bd0d55f0e7d854d7706 diff --git a/metadata/md5-cache/dev-python/flask-migrate-1.7.0 b/metadata/md5-cache/dev-python/flask-migrate-1.7.0 deleted file mode 100644 index 5970aa81ad23..000000000000 --- a/metadata/md5-cache/dev-python/flask-migrate-1.7.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/alembic[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/flask-sqlalchemy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/flask-script[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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_python2_7(-)] -DESCRIPTION=SQLAlchemy database migrations for Flask applications using Alembic -EAPI=5 -HOMEPAGE=https://pypi.python.org/pypi/Flask-Migrate -IUSE=test python_targets_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=BSD -RDEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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_python2_7(-)] -REQUIRED_USE=|| ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=mirror://pypi/F/Flask-Migrate/Flask-Migrate-1.7.0.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b676bdda301e658db59a90769843e254 diff --git a/metadata/md5-cache/dev-python/flask-migrate-2.0.0 b/metadata/md5-cache/dev-python/flask-migrate-2.0.0 new file mode 100644 index 000000000000..cae5cd438043 --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-migrate-2.0.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/flask-0.9[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/alembic-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-sqlalchemy-1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-script-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=SQLAlchemy database migrations for Flask applications using Alembic +EAPI=6 +HOMEPAGE=https://pypi.python.org/pypi/Flask-Migrate +IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/flask-0.9[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/alembic-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-sqlalchemy-1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-script-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/F/Flask-Migrate/Flask-Migrate-2.0.0.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=7abba0f70a9398ba609e8635595ea438 diff --git a/metadata/md5-cache/dev-python/flask-mongoengine-0.8 b/metadata/md5-cache/dev-python/flask-mongoengine-0.8 new file mode 100644 index 000000000000..96347abc1e9f --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-mongoengine-0.8 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Flask support for MongoDB and with WTF model forms +EAPI=6 +HOMEPAGE=https://pypi.python.org/pypi/flask-mongoengine/ +IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/flask-0.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/mongoengine-0.7.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/flask-wtf[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/f/flask-mongoengine/flask-mongoengine-0.8.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=0423020bdd4cfeefd84f965b01863a13 diff --git a/metadata/md5-cache/dev-python/flask-pymongo-0.4.1 b/metadata/md5-cache/dev-python/flask-pymongo-0.4.1 new file mode 100644 index 000000000000..228b73c87c93 --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-pymongo-0.4.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/flask-0.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pymongo-2.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] doc? ( dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=PyMongo support for Flask +EAPI=6 +HOMEPAGE=https://pypi.python.org/pypi/Flask-PyMongo +IUSE=doc examples python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/flask-0.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pymongo-2.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/dcrosta/flask-pymongo/archive/0.4.1.tar.gz -> flask-pymongo-0.4.1.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=a1a5e335d2067d7d3ff04750ca3cd0d6 diff --git a/metadata/md5-cache/dev-python/flask-script-2.0.5-r1 b/metadata/md5-cache/dev-python/flask-script-2.0.5-r1 new file mode 100644 index 000000000000..62acb18883cc --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-script-2.0.5-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/flask-0.10.1-r1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] doc? ( dev-python/sphinx[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) test? ( dev-python/pytest[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Flask support for writing external scripts +EAPI=6 +HOMEPAGE=http://packages.python.org/Flask-Script/ https://pypi.python.org/pypi/Flask-Script +IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/flask-0.10.1-r1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/F/Flask-Script/Flask-Script-2.0.5.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=feeeba29386997aab6cb66371745e458 diff --git a/metadata/md5-cache/dev-python/flask-security-1.7.5-r1 b/metadata/md5-cache/dev-python/flask-security-1.7.5-r1 new file mode 100644 index 000000000000..b5ffe4550993 --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-security-1.7.5-r1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/flask-0.9[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/itsdangerous-0.17[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/passlib-1.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-login-0.1.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-mail-0.7.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-wtf-0.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-principal-0.3.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/flask-sqlalchemy[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/flask-mongoengine[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/bcrypt[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/simplejson[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( dev-python/flask-peewee[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Simple security for Flask apps +EAPI=6 +HOMEPAGE=http://pythonhosted.org/Flask-Security/ https://pypi.python.org/pypi/Flask-Security +IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/flask-0.9[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/itsdangerous-0.17[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/passlib-1.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-login-0.1.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-mail-0.7.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-wtf-0.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/flask-principal-0.3.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/F/Flask-Security/Flask-Security-1.7.5.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=7dcc808ac6d036551839e94837cdbe9c diff --git a/metadata/md5-cache/dev-python/flask-sphinx-themes-1.0.1 b/metadata/md5-cache/dev-python/flask-sphinx-themes-1.0.1 new file mode 100644 index 000000000000..30f80a44943e --- /dev/null +++ b/metadata/md5-cache/dev-python/flask-sphinx-themes-1.0.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Sphinx Themes for Flask related projects and Flask itself +EAPI=6 +HOMEPAGE=https://github.com/pallets/flask-sphinx-themes https://pypi.python.org/pypi/Flask-Sphinx-Themes +IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=dev-python/sphinx[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/F/Flask-Sphinx-Themes/Flask-Sphinx-Themes-1.0.1.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=4337d5ad25fba8f6bc13997def231237 diff --git a/metadata/md5-cache/dev-python/funcsigs-1.0.2-r1 b/metadata/md5-cache/dev-python/funcsigs-1.0.2-r1 index 19ac449a87ca..3c2a8f6539ef 100644 --- a/metadata/md5-cache/dev-python/funcsigs-1.0.2-r1 +++ b/metadata/md5-cache/dev-python/funcsigs-1.0.2-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Python function signatures backport from PEP362 for Python 2.7-3.5 EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/funcsigs IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/f/funcsigs/funcsigs-1.0.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=1d7acdda22e49d13e1c6ce5c010035e2 +_md5_=92c7ef7d36b3c09183ddbb6cb8361733 diff --git a/metadata/md5-cache/dev-python/functools32-3.2.3 b/metadata/md5-cache/dev-python/functools32-3.2.3 index 21dfc8dff3de..34e7452855a3 100644 --- a/metadata/md5-cache/dev-python/functools32-3.2.3 +++ b/metadata/md5-cache/dev-python/functools32-3.2.3 @@ -4,11 +4,11 @@ DESCRIPTION=Backport of the functools module from Python 3 EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/functools32 https://github.com/MiCHiLU/python-functools32 IUSE=python_targets_pypy python_targets_python2_7 -KEYWORDS=alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux LICENSE=PSF-2.4 RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/f/functools32/functools32-3.2.3-2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=7134061fba48d047f71aee29557fdcf2 +_md5_=86e9bcea812bd5130a60098d46f2222d diff --git a/metadata/md5-cache/dev-python/future-0.15.2 b/metadata/md5-cache/dev-python/future-0.15.2 index 26b6bdb74d3a..3c5418fb1683 100644 --- a/metadata/md5-cache/dev-python/future-0.15.2 +++ b/metadata/md5-cache/dev-python/future-0.15.2 @@ -4,11 +4,11 @@ DESCRIPTION=Easy, clean, reliable Python 2/3 compatibility EAPI=6 HOMEPAGE=http://python-future.org/ IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~x86 +KEYWORDS=~alpha amd64 x86 LICENSE=MIT RDEPEND=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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/f/future/future-0.15.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b221aa08f4c20e4ed46d995547cd0cce +_md5_=e63387291c25fdd7cc980f6801626981 diff --git a/metadata/md5-cache/dev-python/geoalchemy2-0.3 b/metadata/md5-cache/dev-python/geoalchemy2-0.3 new file mode 100644 index 000000000000..2ac57a62a53b --- /dev/null +++ b/metadata/md5-cache/dev-python/geoalchemy2-0.3 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/sqlalchemy-0.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/shapely[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pytest[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Geospatial extension to SQLAlchemy with PostGIS support +EAPI=6 +HOMEPAGE=http://geoalchemy.org/ http://geoalchemy-2.readthedocs.org +IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/sqlalchemy-0.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/geoalchemy/geoalchemy2/archive/0.3.tar.gz -> geoalchemy2-0.3.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=516717550ab2322467a584006acad030 diff --git a/metadata/md5-cache/dev-python/glance_store-0.18.0 b/metadata/md5-cache/dev-python/glance_store-0.18.0 index 1098eb2fcdcf..a2a2c036c07c 100644 --- a/metadata/md5-cache/dev-python/glance_store-0.18.0 +++ b/metadata/md5-cache/dev-python/glance_store-0.18.0 @@ -4,11 +4,11 @@ DESCRIPTION=A library for glance EAPI=6 HOMEPAGE=https://github.com/openstack/glance_store IUSE=+cinder python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-enum34[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] cinder? ( >=dev-python/python-cinderclient-1.2.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/g/glance_store/glance_store-0.18.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=7a045d55241b035d0da65e4682908c11 +_md5_=3dcbca335efe1b7cbfa41b1c19e8dc8d diff --git a/metadata/md5-cache/dev-python/hypothesis-3.4.2 b/metadata/md5-cache/dev-python/hypothesis-3.4.2 deleted file mode 100644 index 41a3b8b1bd43..000000000000 --- a/metadata/md5-cache/dev-python/hypothesis-3.4.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst 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_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0=[threads(+)] ) python_targets_pypy3? ( virtual/pypy3: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -DESCRIPTION=A library for property based testing -EAPI=5 -HOMEPAGE=https://github.com/DRMacIver/hypothesis -IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 -LICENSE=MPL-2.0 -RDEPEND=python_targets_pypy? ( virtual/pypy:0=[threads(+)] ) python_targets_pypy3? ( virtual/pypy3: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) -SLOT=0 -SRC_URI=mirror://pypi/h/hypothesis/hypothesis-3.4.2.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=2b1132c8bbe6114834283d818746023f diff --git a/metadata/md5-cache/dev-python/hypothesis-3.5.3 b/metadata/md5-cache/dev-python/hypothesis-3.5.3 deleted file mode 100644 index a119dcb26b0a..000000000000 --- a/metadata/md5-cache/dev-python/hypothesis-3.5.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( dev-python/enum34[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/uncompyle6[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -DESCRIPTION=A library for property based testing -EAPI=5 -HOMEPAGE=https://github.com/DRMacIver/hypothesis https://pypi.python.org/pypi/hypothesis -IUSE=python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 -LICENSE=MPL-2.0 -RDEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_python2_7? ( dev-python/enum34[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/uncompyle6[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) -SLOT=0 -SRC_URI=mirror://pypi/h/hypothesis/hypothesis-3.5.3.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5a2294f87feeceb42f3d91a921b58014 diff --git a/metadata/md5-cache/dev-python/hypothesis-3.6.0-r1 b/metadata/md5-cache/dev-python/hypothesis-3.6.0-r1 new file mode 100644 index 000000000000..2f842f287687 --- /dev/null +++ b/metadata/md5-cache/dev-python/hypothesis-3.6.0-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=python_targets_python2_7? ( dev-python/enum34[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/setuptools[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0=[threads(+),sqlite] ) python_targets_pypy3? ( virtual/pypy3:0=[threads(+),sqlite] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+),sqlite] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+),sqlite] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+),sqlite] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=A library for property based testing +EAPI=6 +HOMEPAGE=https://github.com/DRMacIver/hypothesis https://pypi.python.org/pypi/hypothesis +IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 +LICENSE=MPL-2.0 +RDEPEND=python_targets_python2_7? ( dev-python/enum34[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_pypy? ( virtual/pypy:0=[threads(+),sqlite] ) python_targets_pypy3? ( virtual/pypy3:0=[threads(+),sqlite] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads(+),sqlite] ) python_targets_python3_4? ( dev-lang/python:3.4[threads(+),sqlite] ) python_targets_python3_5? ( dev-lang/python:3.5[threads(+),sqlite] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/h/hypothesis/hypothesis-3.6.0.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=6878788dbf2d51200402315a233c75d1 diff --git a/metadata/md5-cache/dev-python/icalendar-3.9.2 b/metadata/md5-cache/dev-python/icalendar-3.9.2 index 7cff32891c00..a5b7c8267135 100644 --- a/metadata/md5-cache/dev-python/icalendar-3.9.2 +++ b/metadata/md5-cache/dev-python/icalendar-3.9.2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/pytz[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] doc? ( dev-python/sphinx[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) test? ( dev-python/python-dateutil:0[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/pytest[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/coverage[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) python_targets_pypy? ( virtual/pypy:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] +DEPEND=dev-python/pytz[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] doc? ( dev-python/sphinx[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) test? ( dev-python/python-dateutil:0[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pytest[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/coverage[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] DESCRIPTION=Package used for parsing and generating iCalendar files (RFC 2445) EAPI=5 HOMEPAGE=https://github.com/collective/icalendar -IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_4 +IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 KEYWORDS=~amd64 ~x86 ~x86-fbsd LICENSE=BSD -RDEPEND=dev-python/pytz[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 ) +RDEPEND=dev-python/pytz[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/i/icalendar/icalendar-3.9.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=3b5fbb8d56e227e3c05bc4c9d67ceeda +_md5_=7f095062f61d1a6a4413179b698852e2 diff --git a/metadata/md5-cache/dev-python/iso8601-0.1.11 b/metadata/md5-cache/dev-python/iso8601-0.1.11 index 76937f9dabca..76a3c062f804 100644 --- a/metadata/md5-cache/dev-python/iso8601-0.1.11 +++ b/metadata/md5-cache/dev-python/iso8601-0.1.11 @@ -4,11 +4,11 @@ DESCRIPTION=Simple module to parse ISO 8601 dates EAPI=5 HOMEPAGE=https://code.google.com/p/pyiso8601/ https://pypi.python.org/pypi/iso8601 IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris LICENSE=MIT RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/i/iso8601/iso8601-0.1.11.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=f833f1132b1f38f6ca339c18de239e94 +_md5_=d3388ae063f123ecef6a4f7178ccab7d diff --git a/metadata/md5-cache/dev-python/jsonschema-2.5.1-r2 b/metadata/md5-cache/dev-python/jsonschema-2.5.1-r2 index 16ec91675732..409a3502b96a 100644 --- a/metadata/md5-cache/dev-python/jsonschema-2.5.1-r2 +++ b/metadata/md5-cache/dev-python/jsonschema-2.5.1-r2 @@ -4,11 +4,11 @@ DESCRIPTION=An implementation of JSON-Schema validation for Python EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/jsonschema https://github.com/Julian/jsonschema IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=dev-python/rfc3986[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/strict-rfc3339[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/webcolors[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( dev-python/functools32[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/functools32[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonschema/jsonschema-2.5.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=697819d5731067df336f23aa6378e962 +_md5_=476860fc858c483047562bb3a4589c56 diff --git a/metadata/md5-cache/dev-python/keystoneauth-2.12.2 b/metadata/md5-cache/dev-python/keystoneauth-2.12.2 index 63072113bd94..6f1b51a21a3a 100644 --- a/metadata/md5-cache/dev-python/keystoneauth-2.12.2 +++ b/metadata/md5-cache/dev-python/keystoneauth-2.12.2 @@ -4,11 +4,11 @@ DESCRIPTION=This package contains tools for authenticating to an OpenStack-based EAPI=6 HOMEPAGE=https://github.com/openstack/keystoneauth IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/positional-1.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/k/keystoneauth1/keystoneauth1-2.12.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=48a304312f8debe49121bb02ef8743df +_md5_=da2d0d5cbfcdcc3c0a60154b344fc6c9 diff --git a/metadata/md5-cache/dev-python/keystonemiddleware-4.9.0 b/metadata/md5-cache/dev-python/keystonemiddleware-4.9.0 index 2fd986eea149..574616d3e508 100644 --- a/metadata/md5-cache/dev-python/keystonemiddleware-4.9.0 +++ b/metadata/md5-cache/dev-python/keystonemiddleware-4.9.0 @@ -4,11 +4,11 @@ DESCRIPTION=A middleware for the OpenStack Keystone API EAPI=6 HOMEPAGE=https://github.com/openstack/keystonemiddleware IUSE=doc examples test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-context-2.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/positional-1.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pycadf-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/pycadf-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/k/keystonemiddleware/keystonemiddleware-4.9.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=95497ab95136855b380bb1a9ba3aea01 +_md5_=cc8beda750632ae3c760cbb7fc616297 diff --git a/metadata/md5-cache/dev-python/ldappool-2.0.0 b/metadata/md5-cache/dev-python/ldappool-2.0.0 index 27c32e42ac07..83d74ac39e51 100644 --- a/metadata/md5-cache/dev-python/ldappool-2.0.0 +++ b/metadata/md5-cache/dev-python/ldappool-2.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=A connection pool for python-ldap EAPI=5 HOMEPAGE=https://launchpad.net/oslo IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pyldap-2.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/l/ldappool/ldappool-2.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5db374b809dde067a502759fb2e816b6 +_md5_=b2c77d9748f65bd856a672cd89fe758d diff --git a/metadata/md5-cache/dev-python/louie-1.1-r1 b/metadata/md5-cache/dev-python/louie-1.1-r1 index 9ef7437c3471..b1af0f85020a 100644 --- a/metadata/md5-cache/dev-python/louie-1.1-r1 +++ b/metadata/md5-cache/dev-python/louie-1.1-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Signal dispatching mechanism for Python EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/Louie IUSE=test python_targets_python2_7 -KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=amd64 ~ppc ~ppc64 ~sparc 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_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/L/Louie/Louie-1.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=366fe9a7d18940305e4f9f85b3e3d95b +_md5_=4641693eb78dc8cdfaca3676a7476bd2 diff --git a/metadata/md5-cache/dev-python/microversion-parse-0.1.4 b/metadata/md5-cache/dev-python/microversion-parse-0.1.4 index 8c316eaa80eb..e1a30087474b 100644 --- a/metadata/md5-cache/dev-python/microversion-parse-0.1.4 +++ b/metadata/md5-cache/dev-python/microversion-parse-0.1.4 @@ -4,11 +4,11 @@ DESCRIPTION=A simple parser for OpenStack microversion headers EAPI=6 HOMEPAGE=https://github.com/openstack/microversion-parse IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/m/microversion_parse/microversion_parse-0.1.4.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=7b17e32467f444c17b8b01286a1df330 +_md5_=5263ac673c6a7cf2f40156208f8aea09 diff --git a/metadata/md5-cache/dev-python/mock-2.0.0 b/metadata/md5-cache/dev-python/mock-2.0.0 index 8e5f527c54ab..024f9a872515 100644 --- a/metadata/md5-cache/dev-python/mock-2.0.0 +++ b/metadata/md5-cache/dev-python/mock-2.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=Rolling backport of unittest.mock for all Pythons EAPI=6 HOMEPAGE=https://github.com/testing-cabal/mock IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos LICENSE=BSD RDEPEND=>=dev-python/pbr-1.3[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=virtual/python-funcsigs-1[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/m/mock/mock-2.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=efa73b440443e82e106126b42e1b2363 +_md5_=ca100019e159a320b594c3fa1e1f74f6 diff --git a/metadata/md5-cache/dev-python/msgpack-0.4.8 b/metadata/md5-cache/dev-python/msgpack-0.4.8 index fedd3258687d..7081907f4d63 100644 --- a/metadata/md5-cache/dev-python/msgpack-0.4.8 +++ b/metadata/md5-cache/dev-python/msgpack-0.4.8 @@ -4,11 +4,11 @@ DESCRIPTION=MessagePack (de)serializer for Python EAPI=6 HOMEPAGE=http://msgpack.org https://github.com/msgpack/msgpack-python/ https://pypi.python.org/pypi/msgpack-python/ IUSE=test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/m/msgpack-python/msgpack-python-0.4.8.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=7ff0e36a7f7c529e61998415661eede5 +_md5_=5ca93fc3b1e09828e84a49c0069396cc diff --git a/metadata/md5-cache/dev-python/netifaces-0.10.5 b/metadata/md5-cache/dev-python/netifaces-0.10.5 index 0e6fbc616bee..584c0dc91b6e 100644 --- a/metadata/md5-cache/dev-python/netifaces-0.10.5 +++ b/metadata/md5-cache/dev-python/netifaces-0.10.5 @@ -4,11 +4,11 @@ DESCRIPTION=Portable network interface information EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/netifaces/ http://alastairs-place.net/netifaces/ https://bitbucket.org/al45tair/netifaces IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/n/netifaces/netifaces-0.10.5.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=9a51db28b869e8a50e6923eee31e9275 +_md5_=ed15c706a9b5b29b32000dfd1231e8cc diff --git a/metadata/md5-cache/dev-python/neutron-lib-0.4.0 b/metadata/md5-cache/dev-python/neutron-lib-0.4.0 index e3932cc010c9..27e71a203a20 100644 --- a/metadata/md5-cache/dev-python/neutron-lib-0.4.0 +++ b/metadata/md5-cache/dev-python/neutron-lib-0.4.0 @@ -4,11 +4,11 @@ DESCRIPTION=Neutron shared routines and utilities. EAPI=6 HOMEPAGE=https://github.com/openstack/neutron-lib IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-1.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/n/neutron-lib/neutron-lib-0.4.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=da8356bd11ac6787cf527b79137306c8 +_md5_=05434fd00a976190b3bf2b9c8053ab26 diff --git a/metadata/md5-cache/dev-python/oauthlib-1.1.2 b/metadata/md5-cache/dev-python/oauthlib-1.1.2 index 4e45d726754f..2c0f245924d9 100644 --- a/metadata/md5-cache/dev-python/oauthlib-1.1.2 +++ b/metadata/md5-cache/dev-python/oauthlib-1.1.2 @@ -4,11 +4,11 @@ DESCRIPTION=Spec-compliant and thorough implementation of the OAuth request-sign EAPI=5 HOMEPAGE=https://github.com/idan/oauthlib https://pypi.python.org/pypi/oauthlib IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm ~arm64 ~x86 +KEYWORDS=amd64 ~arm ~arm64 x86 LICENSE=BSD RDEPEND=>=dev-python/pyjwt-1.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/blinker[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/cryptography[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-1.1.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=d0e45455ee335d12b10a139eea242314 +_md5_=de3fd515070533f9fc56c8821318b8a0 diff --git a/metadata/md5-cache/dev-python/openstacksdk-0.9.5 b/metadata/md5-cache/dev-python/openstacksdk-0.9.5 index d45d0fb665b1..ac3b8b523839 100644 --- a/metadata/md5-cache/dev-python/openstacksdk-0.9.5 +++ b/metadata/md5-cache/dev-python/openstacksdk-0.9.5 @@ -4,11 +4,11 @@ DESCRIPTION=A collection of libraries for building applications to work with Ope EAPI=6 HOMEPAGE=https://github.com/openstack/python-openstacksdk IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/os-client-config-1.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.19.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.19.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.20.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.20.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.21.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/openstacksdk/openstacksdk-0.9.5.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=2c04b2423b5331ceafaecba9b076f5a5 +_md5_=fae727295e5243b56f3845391693248e diff --git a/metadata/md5-cache/dev-python/os-brick-1.6.1 b/metadata/md5-cache/dev-python/os-brick-1.6.1 index 113907d25d19..71cf699f4ce4 100644 --- a/metadata/md5-cache/dev-python/os-brick-1.6.1 +++ b/metadata/md5-cache/dev-python/os-brick-1.6.1 @@ -4,11 +4,11 @@ DESCRIPTION=OpenStack Cinder brick library for managing local volume attaches EAPI=6 HOMEPAGE=https://github.com/openstack/cinder IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-privsep-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/castellan-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/os-win-0.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/os-brick/os-brick-1.6.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b1091761584f4d6f3be64ed5ac6bf5a7 +_md5_=840550fa1d10f10a7ddf3c1b316fafa3 diff --git a/metadata/md5-cache/dev-python/os-client-config-1.21.1 b/metadata/md5-cache/dev-python/os-client-config-1.21.1 index 57f0f7e412f4..d667275bebfd 100644 --- a/metadata/md5-cache/dev-python/os-client-config-1.21.1 +++ b/metadata/md5-cache/dev-python/os-client-config-1.21.1 @@ -4,11 +4,11 @@ DESCRIPTION=OpenStack Client Configuation Library EAPI=6 HOMEPAGE=http://www.openstack.org/ IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=dev-python/pbr[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/appdirs-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requestsexceptions-1.1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/os-client-config/os-client-config-1.21.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=98537a4dda2eb8197feee33320c49242 +_md5_=69d31189d7ebf8742f2fc67fdbc3ed16 diff --git a/metadata/md5-cache/dev-python/os-testr-0.8.0 b/metadata/md5-cache/dev-python/os-testr-0.8.0 index ed40443c6ee5..a04cd9a765e8 100644 --- a/metadata/md5-cache/dev-python/os-testr-0.8.0 +++ b/metadata/md5-cache/dev-python/os-testr-0.8.0 @@ -4,11 +4,11 @@ DESCRIPTION=A testr wrapper to provide functionality for OpenStack projects EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/os-testr https://github.com/openstack/os-testr IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/testrepository-0.0.18[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/subunit-0.0.18[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/testtools-1.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/os-testr/os-testr-0.8.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=dbf0f2a12a08413d76541ebe33b3c087 +_md5_=a2415651ca21ca3d3e1a53808b8943cd diff --git a/metadata/md5-cache/dev-python/os-vif-1.2.1 b/metadata/md5-cache/dev-python/os-vif-1.2.1 index 17c50eb473a2..56f7f494910b 100644 --- a/metadata/md5-cache/dev-python/os-vif-1.2.1 +++ b/metadata/md5-cache/dev-python/os-vif-1.2.1 @@ -4,11 +4,11 @@ DESCRIPTION=OpenStack Cinder brick library for managing local volume attaches EAPI=6 HOMEPAGE=https://github.com/openstack/os-vif IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/netaddr-0.7.12 !~dev-python/netaddr-0.7.16 >=dev-python/oslo-config-3.14.0 >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-privsep-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-versionedobjects-1.13.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/os_vif/os_vif-1.2.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=2802a3b6a8c59b22f87fec729c148b89 +_md5_=eec6e82503ebb35e8c5bd49c11e7f8a4 diff --git a/metadata/md5-cache/dev-python/os-win-1.2.1 b/metadata/md5-cache/dev-python/os-win-1.2.1 index 7d3f2c05ef9b..9470e134f062 100644 --- a/metadata/md5-cache/dev-python/os-win-1.2.1 +++ b/metadata/md5-cache/dev-python/os-win-1.2.1 @@ -4,11 +4,11 @@ DESCRIPTION=Windows / Hyper-V library for OpenStack projects. EAPI=6 HOMEPAGE=https://github.com/openstack/os-win IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/os-win/os-win-1.2.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=51736c9cb23c6581e4c2d2872b4fbf8a +_md5_=dda90e90a1f9da6811cdf627161fb029 diff --git a/metadata/md5-cache/dev-python/osc-lib-1.1.0 b/metadata/md5-cache/dev-python/osc-lib-1.1.0 index 04d0dd8cdfda..3950a5a06762 100644 --- a/metadata/md5-cache/dev-python/osc-lib-1.1.0 +++ b/metadata/md5-cache/dev-python/osc-lib-1.1.0 @@ -4,11 +4,11 @@ DESCRIPTION=A package of common support modules for writing OSC plugins. EAPI=6 HOMEPAGE=https://github.com/openstack/osc-lib IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cliff-1.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.17.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/os-client-config-1.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.19.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.19.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.20.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/simplejson-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/osc-lib/osc-lib-1.1.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=78e8dde469e9d2259be7111b9c650661 +_md5_=d4d0bf8f00ebe78d7297779bf4dd0b06 diff --git a/metadata/md5-cache/dev-python/oslo-cache-1.14.0 b/metadata/md5-cache/dev-python/oslo-cache-1.14.0 index 300156ecf070..5988a08c0715 100644 --- a/metadata/md5-cache/dev-python/oslo-cache-1.14.0 +++ b/metadata/md5-cache/dev-python/oslo-cache-1.14.0 @@ -4,11 +4,11 @@ DESCRIPTION=Oslo Caching around dogpile.cache EAPI=6 HOMEPAGE=https://launchpad.net/oslo IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/dogpile-cache-0.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.cache/oslo.cache-1.14.0.tar.gz -> oslo-cache-1.14.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=f3105a0b58bd0529ab14817e003111db +_md5_=2f52021d1018c92b2f2c131e7d0448ac diff --git a/metadata/md5-cache/dev-python/oslo-concurrency-3.14.0 b/metadata/md5-cache/dev-python/oslo-concurrency-3.14.0 index daea14dd7e70..539ffa38a0a2 100644 --- a/metadata/md5-cache/dev-python/oslo-concurrency-3.14.0 +++ b/metadata/md5-cache/dev-python/oslo-concurrency-3.14.0 @@ -4,11 +4,11 @@ DESCRIPTION=library for running multi-thread, multi-process applications EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.concurrency IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/Babel-1.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-enum34[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/fasteners-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.concurrency/oslo.concurrency-3.14.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=ec95f2e6725a8aba4099229cf02461a8 +_md5_=ee6720a2ea2173c126c5a7cf7d2a5016 diff --git a/metadata/md5-cache/dev-python/oslo-config-3.14.0 b/metadata/md5-cache/dev-python/oslo-config-3.14.0 index 86496b3654e4..48612690306b 100644 --- a/metadata/md5-cache/dev-python/oslo-config-3.14.0 +++ b/metadata/md5-cache/dev-python/oslo-config-3.14.0 @@ -4,11 +4,11 @@ DESCRIPTION=Oslo Configuration API EAPI=6 HOMEPAGE=https://launchpad.net/oslo IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/netaddr-0.7.12[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/rfc3986-0.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.config/oslo.config-3.14.0.tar.gz -> oslo-config-3.14.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=c3a2be00efa42c3dd17ec5da2f292d5e +_md5_=d02972547ad338ec359b540215c0bf23 diff --git a/metadata/md5-cache/dev-python/oslo-context-2.9.0 b/metadata/md5-cache/dev-python/oslo-context-2.9.0 index 5a7be677b2fb..f2a8b21864f6 100644 --- a/metadata/md5-cache/dev-python/oslo-context-2.9.0 +++ b/metadata/md5-cache/dev-python/oslo-context-2.9.0 @@ -4,11 +4,11 @@ DESCRIPTION=Helpers to maintain useful information about a request context EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.context IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/positional-1.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.context/oslo.context-2.9.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=f32d03dd78d38e46ccc41790517899b9 +_md5_=dbde101132a583a92cf99e522fdfb172 diff --git a/metadata/md5-cache/dev-python/oslo-db-4.13.3 b/metadata/md5-cache/dev-python/oslo-db-4.13.3 index ad5aa5bfad0f..066faeba453e 100644 --- a/metadata/md5-cache/dev-python/oslo-db-4.13.3 +++ b/metadata/md5-cache/dev-python/oslo-db-4.13.3 @@ -4,11 +4,11 @@ DESCRIPTION=OpenStack Common DB Code EAPI=6 HOMEPAGE=https://launchpad.net/oslo IUSE=+sqlite mysql postgres python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/alembic-0.8.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] sqlite? ( || ( >=dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.db/oslo.db-4.13.3.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=78dbe461ad3e2a718236ccdc9beda382 +_md5_=b602a95a86859d8ecba96ea0594a19fe diff --git a/metadata/md5-cache/dev-python/oslo-i18n-3.9.0 b/metadata/md5-cache/dev-python/oslo-i18n-3.9.0 index dfe452d8448b..ef3986f4e5e6 100644 --- a/metadata/md5-cache/dev-python/oslo-i18n-3.9.0 +++ b/metadata/md5-cache/dev-python/oslo-i18n-3.9.0 @@ -4,11 +4,11 @@ DESCRIPTION=Oslo i18n library EAPI=6 HOMEPAGE=https://launchpad.net/oslo IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.i18n/oslo.i18n-3.9.0.tar.gz -> oslo-i18n-3.9.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5ef9932e8602ff5c7d505895d9399459 +_md5_=7d7f7ef19cf4ca19790ef89f415be3b7 diff --git a/metadata/md5-cache/dev-python/oslo-log-3.16.0 b/metadata/md5-cache/dev-python/oslo-log-3.16.0 index e6b836156696..f11772e64d7b 100644 --- a/metadata/md5-cache/dev-python/oslo-log-3.16.0 +++ b/metadata/md5-cache/dev-python/oslo-log-3.16.0 @@ -4,11 +4,11 @@ DESCRIPTION=OpenStack logging config library, configuration for all openstack pr EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.log https://github.com/openstack/oslo.log IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-context-2.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyinotify-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-dateutil-2.4.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.log/oslo.log-3.16.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=659d00a8620e5bda80828c4a42cc3907 +_md5_=66771b9ef4ed4d3774242cde922795a4 diff --git a/metadata/md5-cache/dev-python/oslo-messaging-5.10.0 b/metadata/md5-cache/dev-python/oslo-messaging-5.10.0 index e73c6e955a4d..7a49cdf5411f 100644 --- a/metadata/md5-cache/dev-python/oslo-messaging-5.10.0 +++ b/metadata/md5-cache/dev-python/oslo-messaging-5.10.0 @@ -4,11 +4,11 @@ DESCRIPTION=Messaging API for RPC and notifications over different messaging tra EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.messaging IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/futurist-0.11.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/futurist-0.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/monotonic-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cachetools-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/py-amqp-1.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/kombu-3.0.25[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pika-0.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pika-pool-0.1.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-futures[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.messaging/oslo.messaging-5.10.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=07e4a0d231ed3e4e113619fe9db3f126 +_md5_=bc9310dd30b427d352fa39c847679103 diff --git a/metadata/md5-cache/dev-python/oslo-middleware-3.19.0 b/metadata/md5-cache/dev-python/oslo-middleware-3.19.0 index aeaa0f849b7f..76f2609d3c60 100644 --- a/metadata/md5-cache/dev-python/oslo-middleware-3.19.0 +++ b/metadata/md5-cache/dev-python/oslo-middleware-3.19.0 @@ -4,11 +4,11 @@ DESCRIPTION=Components injected into wsgi pipelines to intercept request/respons EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.middleware IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/jinja-2.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.middleware/oslo.middleware-3.19.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=6cac88023494b1a06e7969554b44556a +_md5_=2705b7fbf7b1ecf05a072db87a62d7e1 diff --git a/metadata/md5-cache/dev-python/oslo-policy-1.14.0 b/metadata/md5-cache/dev-python/oslo-policy-1.14.0 index 91f4a4cf010a..701de3947b37 100644 --- a/metadata/md5-cache/dev-python/oslo-policy-1.14.0 +++ b/metadata/md5-cache/dev-python/oslo-policy-1.14.0 @@ -4,11 +4,11 @@ DESCRIPTION=Provides support for RBAC policy enforcement across all OpenStack se EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.policy IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.policy/oslo.policy-1.14.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5570418360041dadf9ed308cba89db99 +_md5_=d2635ff451ca993819f16318f4d310c1 diff --git a/metadata/md5-cache/dev-python/oslo-privsep-1.13.0 b/metadata/md5-cache/dev-python/oslo-privsep-1.13.0 index 197081f126c6..f54e7e9252db 100644 --- a/metadata/md5-cache/dev-python/oslo-privsep-1.13.0 +++ b/metadata/md5-cache/dev-python/oslo-privsep-1.13.0 @@ -4,11 +4,11 @@ DESCRIPTION=OpenStack library for privilege separation. EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.privsep IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-enum34[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/cffi[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/msgpack-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.privsep/oslo.privsep-1.13.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=fb79bbc7fa93168d2651cb677687c84d +_md5_=b27ae3222f9adcb6cf988b55216a4081 diff --git a/metadata/md5-cache/dev-python/oslo-reports-1.14.0 b/metadata/md5-cache/dev-python/oslo-reports-1.14.0 index a0c6358bb031..3db2f11af594 100644 --- a/metadata/md5-cache/dev-python/oslo-reports-1.14.0 +++ b/metadata/md5-cache/dev-python/oslo-reports-1.14.0 @@ -4,11 +4,11 @@ DESCRIPTION=generified reports for openstack EAPI=6 HOMEPAGE=http://docs.openstack.org/developer/oslo.reports IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/jinja-2.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-1.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/psutil-1.1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.reports/oslo.reports-1.14.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=42be394347c2e35cabe96f0124e80621 +_md5_=451d348e6b8fb8a48b3b168149de8641 diff --git a/metadata/md5-cache/dev-python/oslo-rootwrap-5.1.1 b/metadata/md5-cache/dev-python/oslo-rootwrap-5.1.1 index a77f45b8c89a..5f6c08e25418 100644 --- a/metadata/md5-cache/dev-python/oslo-rootwrap-5.1.1 +++ b/metadata/md5-cache/dev-python/oslo-rootwrap-5.1.1 @@ -4,11 +4,11 @@ DESCRIPTION=Allows fine filtering of shell commands to run as root from OpenStac EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.config IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.rootwrap/oslo.rootwrap-5.1.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=638b84263c0ca7818db92a1dd6dce908 +_md5_=ccc1f4f4c9f8cad3404a474552569eff diff --git a/metadata/md5-cache/dev-python/oslo-serialization-2.13.0 b/metadata/md5-cache/dev-python/oslo-serialization-2.13.0 index de04c30ae8ce..138da27ee3f3 100644 --- a/metadata/md5-cache/dev-python/oslo-serialization-2.13.0 +++ b/metadata/md5-cache/dev-python/oslo-serialization-2.13.0 @@ -4,7 +4,7 @@ DESCRIPTION=Oslo Serialization library EAPI=6 HOMEPAGE=https://launchpad.net/oslo IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/msgpack-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pytz-2013.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/o/oslo.serialization/oslo.serialization-2.13.0.tar.gz -> oslo-serialization-2.13.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=369bcc47120dbbae8305e2dc6f1fbed5 +_md5_=7cfa069d91b0f5fcbb41449195677af4 diff --git a/metadata/md5-cache/dev-python/oslo-service-1.16.0 b/metadata/md5-cache/dev-python/oslo-service-1.16.0 index dbed8ef5133a..ff4dd10a83e7 100644 --- a/metadata/md5-cache/dev-python/oslo-service-1.16.0 +++ b/metadata/md5-cache/dev-python/oslo-service-1.16.0 @@ -4,11 +4,11 @@ DESCRIPTION=Library for running OpenStack services EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.service IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/monotonic-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/paste[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.service/oslo.service-1.16.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=a95d75ca2e622b1481d841be98bd7b16 +_md5_=5004a371819973b69f0568eb11fa0ccd diff --git a/metadata/md5-cache/dev-python/oslo-sphinx-4.7.0 b/metadata/md5-cache/dev-python/oslo-sphinx-4.7.0 index ab91749b0610..c0a0ec9b0ebb 100644 --- a/metadata/md5-cache/dev-python/oslo-sphinx-4.7.0 +++ b/metadata/md5-cache/dev-python/oslo-sphinx-4.7.0 @@ -4,11 +4,11 @@ DESCRIPTION=OpenStack Sphinx Extensions and Theme EAPI=6 HOMEPAGE=http://www.openstack.org/ IUSE=doc python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslosphinx/oslosphinx-4.7.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=8daf7117f83cf5ec8795195cdc101c36 +_md5_=0f2ce3132123551c9365c8c9de8db5cf diff --git a/metadata/md5-cache/dev-python/oslo-utils-3.16.0 b/metadata/md5-cache/dev-python/oslo-utils-3.16.0 index ee1c805c0551..ba8d79366868 100644 --- a/metadata/md5-cache/dev-python/oslo-utils-3.16.0 +++ b/metadata/md5-cache/dev-python/oslo-utils-3.16.0 @@ -4,11 +4,11 @@ DESCRIPTION=Oslo Utility library EAPI=6 HOMEPAGE=https://launchpad.net/oslo IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-funcsigs[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/monotonic-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pytz-2013.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/netaddr-0.7.12[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/netifaces-0.10.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyparsing-2.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.utils/oslo.utils-3.16.0.tar.gz -> oslo-utils-3.16.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 vcs-snapshot 2b65ecb2d0f91e4322c2ac8d673993bd xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=80aac93b681653e1cc81e5271e785f54 +_md5_=e6d43c018c343843bbf3deac31a41dee diff --git a/metadata/md5-cache/dev-python/oslo-versionedobjects-1.17.0 b/metadata/md5-cache/dev-python/oslo-versionedobjects-1.17.0 index 0955ef67c9d2..5504676b6b6a 100644 --- a/metadata/md5-cache/dev-python/oslo-versionedobjects-1.17.0 +++ b/metadata/md5-cache/dev-python/oslo-versionedobjects-1.17.0 @@ -4,11 +4,11 @@ DESCRIPTION=A library that provides a generic versioned and RPC-friendly object EAPI=6 HOMEPAGE=http://docs.openstack.org/developer/oslo.versionedobjects IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-context-2.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/webob-1.2.3-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/netaddr-0.7.12[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.versionedobjects/oslo.versionedobjects-1.17.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b717f40ee2e163277dfc3045365f96d6 +_md5_=8d3b1920cc0fd51279ef2d76a8235702 diff --git a/metadata/md5-cache/dev-python/oslo-vmware-2.14.0 b/metadata/md5-cache/dev-python/oslo-vmware-2.14.0 index cdb44c7bbfef..88b46434ea1b 100644 --- a/metadata/md5-cache/dev-python/oslo-vmware-2.14.0 +++ b/metadata/md5-cache/dev-python/oslo-vmware-2.14.0 @@ -4,11 +4,11 @@ DESCRIPTION=Oslo VMware library for OpenStack projects EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/oslo.vmware IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/netaddr-0.7.12[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/suds-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/urllib3-1.15.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.vmware/oslo.vmware-2.14.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=65895208303d579184b706a21a4ef7f9 +_md5_=c40cc41744d78f8ada29ad987ebd2f44 diff --git a/metadata/md5-cache/dev-python/osprofiler-1.4.0 b/metadata/md5-cache/dev-python/osprofiler-1.4.0 index e7b86d374e1c..07d00ef3572a 100644 --- a/metadata/md5-cache/dev-python/osprofiler-1.4.0 +++ b/metadata/md5-cache/dev-python/osprofiler-1.4.0 @@ -4,11 +4,11 @@ DESCRIPTION=OpenStack Profiler Library EAPI=5 HOMEPAGE=https://launchpad.net/osprofiler IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/osprofiler/osprofiler-1.4.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=6110b3af41ac52a130abac76bca46250 +_md5_=f3a7d581231e58305a8fc9324ea40115 diff --git a/metadata/md5-cache/dev-python/ovs-2.6.0 b/metadata/md5-cache/dev-python/ovs-2.6.0 index ae81abdfee4b..9554528c0d3d 100644 --- a/metadata/md5-cache/dev-python/ovs-2.6.0 +++ b/metadata/md5-cache/dev-python/ovs-2.6.0 @@ -4,11 +4,11 @@ DESCRIPTION=OVS bindings for python. EAPI=6 HOMEPAGE=https://github.com/openvswitch/ovs/ IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/o/ovs/ovs-2.6.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=adf1b91b5baa6cbaa2f8f1ea6c8b070b +_md5_=96fc0f86e62ad59b797073c37c999e00 diff --git a/metadata/md5-cache/dev-python/paramiko-2.0.2 b/metadata/md5-cache/dev-python/paramiko-2.0.2 index fdf2e55e9d52..c737aabac724 100644 --- a/metadata/md5-cache/dev-python/paramiko-2.0.2 +++ b/metadata/md5-cache/dev-python/paramiko-2.0.2 @@ -4,11 +4,11 @@ DESCRIPTION=SSH2 protocol library EAPI=6 HOMEPAGE=http://www.paramiko.org/ https://github.com/paramiko/paramiko/ https://pypi.python.org/pypi/paramiko/ IUSE=doc examples python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris LICENSE=LGPL-2.1 RDEPEND=>=dev-python/cryptography-1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyasn1-0.1.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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(+)] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/paramiko/paramiko-2.0.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=32ad07713afc6041d799f543dc5bdfc3 +_md5_=cfdc573d48d3065e1d8905d59a107dec diff --git a/metadata/md5-cache/dev-python/paste-2.0.3 b/metadata/md5-cache/dev-python/paste-2.0.3 index 3419b2d89233..8ef33d6f4245 100644 --- a/metadata/md5-cache/dev-python/paste-2.0.3 +++ b/metadata/md5-cache/dev-python/paste-2.0.3 @@ -4,11 +4,11 @@ DESCRIPTION=Tools for using a Web Server Gateway Interface stack EAPI=6 HOMEPAGE=http://pythonpaste.org https://pypi.python.org/pypi/Paste IUSE=doc flup openid python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~ppc ~ppc64 ~x86 ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris +KEYWORDS=amd64 ~arm64 ~ppc ~ppc64 x86 ~x86-interix ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris LICENSE=MIT RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/tempita-0.5.2_pre20130828[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] flup? ( dev-python/flup[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) openid? ( dev-python/python-openid[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/P/Paste/Paste-2.0.3.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=29513b4c817250a43a500287313e9d68 +_md5_=fd78e2347f033a4d231e1d45b221542b diff --git a/metadata/md5-cache/dev-python/pecan-1.1.2 b/metadata/md5-cache/dev-python/pecan-1.1.2 index c15c3407377a..8354a2e9df32 100644 --- a/metadata/md5-cache/dev-python/pecan-1.1.2 +++ b/metadata/md5-cache/dev-python/pecan-1.1.2 @@ -4,11 +4,11 @@ DESCRIPTION=A WSGI object-dispatching web framework, lean, fast, with few depend EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/pecan IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=BSD RDEPEND=>=dev-python/simplejson-2.1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-singledispatch[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/ordereddict[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/mako-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/webtest-1.3.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/logutils-0.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/pecan/pecan-1.1.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b508dc56a7bd698ed1750fba7f8648d8 +_md5_=211314424eb7f938c4db30cda997ca21 diff --git a/metadata/md5-cache/dev-python/positional-1.1.1 b/metadata/md5-cache/dev-python/positional-1.1.1 index 2480be32a988..e1037ea1b0ed 100644 --- a/metadata/md5-cache/dev-python/positional-1.1.1 +++ b/metadata/md5-cache/dev-python/positional-1.1.1 @@ -4,11 +4,11 @@ DESCRIPTION=A decorator which enforces only some args may be passed positionally EAPI=6 HOMEPAGE=https://github.com/morganfainberg/positional IUSE=python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/wrapt[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/positional/positional-1.1.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=cc34329a0b1eac58a6d7631a5d26cd81 +_md5_=bd8a2075f97491a760569cafe416036c diff --git a/metadata/md5-cache/dev-python/psycopg-2.6.2 b/metadata/md5-cache/dev-python/psycopg-2.6.2 index 201e72bca9c9..3d5b65c1e705 100644 --- a/metadata/md5-cache/dev-python/psycopg-2.6.2 +++ b/metadata/md5-cache/dev-python/psycopg-2.6.2 @@ -4,7 +4,7 @@ DESCRIPTION=PostgreSQL database adapter for Python EAPI=5 HOMEPAGE=http://initd.org/psycopg/ https://pypi.python.org/pypi/psycopg2 IUSE=debug doc examples python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris LICENSE=LGPL-3+ RDEPEND=>=dev-db/postgresql-8.1 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=2 SRC_URI=mirror://pypi/p/psycopg2/psycopg2-2.6.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=399ab113c1451d46f598324e5406c46b +_md5_=664609c25088822acd84e10eb633dd16 diff --git a/metadata/md5-cache/dev-python/pycadf-2.4.0 b/metadata/md5-cache/dev-python/pycadf-2.4.0 index 7ceca44fd26d..f3b20f53d93b 100644 --- a/metadata/md5-cache/dev-python/pycadf-2.4.0 +++ b/metadata/md5-cache/dev-python/pycadf-2.4.0 @@ -4,11 +4,11 @@ DESCRIPTION=python implementation of DMTF Cloud Audit (CADF) data model EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/pycadf IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pytz-2013.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/pycadf/pycadf-2.4.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b113f476a3f107be3b2f597c323ae2e0 +_md5_=adc39be6064d516b6da57e711c802182 diff --git a/metadata/md5-cache/dev-python/pygit2-0.20.3 b/metadata/md5-cache/dev-python/pygit2-0.20.3 deleted file mode 100644 index dbfea5bbe198..000000000000 --- a/metadata/md5-cache/dev-python/pygit2-0.20.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libgit2-0.20* python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=Python bindings for libgit2 -EAPI=5 -HOMEPAGE=https://github.com/libgit2/pygit2 -IUSE=python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2-with-linking-exception -RDEPEND==dev-libs/libgit2-0.20* python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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://github.com/libgit2/pygit2/archive/v0.20.3.tar.gz -> pygit2-0.20.3.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=699a34d18055581d928579f923f1de1b diff --git a/metadata/md5-cache/dev-python/pygit2-0.21.4-r1 b/metadata/md5-cache/dev-python/pygit2-0.21.4-r1 deleted file mode 100644 index 35cd377575cc..000000000000 --- a/metadata/md5-cache/dev-python/pygit2-0.21.4-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libgit2-0.21* dev-python/cffi:=[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=Python bindings for libgit2 -EAPI=5 -HOMEPAGE=https://github.com/libgit2/pygit2 -IUSE=python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2-with-linking-exception -RDEPEND==dev-libs/libgit2-0.21* dev-python/cffi:=[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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://github.com/libgit2/pygit2/archive/v0.21.4.tar.gz -> pygit2-0.21.4.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=96c5de920b4dbdef7678adfdd053f9ec diff --git a/metadata/md5-cache/dev-python/pygit2-0.22.1 b/metadata/md5-cache/dev-python/pygit2-0.22.1 deleted file mode 100644 index cdf78cf9f660..000000000000 --- a/metadata/md5-cache/dev-python/pygit2-0.22.1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libgit2-0.22* dev-python/cffi:=[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=Python bindings for libgit2 -EAPI=5 -HOMEPAGE=https://github.com/libgit2/pygit2 -IUSE=python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2-with-linking-exception -RDEPEND==dev-libs/libgit2-0.22* dev-python/cffi:=[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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 ) -RESTRICT=test -SLOT=0 -SRC_URI=https://github.com/libgit2/pygit2/archive/v0.22.1.tar.gz -> pygit2-0.22.1.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=c7baee9faf7ef0c0a53d819790ff8b80 diff --git a/metadata/md5-cache/dev-python/pygit2-0.23.3 b/metadata/md5-cache/dev-python/pygit2-0.23.3 deleted file mode 100644 index 593185fade55..000000000000 --- a/metadata/md5-cache/dev-python/pygit2-0.23.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libgit2-0.23* >=dev-python/cffi-1.0:=[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] -DESCRIPTION=Python bindings for libgit2 -EAPI=5 -HOMEPAGE=https://github.com/libgit2/pygit2 https://pypi.python.org/pypi/pygit2 -IUSE=python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2-with-linking-exception -RDEPEND==dev-libs/libgit2-0.23* >=dev-python/cffi-1.0:=[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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=mirror://pypi/p/pygit2/pygit2-0.23.3.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=e2a1d8367004ca1068d7e32945db83a9 diff --git a/metadata/md5-cache/dev-python/pygit2-0.24.1 b/metadata/md5-cache/dev-python/pygit2-0.24.1 deleted file mode 100644 index 0dfd37a0a382..000000000000 --- a/metadata/md5-cache/dev-python/pygit2-0.24.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND==dev-libs/libgit2-0.24* >=dev-python/cffi-1.0:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -DESCRIPTION=Python bindings for libgit2 -EAPI=6 -HOMEPAGE=https://github.com/libgit2/pygit2 https://pypi.python.org/pypi/pygit2 -IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2-with-linking-exception -RDEPEND==dev-libs/libgit2-0.24* >=dev-python/cffi-1.0:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] -REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) -SLOT=0 -SRC_URI=mirror://pypi/p/pygit2/pygit2-0.24.1.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5b7e47ad85489e4a6da4563ea32ffa42 diff --git a/metadata/md5-cache/dev-python/pyldap-2.4.25.1 b/metadata/md5-cache/dev-python/pyldap-2.4.25.1 index 1007cf42c5b6..80979cb79b1b 100644 --- a/metadata/md5-cache/dev-python/pyldap-2.4.25.1 +++ b/metadata/md5-cache/dev-python/pyldap-2.4.25.1 @@ -4,11 +4,11 @@ DESCRIPTION=Various LDAP-related Python modules EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/pyldap https://github.com/pyldap/pyldap/ IUSE=doc examples sasl ssl python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-solaris +KEYWORDS=~alpha amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~x86-solaris LICENSE=PSF-2 RDEPEND=>net-nds/openldap-2.4.11 dev-python/pyasn1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyasn1-modules[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] sasl? ( >=dev-libs/cyrus-sasl-2.1 ) !dev-python/python-ldap python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/pyldap/pyldap-2.4.25.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=4e9cd8dc8f09f6a65ee70daee907228c +_md5_=01b39c7f4f6d404e3c8bfcd01d634b57 diff --git a/metadata/md5-cache/dev-python/pymongo-3.3.0 b/metadata/md5-cache/dev-python/pymongo-3.3.0 index 6433c224c424..7919423fc878 100644 --- a/metadata/md5-cache/dev-python/pymongo-3.3.0 +++ b/metadata/md5-cache/dev-python/pymongo-3.3.0 @@ -4,11 +4,11 @@ DESCRIPTION=Python driver for MongoDB EAPI=6 HOMEPAGE=https://github.com/mongodb/mongo-python-driver https://pypi.python.org/pypi/pymongo IUSE=doc kerberos test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~hppa ~x86 +KEYWORDS=amd64 ~hppa x86 LICENSE=Apache-2.0 RDEPEND=kerberos? ( dev-python/pykerberos[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/pymongo/pymongo-3.3.0.tar.gz _eclasses_=check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=742182dcff7d68fb241567f1cd29dda7 +_md5_=22036703efe1a79af93fea2cc2da9c7c diff --git a/metadata/md5-cache/dev-python/pymysql-0.7.6 b/metadata/md5-cache/dev-python/pymysql-0.7.6 index 380c4a7dd917..bc37dd8871f8 100644 --- a/metadata/md5-cache/dev-python/pymysql-0.7.6 +++ b/metadata/md5-cache/dev-python/pymysql-0.7.6 @@ -4,7 +4,7 @@ DESCRIPTION=Pure-Python MySQL Driver EAPI=6 HOMEPAGE=https://github.com/PyMySQL/PyMySQL IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=MIT RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=https://github.com/PyMySQL/PyMySQL/archive/0.7.6.tar.gz -> pymysql-0.7.6.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=aa9a3b190911d98395ec2da66f5960e7 +_md5_=b5c3fcb878b75b61ee5f63b1af73e9d4 diff --git a/metadata/md5-cache/dev-python/pyopenssl-16.1.0 b/metadata/md5-cache/dev-python/pyopenssl-16.1.0 index ab80ba8af440..8cdd3d578ae4 100644 --- a/metadata/md5-cache/dev-python/pyopenssl-16.1.0 +++ b/metadata/md5-cache/dev-python/pyopenssl-16.1.0 @@ -4,7 +4,7 @@ DESCRIPTION=Python interface to the OpenSSL library EAPI=5 HOMEPAGE=http://pyopenssl.sourceforge.net/ https://launchpad.net/pyopenssl https://pypi.python.org/pypi/pyOpenSSL IUSE=doc examples python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris LICENSE=Apache-2.0 RDEPEND=>=dev-python/six-1.5.2[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cryptography-1.3[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pyOpenSSL/pyOpenSSL-16.1.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=c35f5841e0a4053bf340f148f41404be +_md5_=8670e0705047897e7954ad88bfbabde8 diff --git a/metadata/md5-cache/dev-python/pyparsing-2.1.8 b/metadata/md5-cache/dev-python/pyparsing-2.1.8 index deb04ba44d8c..94128c463c67 100644 --- a/metadata/md5-cache/dev-python/pyparsing-2.1.8 +++ b/metadata/md5-cache/dev-python/pyparsing-2.1.8 @@ -4,7 +4,7 @@ DESCRIPTION=Easy-to-use Python module for text parsing EAPI=6 HOMEPAGE=http://pyparsing.wikispaces.com/ https://pypi.python.org/pypi/pyparsing IUSE=doc examples python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~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 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~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=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pyparsing/pyparsing-2.1.8.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=4992ed5c28c6c814dbbae07b4276f5cb +_md5_=cbaf56b1ecf6085eefe9ffc4be3282c6 diff --git a/metadata/md5-cache/dev-python/pysaml2-4.0.2 b/metadata/md5-cache/dev-python/pysaml2-4.0.2 index 18c0a98916e5..400bda3ebc32 100644 --- a/metadata/md5-cache/dev-python/pysaml2-4.0.2 +++ b/metadata/md5-cache/dev-python/pysaml2-4.0.2 @@ -4,11 +4,11 @@ DESCRIPTION=Python implementation of SAML Version 2 to be used in a WSGI environ EAPI=5 HOMEPAGE=https://github.com/rohe/pysaml2 IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=dev-python/decorator[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-1.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/future[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/paste[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/zope-interface[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/repoze-who[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pycrypto-2.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pytz[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyopenssl[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/python-dateutil[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/pysaml2/pysaml2-4.0.2.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0992684d6ae4fe5e3ffeecaf27f11a6d +_md5_=c1ecfb6ebbdac875c33c7f095e1ad7fe diff --git a/metadata/md5-cache/dev-python/pytest-3.0.3 b/metadata/md5-cache/dev-python/pytest-3.0.3 index 6e7ec788bba5..e1b86cc251a4 100644 --- a/metadata/md5-cache/dev-python/pytest-3.0.3 +++ b/metadata/md5-cache/dev-python/pytest-3.0.3 @@ -4,11 +4,11 @@ DESCRIPTION=Simple powerful testing with Python EAPI=5 HOMEPAGE=http://pytest.org/ https://pypi.python.org/pypi/pytest IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=>=dev-python/py-1.4.29[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] doc? ( dev-python/pyyaml[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/sphinx[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) !dev-python/logilab-common python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest/pytest-3.0.3.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=09de3d3826665154fa35a14dbc623c3f +_md5_=76ea385324a5be51fb307db69577652a diff --git a/metadata/md5-cache/dev-python/pytest-capturelog-0.7 b/metadata/md5-cache/dev-python/pytest-capturelog-0.7 index ec1737647fbe..aa7142539174 100644 --- a/metadata/md5-cache/dev-python/pytest-capturelog-0.7 +++ b/metadata/md5-cache/dev-python/pytest-capturelog-0.7 @@ -4,7 +4,7 @@ DESCRIPTION=py.test plugin to capture log messages EAPI=5 HOMEPAGE=https://bitbucket.org/memedough/pytest-capturelog/overview IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc x86 LICENSE=MIT RDEPEND=dev-python/py[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pytest-capturelog/pytest-capturelog-0.7.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5bb7093dea91e2c08d7994e213aa4153 +_md5_=d86f2f3cbb90a671b50486b4c2cd456a diff --git a/metadata/md5-cache/dev-python/pytest-xdist-1.15.0 b/metadata/md5-cache/dev-python/pytest-xdist-1.15.0 index 5ebfaf28b220..f96c4d1e5c1c 100644 --- a/metadata/md5-cache/dev-python/pytest-xdist-1.15.0 +++ b/metadata/md5-cache/dev-python/pytest-xdist-1.15.0 @@ -4,11 +4,11 @@ DESCRIPTION=Distributed testing and loop-on-failing modes EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/pytest-xdist https://github.com/pytest-dev/pytest-xdist2 IUSE=test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=>=dev-python/execnet-1.1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pytest-2.4.2[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/py-1.4.22[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-xdist/pytest-xdist-1.15.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=ea8134ff0850c4037dac270a799f1c14 +_md5_=8cbec3fcc36d34f1b9dd2dd0cad0aba0 diff --git a/metadata/md5-cache/dev-python/python-barbicanclient-4.0.1 b/metadata/md5-cache/dev-python/python-barbicanclient-4.0.1 index 392d7dbde486..63d8c17e21c9 100644 --- a/metadata/md5-cache/dev-python/python-barbicanclient-4.0.1 +++ b/metadata/md5-cache/dev-python/python-barbicanclient-4.0.1 @@ -4,11 +4,11 @@ DESCRIPTION=Client library for Barbican API. EAPI=6 HOMEPAGE=https://github.com/openstack/barbican IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cliff-1.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.17.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-barbicanclient/python-barbicanclient-4.0.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=2c48e340db258b5771c51dae73d975ae +_md5_=b014107f96f70ea4b564a7b3c1831962 diff --git a/metadata/md5-cache/dev-python/python-ceilometerclient-2.6.1 b/metadata/md5-cache/dev-python/python-ceilometerclient-2.6.1 index 019b5351c291..19876596b3b0 100644 --- a/metadata/md5-cache/dev-python/python-ceilometerclient-2.6.1 +++ b/metadata/md5-cache/dev-python/python-ceilometerclient-2.6.1 @@ -4,11 +4,11 @@ DESCRIPTION=This is a client library for Ceilometer built on the Ceilometer API EAPI=6 HOMEPAGE=https://github.com/openstack/python-ceilometerclient IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.1.0 >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-ceilometerclient/python-ceilometerclient-2.6.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=c61f006aa5afb2bfb086fef5cef031f0 +_md5_=5999b6dd073756a5cf0482562f8efb62 diff --git a/metadata/md5-cache/dev-python/python-cinderclient-1.9.0 b/metadata/md5-cache/dev-python/python-cinderclient-1.9.0 index 93d7eba6de39..8a69da044b5d 100644 --- a/metadata/md5-cache/dev-python/python-cinderclient-1.9.0 +++ b/metadata/md5-cache/dev-python/python-cinderclient-1.9.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Cinder API EAPI=6 HOMEPAGE=https://launchpad.net/python-cinderclient IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/simplejson-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-cinderclient/python-cinderclient-1.9.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=6342af8ff2c5691c357120b6395ffa7f +_md5_=d491557b297d0985efa3eaa627ade673 diff --git a/metadata/md5-cache/dev-python/python-debian-0.1.28 b/metadata/md5-cache/dev-python/python-debian-0.1.28 index 837e61ce63b6..250a060411f1 100644 --- a/metadata/md5-cache/dev-python/python-debian-0.1.28 +++ b/metadata/md5-cache/dev-python/python-debian-0.1.28 @@ -4,7 +4,7 @@ DESCRIPTION=Python modules to work with Debian-related data formats EAPI=6 HOMEPAGE=http://packages.debian.org/sid/python-debian IUSE=test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 GPL-3 RDEPEND=dev-python/chardet[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://debian/pool/main/p/python-debian/python-debian_0.1.28.tar.xz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=a497624fa1f6ff9661f0b59ae85ac362 +_md5_=85a05d7f4e9b9be5c6a99ea3a855263d diff --git a/metadata/md5-cache/dev-python/python-designateclient-2.3.0 b/metadata/md5-cache/dev-python/python-designateclient-2.3.0 index bce13c8c5ca9..932ce03c3d63 100644 --- a/metadata/md5-cache/dev-python/python-designateclient-2.3.0 +++ b/metadata/md5-cache/dev-python/python-designateclient-2.3.0 @@ -4,11 +4,11 @@ DESCRIPTION=Python bindings to the Designate API. EAPI=6 HOMEPAGE=https://github.com/openstack/python-designateclient IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cliff-1.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.17.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-designateclient/python-designateclient-2.3.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0923b4d8241733e758c6713d82a9d9b5 +_md5_=da2db95625a4156fcfc69505cc1f8d37 diff --git a/metadata/md5-cache/dev-python/python-glanceclient-2.5.0 b/metadata/md5-cache/dev-python/python-glanceclient-2.5.0 index ade46e54b26a..20b8c7aff70e 100644 --- a/metadata/md5-cache/dev-python/python-glanceclient-2.5.0 +++ b/metadata/md5-cache/dev-python/python-glanceclient-2.5.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Glance API EAPI=6 HOMEPAGE=https://github.com/openstack/python-glanceclient IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/warlock-1.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/warlock-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=test? ( doc ) || ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-glanceclient/python-glanceclient-2.5.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=ba7713fc33f5ef745ebe6b612d6e8f86 +_md5_=883a37194c53989b8ee7aa049e724cae diff --git a/metadata/md5-cache/dev-python/python-heatclient-1.5.0 b/metadata/md5-cache/dev-python/python-heatclient-1.5.0 index 674f7ccf00b2..69df6248ccac 100644 --- a/metadata/md5-cache/dev-python/python-heatclient-1.5.0 +++ b/metadata/md5-cache/dev-python/python-heatclient-1.5.0 @@ -4,11 +4,11 @@ DESCRIPTION=OpenStack Orchestration API Client Library EAPI=6 HOMEPAGE=http://www.openstack.org/ IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cliff-1.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.17.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/osc-lib-1.0.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-swiftclient-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-heatclient/python-heatclient-1.5.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=942a3c828f3c758015512af20361de25 +_md5_=af947696ff4d57cab956f59a8e19d623 diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-3.5.0 b/metadata/md5-cache/dev-python/python-keystoneclient-3.5.0 index f57775354f2d..0547e280f2cf 100644 --- a/metadata/md5-cache/dev-python/python-keystoneclient-3.5.0 +++ b/metadata/md5-cache/dev-python/python-keystoneclient-3.5.0 @@ -4,7 +4,7 @@ DESCRIPTION=Client Library for OpenStack Identity EAPI=6 HOMEPAGE=http://www.openstack.org/ IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/positional-1.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-keystoneclient/python-keystoneclient-3.5.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5ef6147883eff403adcbf0a47c7797c8 +_md5_=fae76aa4fa92a9a0c9eec105fdc16f5f diff --git a/metadata/md5-cache/dev-python/python-magnumclient-2.3.0 b/metadata/md5-cache/dev-python/python-magnumclient-2.3.1 similarity index 98% rename from metadata/md5-cache/dev-python/python-magnumclient-2.3.0 rename to metadata/md5-cache/dev-python/python-magnumclient-2.3.1 index d26744551058..c12c52da6934 100644 --- a/metadata/md5-cache/dev-python/python-magnumclient-2.3.0 +++ b/metadata/md5-cache/dev-python/python-magnumclient-2.3.1 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Magnum API EAPI=6 HOMEPAGE=https://github.com/openstack/python-magnumclient IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/os-client-config-1.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.19.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.19.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.20.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.20.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.21.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/cryptography-1.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/decorator-3.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 -SRC_URI=mirror://pypi/p/python-magnumclient/python-magnumclient-2.3.0.tar.gz +SRC_URI=mirror://pypi/p/python-magnumclient/python-magnumclient-2.3.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=90ecc3c33e194bd98b0013955aa9faf4 +_md5_=d6b57ff2aa5b44fae03a9df1eca38ee2 diff --git a/metadata/md5-cache/dev-python/python-manilaclient-1.11.0 b/metadata/md5-cache/dev-python/python-manilaclient-1.11.0 index 3cb7985cb80a..7ddc1ead7ead 100644 --- a/metadata/md5-cache/dev-python/python-manilaclient-1.11.0 +++ b/metadata/md5-cache/dev-python/python-manilaclient-1.11.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Manila API EAPI=6 HOMEPAGE=https://github.com/openstack/python-manilaclient IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/simplejson-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-manilaclient/python-manilaclient-1.11.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=bc6a23adf2e504c6247abeadfbf0c4af +_md5_=272f6b06752fe3fc14ddbf6ea99c9a8c diff --git a/metadata/md5-cache/dev-python/python-memcached-1.58 b/metadata/md5-cache/dev-python/python-memcached-1.58 index cb6d44d16be2..010406bbe340 100644 --- a/metadata/md5-cache/dev-python/python-memcached-1.58 +++ b/metadata/md5-cache/dev-python/python-memcached-1.58 @@ -4,7 +4,7 @@ DESCRIPTION=Pure python memcached client EAPI=5 HOMEPAGE=http://www.tummy.com/Community/software/python-memcached/ https://pypi.python.org/pypi/python-memcached IUSE=test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +KEYWORDS=amd64 ~arm64 ~ppc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=OSL-2.0 RDEPEND=dev-python/six[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-memcached/python-memcached-1.58.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=403ba49cdcd31ea517a6358d221a9533 +_md5_=b45781a877eebda78514ac9cf490bce7 diff --git a/metadata/md5-cache/dev-python/python-mistralclient-2.1.1 b/metadata/md5-cache/dev-python/python-mistralclient-2.1.1 index 02dd3ef6f1e1..9f909bb20bbd 100644 --- a/metadata/md5-cache/dev-python/python-mistralclient-2.1.1 +++ b/metadata/md5-cache/dev-python/python-mistralclient-2.1.1 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Mistral API EAPI=6 HOMEPAGE=https://github.com/openstack/python-mistralclient IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cliff-1.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.17.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/osc-lib-1.0.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-mistralclient/python-mistralclient-2.1.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=fffb27c7cf7abce373ee3432137185a4 +_md5_=017abbe1d9fd29856965be21b1b30289 diff --git a/metadata/md5-cache/dev-python/python-monascaclient-1.2.0 b/metadata/md5-cache/dev-python/python-monascaclient-1.2.0 index ff9411a263ab..3fc4d872645e 100644 --- a/metadata/md5-cache/dev-python/python-monascaclient-1.2.0 +++ b/metadata/md5-cache/dev-python/python-monascaclient-1.2.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Monasca API EAPI=6 HOMEPAGE=https://github.com/openstack/python-monascaclient IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-config-3.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-concurrency-3.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-service-1.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-monascaclient/python-monascaclient-1.2.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=4fe553958a0d4cb7bbb957e8bb262dc4 +_md5_=7853a0b5d69176d1574d23876fcf188f diff --git a/metadata/md5-cache/dev-python/python-neutronclient-6.0.0 b/metadata/md5-cache/dev-python/python-neutronclient-6.0.0 index 9304c31a9381..4706f9af9ca7 100644 --- a/metadata/md5-cache/dev-python/python-neutronclient-6.0.0 +++ b/metadata/md5-cache/dev-python/python-neutronclient-6.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Quantum API EAPI=6 HOMEPAGE=https://launchpad.net/neutron IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cliff-1.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.17.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/netaddr-0.7.12[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/osc-lib-1.0.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/os-client-config-1.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.19.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.19.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.20.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.20.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/os-client-config-1.21.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/simplejson-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=test? ( doc ) || ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-neutronclient/python-neutronclient-6.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=08710a35ebef778df1aa0016482cc279 +_md5_=3b007a5fd906fed56a78bf340a8db235 diff --git a/metadata/md5-cache/dev-python/python-novaclient-6.0.0 b/metadata/md5-cache/dev-python/python-novaclient-6.0.0 index 5a8a514ba724..28728241d316 100644 --- a/metadata/md5-cache/dev-python/python-novaclient-6.0.0 +++ b/metadata/md5-cache/dev-python/python-novaclient-6.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Nova API EAPI=6 HOMEPAGE=https://github.com/openstack/python-novaclient IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/simplejson-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-novaclient/python-novaclient-6.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0d3d6f54ff00f5023f883ac376b232e9 +_md5_=4271d0511032a49dadc245a1bf7198b2 diff --git a/metadata/md5-cache/dev-python/python-openstackclient-3.2.0 b/metadata/md5-cache/dev-python/python-openstackclient-3.2.0 index 952f2ee8a710..261f4bf2f041 100644 --- a/metadata/md5-cache/dev-python/python-openstackclient-3.2.0 +++ b/metadata/md5-cache/dev-python/python-openstackclient-3.2.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack APIs EAPI=6 HOMEPAGE=https://github.com/openstack/python-openstackclient IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cliff-1.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/cliff-1.17.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/openstacksdk-0.9.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/osc-lib-1.0.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-glanceclient-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-glanceclient-2.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-novaclient-2.29.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-novaclient-2.33.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-cinderclient-1.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-cinderclient-1.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-cinderclient-1.7.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.8.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/requests-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-openstackclient/python-openstackclient-3.2.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=a1a63d711665a376068d3b99a75c9fbf +_md5_=e50d790570bb21a3cc3793dafc211e7f diff --git a/metadata/md5-cache/dev-python/python-senlinclient-1.0.0 b/metadata/md5-cache/dev-python/python-senlinclient-1.0.0 index e175b6ef8ed2..9b1a68c000c8 100644 --- a/metadata/md5-cache/dev-python/python-senlinclient-1.0.0 +++ b/metadata/md5-cache/dev-python/python-senlinclient-1.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Senlin API EAPI=6 HOMEPAGE=https://github.com/openstack/python-senlinclient IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/openstacksdk-0.9.4 >=dev-python/osc-lib-1.0.2 >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-heatclient-1.4.0 >=dev-python/pyyaml-3.1.0 >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-senlinclient/python-senlinclient-1.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=8556cbf4ed695d6f6f8c22c6e08012ed +_md5_=88241072805275f8975b21e2e5c3d1e0 diff --git a/metadata/md5-cache/dev-python/python-swiftclient-3.1.0 b/metadata/md5-cache/dev-python/python-swiftclient-3.1.0 index 74835ce13fd4..693fc925ab57 100644 --- a/metadata/md5-cache/dev-python/python-swiftclient-3.1.0 +++ b/metadata/md5-cache/dev-python/python-swiftclient-3.1.0 @@ -4,11 +4,11 @@ DESCRIPTION=Python bindings to the OpenStack Object Storage API EAPI=6 HOMEPAGE=https://launchpad.net/python-swiftclient IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=virtual/python-futures[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.5.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-swiftclient/python-swiftclient-3.1.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=d9b7e23e7ddb3b43a6f6f736aec759c5 +_md5_=aa4a1e8c35bbd74c21cea9425d5b11c7 diff --git a/metadata/md5-cache/dev-python/python-troveclient-2.5.0 b/metadata/md5-cache/dev-python/python-troveclient-2.5.0 index 9f7091867e36..b73b5cf127f6 100644 --- a/metadata/md5-cache/dev-python/python-troveclient-2.5.0 +++ b/metadata/md5-cache/dev-python/python-troveclient-2.5.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Trove API, a scalable relational database EAPI=6 HOMEPAGE=https://github.com/openstack/python-troveclient IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/simplejson-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-swiftclient-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-mistralclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-troveclient/python-troveclient-2.5.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=cacf41a4981a278be52fc3b9b4b073b9 +_md5_=930598f9d28fa561a1e25ac30ae70beb diff --git a/metadata/md5-cache/dev-python/python-zaqarclient-1.2.0 b/metadata/md5-cache/dev-python/python-zaqarclient-1.2.0 index 01732f876fd5..931f24bdd560 100644 --- a/metadata/md5-cache/dev-python/python-zaqarclient-1.2.0 +++ b/metadata/md5-cache/dev-python/python-zaqarclient-1.2.0 @@ -4,11 +4,11 @@ DESCRIPTION=A client for the OpenStack Zaqar API EAPI=6 HOMEPAGE=https://github.com/openstack/python-zaqarclient IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/osc-lib-1.0.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/p/python-zaqarclient/python-zaqarclient-1.2.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=44a0ad1becfe361a262f1621b5018d83 +_md5_=8999e8410bd9a42e01f0aab934b6d913 diff --git a/metadata/md5-cache/dev-python/readme-0.6.0 b/metadata/md5-cache/dev-python/readme-0.6.0 index bab697643c64..a2c6fcc9eab4 100644 --- a/metadata/md5-cache/dev-python/readme-0.6.0 +++ b/metadata/md5-cache/dev-python/readme-0.6.0 @@ -4,11 +4,11 @@ DESCRIPTION=a library for rendering "readme" descriptions for Warehouse EAPI=5 HOMEPAGE=https://github.com/pypa/readme https://pypi.python.org/pypi/readme IUSE=test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Apache-2.0 RDEPEND=dev-python/bleach[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/docutils[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pygments[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/r/readme/readme-0.6.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=57c854414035701bc24ab24c1e86b882 +_md5_=c8ee0685f2238ec8b695757d154d20f5 diff --git a/metadata/md5-cache/dev-python/reno-1.8.0 b/metadata/md5-cache/dev-python/reno-1.8.0 index a3afbb6426d1..0519337a6924 100644 --- a/metadata/md5-cache/dev-python/reno-1.8.0 +++ b/metadata/md5-cache/dev-python/reno-1.8.0 @@ -4,11 +4,11 @@ DESCRIPTION=Release notes manager, storing release notes in a git repo and build EAPI=6 HOMEPAGE=https://pypi.python.org/pypi/reno IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/Babel-1.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/r/reno/reno-1.8.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=e77f14c0665d70d4bdec10da8c167e06 +_md5_=ca4eb70e04454e8147f13d45a185c833 diff --git a/metadata/md5-cache/dev-python/requests-2.11.1 b/metadata/md5-cache/dev-python/requests-2.11.1 index 7d9265b53857..007faeb4a31e 100644 --- a/metadata/md5-cache/dev-python/requests-2.11.1 +++ b/metadata/md5-cache/dev-python/requests-2.11.1 @@ -4,7 +4,7 @@ DESCRIPTION=HTTP library for human beings EAPI=6 HOMEPAGE=http://python-requests.org/ https://pypi.python.org/pypi/requests IUSE=test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos LICENSE=Apache-2.0 RDEPEND=app-misc/ca-certificates >=dev-python/chardet-2.2.1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/ndg-httpsclient[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/py-1.4.30[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/pyasn1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyopenssl-0.13[python_targets_pypy(-)?,-python_single_target_pypy(-),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(-)] >=dev-python/urllib3-1.13.1-r1[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/r/requests/requests-2.11.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=f8eee5561435978b692c08f455db898b +_md5_=4820416a70f850c668ab8e34a6a498a3 diff --git a/metadata/md5-cache/dev-python/requests-mock-1.0.0 b/metadata/md5-cache/dev-python/requests-mock-1.0.0 index 80f54430ec12..8ce8f130b644 100644 --- a/metadata/md5-cache/dev-python/requests-mock-1.0.0 +++ b/metadata/md5-cache/dev-python/requests-mock-1.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=Mock out responses from the requests package EAPI=5 HOMEPAGE=https://github.com/jamielennox/requests-mock IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/requests-1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/r/requests-mock/requests-mock-1.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=60c4337a495532cd14592fe6c6317472 +_md5_=1bc93aca2f484973f942577ab10087b7 diff --git a/metadata/md5-cache/dev-python/rfc3986-0.4.1 b/metadata/md5-cache/dev-python/rfc3986-0.4.1 index 6035e53ab5c0..83da5ebc57b8 100644 --- a/metadata/md5-cache/dev-python/rfc3986-0.4.1 +++ b/metadata/md5-cache/dev-python/rfc3986-0.4.1 @@ -4,11 +4,11 @@ DESCRIPTION=Validating URI References per RFC 3986 EAPI=6 HOMEPAGE=http://tools.ietf.org/html/rfc3986 https://github.com/sigmavirus24/rfc3986 https://rfc3986.rtfd.org IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 LICENSE=Apache-2.0 RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/r/rfc3986/rfc3986-0.4.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=66c921ad8c24861706cf770220908f52 +_md5_=e96c72e63fe751b0372cb46fcc2acc3f diff --git a/metadata/md5-cache/dev-python/routes-2.3.1 b/metadata/md5-cache/dev-python/routes-2.3.1 index 8ec352df86a2..60e79fc39ee3 100644 --- a/metadata/md5-cache/dev-python/routes-2.3.1 +++ b/metadata/md5-cache/dev-python/routes-2.3.1 @@ -4,11 +4,11 @@ DESCRIPTION=A re-implementation of Rails routes system, mapping URLs to Controll EAPI=5 HOMEPAGE=http://routes.groovie.org https://pypi.python.org/pypi/Routes IUSE=doc python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=BSD RDEPEND=>=dev-python/repoze-lru-0.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/R/Routes/Routes-2.3.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=056e61c406c35eecb46b67c1e234f25e +_md5_=7acfd46a06022d9ba0f425a4885c1bf8 diff --git a/metadata/md5-cache/dev-python/rsa-3.4.2 b/metadata/md5-cache/dev-python/rsa-3.4.2 new file mode 100644 index 000000000000..c9a44763036b --- /dev/null +++ b/metadata/md5-cache/dev-python/rsa-3.4.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/pyasn1-0.1.3[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/traceback2[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/setuptools-0.6.10[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/nose[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/unittest2[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Pure-Python RSA implementation +EAPI=5 +HOMEPAGE=http://stuvel.eu/rsa https://pypi.python.org/pypi/rsa +IUSE=test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pyasn1-0.1.3[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/traceback2[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/r/rsa/rsa-3.4.2.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=29b30d683484c003e3607d45294b9fbc diff --git a/metadata/md5-cache/dev-python/rtslib-fb-2.1.58 b/metadata/md5-cache/dev-python/rtslib-fb-2.1.58 index f9932d69cd2a..7d7f63fb9d22 100644 --- a/metadata/md5-cache/dev-python/rtslib-fb-2.1.58 +++ b/metadata/md5-cache/dev-python/rtslib-fb-2.1.58 @@ -4,11 +4,11 @@ DESCRIPTION=A Python object API for managing the Linux LIO kernel target EAPI=6 HOMEPAGE=https://github.com/agrover/rtslib-fb IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm ~arm64 ~mips ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm ~arm64 ~mips x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=!dev-python/rtslib[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/r/rtslib-fb/rtslib-fb-2.1.58.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0bda40d87662f99547a69b5bf298d115 +_md5_=0b16ffeba55a11f5c09952a0077a19e4 diff --git a/metadata/md5-cache/dev-python/ryu-4.5 b/metadata/md5-cache/dev-python/ryu-4.5 index 0017f7da4580..27cc804ee369 100644 --- a/metadata/md5-cache/dev-python/ryu-4.5 +++ b/metadata/md5-cache/dev-python/ryu-4.5 @@ -4,11 +4,11 @@ DESCRIPTION=Component-based Software-defined Networking Framework EAPI=6 HOMEPAGE=http://osrg.github.io/ryu/ IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/r/ryu/ryu-4.5.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=008fc8aef65f27fb88c27331ec567e3e +_md5_=78b9e5931f54a3e97e044b03e898b66e diff --git a/metadata/md5-cache/dev-python/shapely-1.5.17 b/metadata/md5-cache/dev-python/shapely-1.5.17 new file mode 100644 index 000000000000..9b55ea57e66e --- /dev/null +++ b/metadata/md5-cache/dev-python/shapely-1.5.17 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=sci-libs/geos-3.3 dev-python/numpy[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/cython[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] test? ( dev-python/pytest[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Geometric objects, predicates, and operations +EAPI=6 +HOMEPAGE=https://github.com/Toblerity/Shapely +IUSE=test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=sci-libs/geos-3.3 dev-python/numpy[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=mirror://pypi/S/Shapely/Shapely-1.5.17.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=1cc522ba0aaafb80cf611b28d511673d diff --git a/metadata/md5-cache/dev-python/sqlalchemy-1.0.15 b/metadata/md5-cache/dev-python/sqlalchemy-1.0.15 index b6bc0fe3213f..426f0feb2974 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-1.0.15 +++ b/metadata/md5-cache/dev-python/sqlalchemy-1.0.15 @@ -4,11 +4,11 @@ DESCRIPTION=Python SQL toolkit and Object Relational Mapper EAPI=6 HOMEPAGE=http://www.sqlalchemy.org/ https://pypi.python.org/pypi/SQLAlchemy IUSE=doc examples +sqlite test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy:0=[sqlite?] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite?] ) python_targets_python3_4? ( dev-lang/python:3.4[sqlite?] ) python_targets_python3_5? ( dev-lang/python:3.5[sqlite?] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=test? ( sqlite ) || ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/S/SQLAlchemy/SQLAlchemy-1.0.15.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=77b2621dfe486ebcba36c3f12fb4937e +_md5_=9c03afe948fc1cf5ed0680bd39768aa1 diff --git a/metadata/md5-cache/dev-python/stevedore-1.17.1 b/metadata/md5-cache/dev-python/stevedore-1.17.1 index 3f2788d546b3..4dcf1744d7af 100644 --- a/metadata/md5-cache/dev-python/stevedore-1.17.1 +++ b/metadata/md5-cache/dev-python/stevedore-1.17.1 @@ -4,11 +4,11 @@ DESCRIPTION=Manage dynamic plugins for Python applications EAPI=6 HOMEPAGE=https://github.com/openstack/stevedore https://pypi.python.org/pypi/stevedore IUSE=doc test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/s/stevedore/stevedore-1.17.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=7de59030c12d2ae4141e92b1e64f2542 +_md5_=5652145b52fd790e37a105734ccd77f3 diff --git a/metadata/md5-cache/dev-python/strict-rfc3339-0.6 b/metadata/md5-cache/dev-python/strict-rfc3339-0.6 index 5384dfe53c83..ba22d41ded96 100644 --- a/metadata/md5-cache/dev-python/strict-rfc3339-0.6 +++ b/metadata/md5-cache/dev-python/strict-rfc3339-0.6 @@ -4,7 +4,7 @@ DESCRIPTION=Strict, simple, lightweight RFC3339 functions EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/strict-rfc3339 https://github.com/danielrichman/strict-rfc3339 IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux LICENSE=GPL-3+ RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/s/strict-rfc3339/strict-rfc3339-0.6.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=be7d6e2280e76d621d0405b9a867ef71 +_md5_=fd83ff97e2b18cb61b4d471f13cb70ea diff --git a/metadata/md5-cache/dev-python/taskflow-2.6.0 b/metadata/md5-cache/dev-python/taskflow-2.6.0 index 71d3bde0b5dd..469f8bda9167 100644 --- a/metadata/md5-cache/dev-python/taskflow-2.6.0 +++ b/metadata/md5-cache/dev-python/taskflow-2.6.0 @@ -4,11 +4,11 @@ DESCRIPTION=A library to do [jobs, tasks, flows] in a HA manner using different EAPI=6 HOMEPAGE=https://github.com/openstack/taskflow IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-enum34[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/futurist-0.11.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/futurist-0.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/fasteners-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/networkx-1.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/contextlib2-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-futures[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/monotonic-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] =dev-python/automaton-0.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/cachetools-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/t/taskflow/taskflow-2.6.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=6d83e191b84abcdba248008747c12f5a +_md5_=49340d286fb8486f6168e1181557cbf4 diff --git a/metadata/md5-cache/dev-python/tooz-1.43.0 b/metadata/md5-cache/dev-python/tooz-1.43.0 index 24f4e6b16576..21bcade6734a 100644 --- a/metadata/md5-cache/dev-python/tooz-1.43.0 +++ b/metadata/md5-cache/dev-python/tooz-1.43.0 @@ -4,11 +4,11 @@ DESCRIPTION=Library centralizing the most common distributed primitives EAPI=6 HOMEPAGE=http://docs.openstack.org/developer/tooz/ IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/stevedore-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-enum34[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/voluptuous-0.8.9[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/msgpack-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/fasteners-0.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] virtual/python-futures[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/futurist-0.11.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] !~dev-python/futurist-0.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-utils-3.15.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/t/tooz/tooz-1.43.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0934f4d944367fb5dcee49364220a23f +_md5_=3962a4ea923ea5cf8515271e02c308b2 diff --git a/metadata/md5-cache/dev-python/translate-toolkit-2.0.0_beta6 b/metadata/md5-cache/dev-python/translate-toolkit-2.0.0_beta7 similarity index 81% rename from metadata/md5-cache/dev-python/translate-toolkit-2.0.0_beta6 rename to metadata/md5-cache/dev-python/translate-toolkit-2.0.0_beta7 index 99278946fecb..5b578fbe85d2 100644 --- a/metadata/md5-cache/dev-python/translate-toolkit-2.0.0_beta6 +++ b/metadata/md5-cache/dev-python/translate-toolkit-2.0.0_beta7 @@ -3,12 +3,12 @@ DEPEND=>=dev-python/six-1.10.0[python_targets_python2_7(-)?,python_targets_pytho DESCRIPTION=Toolkit to convert between many translation formats EAPI=6 HOMEPAGE=https://github.com/translate/translate -IUSE=doc +html +ical +ini +subtitles python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +IUSE=doc +html +ical +ini +subtitles +yaml python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=>=dev-python/six-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] app-text/iso-codes >=dev-python/chardet-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/diff-match-patch[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/lxml-3.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-levenshtein-0.12.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] sys-devel/gettext html? ( dev-python/utidylib[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) ical? ( dev-python/vobject[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) ini? ( dev-python/iniparse[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) subtitles? ( python_targets_python3_4? ( media-video/gaupol[python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-)] ) python_targets_python3_5? ( media-video/gaupol[python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-)] ) ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) python_targets_python3_4? ( dev-lang/python:3.4[sqlite] ) python_targets_python3_5? ( dev-lang/python:3.5[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +RDEPEND=>=dev-python/six-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] app-text/iso-codes >=dev-python/chardet-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/diff-match-patch[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/lxml-3.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-levenshtein-0.12.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] sys-devel/gettext html? ( dev-python/utidylib[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) ical? ( dev-python/vobject[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) ini? ( dev-python/iniparse[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) subtitles? ( python_targets_python3_4? ( media-video/gaupol[python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-)] ) python_targets_python3_5? ( media-video/gaupol[python_targets_python3_4(-)?,-python_single_target_python3_4(-),python_targets_python3_5(-)?,-python_single_target_python3_5(-)] ) ) yaml? ( dev-python/pyyaml[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) python_targets_python3_4? ( dev-lang/python:3.4[sqlite] ) python_targets_python3_5? ( dev-lang/python:3.5[sqlite] ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=subtitles? ( || ( python_targets_python3_4 python_targets_python3_5 ) ) || ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 -SRC_URI=https://github.com/translate/translate/archive/2.0.0b6.tar.gz -> translate-toolkit-2.0.0_beta6.tar.gz +SRC_URI=https://github.com/translate/translate/archive/2.0.0b7.tar.gz -> translate-toolkit-2.0.0_beta7.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=3cfc767413b939294957c873dc15e922 +_md5_=16ff6cecbd830bb1fc40bb7ec74b5459 diff --git a/metadata/md5-cache/dev-python/urllib3-1.16 b/metadata/md5-cache/dev-python/urllib3-1.16 index 6a9bbb8c7bdc..ec89b4daba03 100644 --- a/metadata/md5-cache/dev-python/urllib3-1.16 +++ b/metadata/md5-cache/dev-python/urllib3-1.16 @@ -4,11 +4,11 @@ DESCRIPTION=HTTP library with thread-safe connection pooling, file post, and mor EAPI=6 HOMEPAGE=https://github.com/shazow/urllib3 IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-fbsd ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-fbsd ~x86-linux LICENSE=MIT RDEPEND=dev-python/PySocks[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/certifi[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/six[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/pyopenssl-0.14[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( dev-python/backports-ssl-match-hostname[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/backports-ssl-match-hostname[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_pypy? ( dev-python/ndg-httpsclient[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/ndg-httpsclient[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_pypy? ( dev-python/pyasn1[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-python/pyasn1[python_targets_pypy(-)?,-python_single_target_pypy(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_pypy? ( virtual/pypy: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(+)] ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/u/urllib3/urllib3-1.16.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=9460d21bf75e2a16346b0c8b3a1e4bbc +_md5_=4821fee70de766c5c971a9d72579ca61 diff --git a/metadata/md5-cache/dev-python/vcversioner-2.16.0.0 b/metadata/md5-cache/dev-python/vcversioner-2.16.0.0 index 03e56dfe0762..b0c8d2431e41 100644 --- a/metadata/md5-cache/dev-python/vcversioner-2.16.0.0 +++ b/metadata/md5-cache/dev-python/vcversioner-2.16.0.0 @@ -4,7 +4,7 @@ DESCRIPTION=Use version control tags to discover version numbers EAPI=5 HOMEPAGE=https://github.com/habnabit/vcversioner https://pypi.python.org/pypi/vcversioner IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 LICENSE=MIT RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/v/vcversioner/vcversioner-2.16.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=95749a4a2e6fa65496cfe1c2f911effe +_md5_=9719929300d68bf92272ab74f381444c diff --git a/metadata/md5-cache/dev-python/virtualenvwrapper-4.7.1 b/metadata/md5-cache/dev-python/virtualenvwrapper-4.7.1 index c6f1996832e5..ebbe62e5ade7 100644 --- a/metadata/md5-cache/dev-python/virtualenvwrapper-4.7.1 +++ b/metadata/md5-cache/dev-python/virtualenvwrapper-4.7.1 @@ -4,7 +4,7 @@ DESCRIPTION=Set of extensions to Ian Bicking's virtualenv tool EAPI=5 HOMEPAGE=http://www.doughellmann.com/projects/virtualenvwrapper https://pypi.python.org/pypi/virtualenvwrapper IUSE=test python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=BSD RDEPEND=dev-python/virtualenv[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-0.15-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/virtualenv-clone[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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 ) @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/v/virtualenvwrapper/virtualenvwrapper-4.7.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=d122749a36eaa9195c2e03c30c0b1118 +_md5_=ad926fa8e09fcd2e0802ee09fed8e833 diff --git a/metadata/md5-cache/dev-python/vobject-0.9.2 b/metadata/md5-cache/dev-python/vobject-0.9.2 new file mode 100644 index 000000000000..f20b58bbe318 --- /dev/null +++ b/metadata/md5-cache/dev-python/vobject-0.9.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/python-dateutil-2.4.0[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=Python package for parsing and generating vCard and vCalendar files +EAPI=6 +HOMEPAGE=http://eventable.github.io/vobject/ https://pypi.python.org/pypi/vobject https://github.com/eventable/vobject +IUSE=python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/python-dateutil-2.4.0[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=https://github.com/eventable/vobject/archive/0.9.2.tar.gz -> vobject-0.9.2.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=e5d0a36e4eb42fe34038c52120654130 diff --git a/metadata/md5-cache/dev-python/webcolors-1.5 b/metadata/md5-cache/dev-python/webcolors-1.5 index 0e14f0cb042f..fc099ac6984e 100644 --- a/metadata/md5-cache/dev-python/webcolors-1.5 +++ b/metadata/md5-cache/dev-python/webcolors-1.5 @@ -4,11 +4,11 @@ DESCRIPTION=Color names and value formats defined by the HTML and CSS specificat EAPI=5 HOMEPAGE=https://pypi.python.org/pypi/webcolors https://github.com/ubernostrum/webcolors IUSE=test python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux LICENSE=BSD RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/w/webcolors/webcolors-1.5.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b75f0d600a766127bdb8d7e6b929cd28 +_md5_=e2415bea3dd8522ea7ed46199f9098ee diff --git a/metadata/md5-cache/dev-python/webob-1.6.1 b/metadata/md5-cache/dev-python/webob-1.6.1 index fc746d2b7a0e..a96a75525368 100644 --- a/metadata/md5-cache/dev-python/webob-1.6.1 +++ b/metadata/md5-cache/dev-python/webob-1.6.1 @@ -4,11 +4,11 @@ DESCRIPTION=WSGI request and response object EAPI=6 HOMEPAGE=http://webob.org/ https://pypi.python.org/pypi/WebOb IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=MIT RDEPEND=python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/W/WebOb/WebOb-1.6.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=014fe7073feb2aa229d8c9b9cce78cc6 +_md5_=b9aa3fbd2d3b2a9479774910846049f7 diff --git a/metadata/md5-cache/dev-python/websockify-0.8.0 b/metadata/md5-cache/dev-python/websockify-0.8.0 index 05afcea7407a..36dfaff40c7a 100644 --- a/metadata/md5-cache/dev-python/websockify-0.8.0 +++ b/metadata/md5-cache/dev-python/websockify-0.8.0 @@ -4,11 +4,11 @@ DESCRIPTION=WebSockets support for any application/server EAPI=6 HOMEPAGE=https://github.com/kanaka/websockify IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=LGPL-3 RDEPEND=dev-python/numpy[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=https://github.com/kanaka/websockify/archive/v0.8.0.zip -> websockify-0.8.0.zip _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=403076cb6ff68c0f296047a4a4624279 +_md5_=2e314859b9747620cc5726aa68a85ade diff --git a/metadata/md5-cache/dev-python/wsgiintercept-1.3.1 b/metadata/md5-cache/dev-python/wsgiintercept-1.3.1 index ba88cda4a586..04bc98aa6ef5 100644 --- a/metadata/md5-cache/dev-python/wsgiintercept-1.3.1 +++ b/metadata/md5-cache/dev-python/wsgiintercept-1.3.1 @@ -4,11 +4,11 @@ DESCRIPTION=WSGI application in place of a real URI for testing EAPI=6 HOMEPAGE=https://github.com/cdent/python3-wsgi-intercept IUSE=doc test python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=MIT RDEPEND=python_targets_pypy? ( virtual/pypy: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_pypy python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/w/wsgi_intercept/wsgi_intercept-1.3.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=de2c945173dd0b802191874e341f8c9e +_md5_=230d904e4925a46374f599e5172dc7d2 diff --git a/metadata/md5-cache/dev-python/wtf-peewee-0.2.6 b/metadata/md5-cache/dev-python/wtf-peewee-0.2.6 new file mode 100644 index 000000000000..f8faeea8904a --- /dev/null +++ b/metadata/md5-cache/dev-python/wtf-peewee-0.2.6 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/peewee-2.7.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/wtforms[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +DESCRIPTION=WTForms integration for peewee models +EAPI=6 +HOMEPAGE=https://github.com/coleifer/wtf-peewee/ +IUSE=examples test python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/peewee-2.7.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/wtforms[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) +SLOT=0 +SRC_URI=https://github.com/coleifer/wtf-peewee/archive/0.2.6.tar.gz -> wtf-peewee-0.2.6.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=aedb192f34a08e3fa7164e2f50259b2f diff --git a/metadata/md5-cache/dev-python/yaql-1.1.1 b/metadata/md5-cache/dev-python/yaql-1.1.1 index f4e0c07ba0a5..92a1a7c00174 100644 --- a/metadata/md5-cache/dev-python/yaql-1.1.1 +++ b/metadata/md5-cache/dev-python/yaql-1.1.1 @@ -4,11 +4,11 @@ DESCRIPTION=YAQL: Yet Another Query Language EAPI=6 HOMEPAGE=https://github.com/openstack/yaql IUSE=python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=amd64 ~arm64 x86 ~amd64-linux ~x86-linux LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/python-dateutil-2.4.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/ply[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 SRC_URI=mirror://pypi/y/yaql/yaql-1.1.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=69363b6680c0b93035b4f218d1ad93d9 +_md5_=a1ddc1b623b16e97a9317f5f0fe292a8 diff --git a/metadata/md5-cache/dev-ruby/blankslate-3.1.3 b/metadata/md5-cache/dev-ruby/blankslate-3.1.3 index f9a75f34ca75..101ebbb3f6e1 100644 --- a/metadata/md5-cache/dev-ruby/blankslate-3.1.3 +++ b/metadata/md5-cache/dev-ruby/blankslate-3.1.3 @@ -4,11 +4,11 @@ DESCRIPTION=Base class with almost all of the methods from Object and Kernel bei EAPI=5 HOMEPAGE=https://rubygems.org/gems/blankslate IUSE=elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=0 SRC_URI=mirror://rubygems/blankslate-3.1.3.gem _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=03533aafa3cb3ee00719c0abc7ad3ec0 +_md5_=63d80193be04a9fa27673726f0284070 diff --git a/metadata/md5-cache/dev-ruby/instantiator-0.0.6 b/metadata/md5-cache/dev-ruby/instantiator-0.0.6 index 0e37b6cad6db..01a61f549e3e 100644 --- a/metadata/md5-cache/dev-ruby/instantiator-0.0.6 +++ b/metadata/md5-cache/dev-ruby/instantiator-0.0.6 @@ -4,11 +4,11 @@ DESCRIPTION=Instantiate an arbitrary Ruby class EAPI=5 HOMEPAGE=https://github.com/floehopper/introspection IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby20? ( dev-ruby/blankslate:*[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/blankslate:*[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/blankslate:*[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/blankslate:*[ruby_targets_ruby23] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=0 SRC_URI=mirror://rubygems/instantiator-0.0.6.gem _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=eedf5ca5fbe0aaa02b2cc1123c6b5cbb +_md5_=c881f6894b33cb23ffe68d979b4b91bd diff --git a/metadata/md5-cache/dev-ruby/introspection-0.0.3 b/metadata/md5-cache/dev-ruby/introspection-0.0.3 index c37ff90ca2be..d2f1661d1114 100644 --- a/metadata/md5-cache/dev-ruby/introspection-0.0.3 +++ b/metadata/md5-cache/dev-ruby/introspection-0.0.3 @@ -4,11 +4,11 @@ DESCRIPTION=Dynamic inspection of the hierarchy of method definitions on a Ruby EAPI=5 HOMEPAGE=http://jamesmead.org/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 test test -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/metaclass-0.0.1[ruby_targets_ruby20] >=dev-ruby/instantiator-0.0.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/metaclass-0.0.1[ruby_targets_ruby21] >=dev-ruby/instantiator-0.0.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/metaclass-0.0.1[ruby_targets_ruby22] >=dev-ruby/instantiator-0.0.3[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/metaclass-0.0.1[ruby_targets_ruby23] >=dev-ruby/instantiator-0.0.3[ruby_targets_ruby23] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=0 SRC_URI=mirror://rubygems/introspection-0.0.3.gem _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e3e1e2a562ee9c76acb8899444455d2d +_md5_=693c147d713f91370f8ffd4d7a9f0d83 diff --git a/metadata/md5-cache/dev-ruby/mocha-0.14.0 b/metadata/md5-cache/dev-ruby/mocha-0.14.0 index cf9333ef9edf..b261da2cd57e 100644 --- a/metadata/md5-cache/dev-ruby/mocha-0.14.0 +++ b/metadata/md5-cache/dev-ruby/mocha-0.14.0 @@ -4,11 +4,11 @@ DESCRIPTION=Mocking and stubbing using a syntax like that of JMock and SchMock EAPI=5 HOMEPAGE=http://gofreerange.com/mocha/docs/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby20? ( dev-ruby/metaclass[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/metaclass[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/metaclass[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/metaclass[ruby_targets_ruby23] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=0.14 SRC_URI=mirror://rubygems/mocha-0.14.0.gem _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=754b26058d12717421f53cc5caebf0ed +_md5_=fea35bfaa7f3a4d86e3e411d65d2c261 diff --git a/metadata/md5-cache/dev-ruby/mocha-1.1.0 b/metadata/md5-cache/dev-ruby/mocha-1.1.0 index f50a4817b2f7..32c3fb714a4e 100644 --- a/metadata/md5-cache/dev-ruby/mocha-1.1.0 +++ b/metadata/md5-cache/dev-ruby/mocha-1.1.0 @@ -4,11 +4,11 @@ DESCRIPTION=Mocking and stubbing using a syntax like that of JMock and SchMock EAPI=5 HOMEPAGE=http://gofreerange.com/mocha/docs/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby20? ( dev-ruby/introspection[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/introspection[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/introspection[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/introspection[ruby_targets_ruby23] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=1.0 SRC_URI=mirror://rubygems/mocha-1.1.0.gem _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=04095891986a3db27c85983669adc110 +_md5_=b0ec9f9b6d7faee7328d8e2d196dba49 diff --git a/metadata/md5-cache/dev-ruby/rcairo-1.14.3 b/metadata/md5-cache/dev-ruby/rcairo-1.14.3 index 30915f58ae3c..af3a19480ce0 100644 --- a/metadata/md5-cache/dev-ruby/rcairo-1.14.3 +++ b/metadata/md5-cache/dev-ruby/rcairo-1.14.3 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby bindings for cairo EAPI=5 HOMEPAGE=http://cairographics.org/rcairo/ IUSE=elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 doc test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=|| ( Ruby GPL-2 ) RDEPEND=>=x11-libs/cairo-1.2.0[svg] ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://rubygems/cairo-1.14.3.gem _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=da317ebaf07f64c9ae7da4cd4f783236 +_md5_=3d0c573003e423db08cd1db2a5377ba4 diff --git a/metadata/md5-cache/dev-ruby/rgen-0.8.0 b/metadata/md5-cache/dev-ruby/rgen-0.8.0 index 2afaf159caa2..1d920095d5f9 100644 --- a/metadata/md5-cache/dev-ruby/rgen-0.8.0 +++ b/metadata/md5-cache/dev-ruby/rgen-0.8.0 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Modelling and Generator Framework EAPI=5 HOMEPAGE=https://github.com/mthiede/rgen IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=~amd64 hppa ~ppc ~sparc ~x86 +KEYWORDS=amd64 hppa ~ppc ~sparc ~x86 LICENSE=MIT RDEPEND=ruby_targets_ruby20? ( dev-ruby/nokogiri[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/nokogiri[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/nokogiri[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/nokogiri[ruby_targets_ruby23] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=0 SRC_URI=mirror://rubygems/rgen-0.8.0.gem _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=8e3106982f736ca2a386b114baa2c118 +_md5_=5b849dddee9a2cd586549f4e506ac6a8 diff --git a/metadata/md5-cache/dev-ruby/ruby-atk-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-atk-2.2.3-r1 deleted file mode 100644 index c8b33fea9b42..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-atk-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-libs/atk test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Atk bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=dev-libs/atk ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=39821553fdf1f15ff17f994dae57f622 diff --git a/metadata/md5-cache/dev-ruby/ruby-atk-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-atk-2.2.5 deleted file mode 100644 index a551c0f0a998..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-atk-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-libs/atk test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Atk bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=dev-libs/atk ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=cc53986a26bc780754a4fba3f55cd57e diff --git a/metadata/md5-cache/dev-ruby/ruby-atk-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-atk-3.0.7 index 6051b22f7a0b..75a72415b2cd 100644 --- a/metadata/md5-cache/dev-ruby/ruby-atk-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-atk-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Atk bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=dev-libs/atk ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=0956c58c07305894213862c6ca964db5 +_md5_=1c83b8a41e83d7e78a4e721f67d3bd6b diff --git a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-2.2.3-r1 deleted file mode 100644 index 13dbb9633601..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/cairo test? ( ruby_targets_ruby20? ( dev-ruby/rcairo[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/rcairo[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/rcairo[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby cairo-gobject bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/cairo ruby_targets_ruby20? ( dev-ruby/rcairo[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/rcairo[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/rcairo[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=b33a0f5fd0d3644152cf895fadbcaec4 diff --git a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-2.2.5 deleted file mode 100644 index 782038fb34c2..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/cairo test? ( ruby_targets_ruby20? ( dev-ruby/rcairo[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/rcairo[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/rcairo[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby cairo-gobject bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/cairo ruby_targets_ruby20? ( dev-ruby/rcairo[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/rcairo[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/rcairo[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=2597b466a60fea85db8b13af9e55261b diff --git a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.0.7 index c0e749558d3f..365dc89c235c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-cairo-gobject-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby cairo-gobject bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=x11-libs/cairo ruby_targets_ruby20? ( dev-ruby/rcairo[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/rcairo[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/rcairo[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=7f12912ea4ebfbd120797ddda5dc5fb9 +_md5_=68add5a4e5f1fd2ba474dd45b1961f84 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-clutter-2.2.3-r1 deleted file mode 100644 index e384764831f5..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-2.2.3-r1 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=media-libs/clutter ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Clutter bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=media-libs/clutter ruby_targets_ruby20? ( >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=4212696748075aef6a25b7768c0da7d9 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-clutter-2.2.5 deleted file mode 100644 index 06be3dae6807..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=media-libs/clutter ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Clutter bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=media-libs/clutter ruby_targets_ruby20? ( >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=c4d3eb125a0f5efc943bd1847fbe13d0 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-clutter-3.0.7 index 71df3078232b..517975e6e977 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Clutter bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=media-libs/clutter ruby_targets_ruby20? ( >=dev-ruby/ruby-cairo-gobject-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-cairo-gobject-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-cairo-gobject-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=22b14c491f407b1502e2656ade37d4c0 +_md5_=0c53745b27fe62e9f6bebfc77f19dfd8 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-2.2.3-r1 deleted file mode 100644 index 268325d15a6d..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=media-libs/clutter-gst test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Clutter bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=media-libs/clutter-gst ruby_targets_ruby19? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=cdd3304c84c29e22f3f730023b161df8 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-2.2.5 deleted file mode 100644 index 775c05e2cf33..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=media-libs/clutter-gst test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Clutter bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=media-libs/clutter-gst ruby_targets_ruby19? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=5a7b491e1e235753ee5bb9b81df3408c diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.0.7 index 8a246b6890f7..e6c0f2bcdfbf 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gstreamer-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Clutter bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=media-libs/clutter-gst:* ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=d6e1161675900d74252ae1edfbc37f51 +_md5_=e2c2430cb844b7c6e0e0ced10cee1363 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-2.2.3-r1 deleted file mode 100644 index 8049e7a2e839..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=media-libs/clutter-gtk ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Clutter bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=media-libs/clutter-gtk ruby_targets_ruby19? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=c250c44d1a1898e6c8459635fce59b5d diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-2.2.5 deleted file mode 100644 index d0a626ab1d25..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=media-libs/clutter-gtk ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Clutter bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=media-libs/clutter-gtk ruby_targets_ruby19? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=d8c25650bac7730f0f1d696026d7f2f7 diff --git a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.0.7 index af6b755ed071..e04cb8889a68 100644 --- a/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-clutter-gtk-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Clutter bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=media-libs/clutter-gtk ruby_targets_ruby20? ( >=dev-ruby/ruby-clutter-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-clutter-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-clutter-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=2e7bb32450b51ffd0ba694f9ed7a402f +_md5_=23d2f16a9ac9a3b2aa1eab5b4ccb6b9d diff --git a/metadata/md5-cache/dev-ruby/ruby-gdk3-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gdk3-2.2.3-r1 deleted file mode 100644 index e8941fe1a5f3..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gdk3-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtk+:3 ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby GDK-3.x bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtk+:3 ruby_targets_ruby19? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-cairo-gobject-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ec034dbfe372a930697f8724eadc816b diff --git a/metadata/md5-cache/dev-ruby/ruby-gdk3-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gdk3-2.2.5 deleted file mode 100644 index 362acd90daca..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gdk3-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtk+:3 ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby GDK-3.x bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtk+:3 ruby_targets_ruby19? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-cairo-gobject-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=e2e93da5befff961e50e0895a73d48e9 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.0.7 index e3a20b8f853f..479168267435 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdk3-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gdk3-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby GDK-3.x bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=x11-libs/gtk+:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-cairo-gobject-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-cairo-gobject-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-cairo-gobject-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=660f64935209a29a5563aecf20cde993 +_md5_=6be4454f223c24e7fd363b45d396e614 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-2.2.3-r1 deleted file mode 100644 index fec455dfa127..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby GdkPixbuf2 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtk+:2 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ce1eac9274596bc049f1633a35551500 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-2.2.5 deleted file mode 100644 index 4610dd2362ae..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby GdkPixbuf2 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtk+:2 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=ce1eac9274596bc049f1633a35551500 diff --git a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.0.7 index 6453808b5ffa..6cea48d6196f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gdkpixbuf2-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby GdkPixbuf2 bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=x11-libs/gtk+:2 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=b71c72893ab2e947549147dbd6cb94d5 +_md5_=35386deed3151dcade6c9ed457594b18 diff --git a/metadata/md5-cache/dev-ruby/ruby-gio2-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gio2-2.2.3-r1 deleted file mode 100644 index f5957a49dd88..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gio2-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-libs/gobject-introspection test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby binding of GooCanvas -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e83a7e5b06ee8c608cc581f43e000684 diff --git a/metadata/md5-cache/dev-ruby/ruby-gio2-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gio2-2.2.5 deleted file mode 100644 index 4432eb47be44..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gio2-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby binding of GooCanvas -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=403739a8361fc7a04d14b09d91a13259 diff --git a/metadata/md5-cache/dev-ruby/ruby-gio2-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-gio2-3.0.7 index fed0b2a6d0f6..271dfb696966 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gio2-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gio2-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby binding of GooCanvas EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=09a4f30c20fdfb63ebaa58f18a114dd1 +_md5_=b8d36f77d3e4fabdafa322086ccf094b diff --git a/metadata/md5-cache/dev-ruby/ruby-glib2-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-glib2-2.2.3-r1 deleted file mode 100644 index 2b7d6e3b19b1..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-glib2-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=dev-libs/glib-2 ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] test? ( >=dev-ruby/test-unit-2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] test? ( >=dev-ruby/test-unit-2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] test? ( >=dev-ruby/test-unit-2[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Glib2 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 -LICENSE=Ruby -RDEPEND=>=dev-libs/glib-2 ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=f149178816fc6c0595d50c749cb34fa7 diff --git a/metadata/md5-cache/dev-ruby/ruby-glib2-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-glib2-2.2.5 deleted file mode 100644 index f7bbbe6e2ba3..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-glib2-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=dev-libs/glib-2 ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] test? ( >=dev-ruby/test-unit-2[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] test? ( >=dev-ruby/test-unit-2[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] test? ( >=dev-ruby/test-unit-2[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Glib2 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 -LICENSE=Ruby -RDEPEND=>=dev-libs/glib-2 ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=0e0bf9496569241d841e43d95d86b27c diff --git a/metadata/md5-cache/dev-ruby/ruby-glib2-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-glib2-3.0.7 index 47de08aff82f..b86200ca627c 100644 --- a/metadata/md5-cache/dev-ruby/ruby-glib2-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-glib2-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Glib2 bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 test -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~ppc ~ppc64 ~x86 LICENSE=Ruby RDEPEND=>=dev-libs/glib-2 ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=7f85975a967d469ee80a8e554e6317ce +_md5_=579a145fa096d89229db84733938cfb5 diff --git a/metadata/md5-cache/dev-ruby/ruby-gnome2-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gnome2-2.2.3-r1 deleted file mode 100644 index 8287447e9214..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gnome2-2.2.3-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gstreamer-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gtk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-poppler-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-rsvg-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-vte-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-vte3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gstreamer-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gtk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-poppler-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-rsvg-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-vte-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-vte3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gstreamer-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gtk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-poppler-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-rsvg-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-vte-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-vte3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) -DESCRIPTION=Ruby Gnome2 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gstreamer-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gtk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-poppler-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-rsvg-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-vte-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-vte3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gstreamer-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gtk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-poppler-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-rsvg-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-vte-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-vte3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gstreamer-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gtk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-poppler-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-rsvg-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-vte-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-vte3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e368309fb6717a559c9ecf046641f5aa diff --git a/metadata/md5-cache/dev-ruby/ruby-gnome2-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gnome2-2.2.5 deleted file mode 100644 index 3a74080f01c2..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gnome2-2.2.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gstreamer-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gtk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-poppler-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-rsvg-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-vte-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-vte3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gstreamer-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gtk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-poppler-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-rsvg-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-vte-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-vte3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gstreamer-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gtk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-poppler-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-rsvg-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-vte-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-vte3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk-2.2.5[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) -DESCRIPTION=Ruby Gnome2 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gstreamer-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gtk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-poppler-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-rsvg-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-vte-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-vte3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gstreamer-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gtk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-poppler-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-rsvg-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-vte-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-vte3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gstreamer-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gtk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-poppler-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-rsvg-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-vte-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-vte3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e368309fb6717a559c9ecf046641f5aa diff --git a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.0.7 index 9dd63819e0a1..b04a77a8993a 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gnome2-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gnome2-3.0.7 @@ -4,10 +4,10 @@ DESCRIPTION=Ruby Gnome2 bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gstreamer-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-clutter-gtk-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gstreamer-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gtksourceview3-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-poppler-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-rsvg-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-vte-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-vte3-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-webkit-gtk-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gstreamer-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-clutter-gtk-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gstreamer-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gtksourceview3-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-poppler-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-rsvg-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-vte-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-vte3-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-webkit-gtk-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gstreamer-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-clutter-gtk-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gstreamer-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gtksourceview3-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-poppler-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-rsvg-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-vte-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-vte3-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-webkit-gtk-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=826aebaa860bb05ad0b4cdedfcf8fec7 +_md5_=c5be4c7a00f3c47be65dc4276718ae9d diff --git a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-2.2.3-r1 deleted file mode 100644 index 6d20897233c3..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-libs/gobject-introspection test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby GObjectIntrosprction bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=dev-libs/gobject-introspection ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=0ec28a42de3b6740625c334a3a49b7b9 diff --git a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-2.2.5 deleted file mode 100644 index 9f3c11e82aeb..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-libs/gobject-introspection test? ( ruby_targets_ruby20? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby GObjectIntrospection bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=dev-libs/gobject-introspection ruby_targets_ruby20? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=da396cb35e6d5a53dc0295835df66c8b diff --git a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.0.7 index d88c4dfc1a4c..d9890222613e 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gobject-introspection-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby GObjectIntrospection bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=dev-libs/gobject-introspection ruby_targets_ruby20? ( ~dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( ~dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( ~dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=da396cb35e6d5a53dc0295835df66c8b +_md5_=74bfd21be5ae2541e92368ea8bf002a1 diff --git a/metadata/md5-cache/dev-ruby/ruby-gstreamer-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gstreamer-2.2.3-r1 deleted file mode 100644 index 9759c6f76ba1..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gstreamer-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-libs/gobject-introspection media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) -DESCRIPTION=Ruby GStreamer bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=a2870983d15c2a5c3eff527e9a3b308e diff --git a/metadata/md5-cache/dev-ruby/ruby-gstreamer-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gstreamer-2.2.5 deleted file mode 100644 index c10021a181ab..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gstreamer-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=dev-libs/gobject-introspection media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 test? ( ruby_targets_ruby20? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ~dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ~dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ~dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby GStreamer bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ruby_targets_ruby20? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ~dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ~dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( ~dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ~dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=77570ed7f1c3fcfdbc70656096ec9983 diff --git a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.0.7 index 22007f09fe57..28d1f9ddb09b 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gstreamer-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby GStreamer bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ruby_targets_ruby20? ( ~dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby20] ~dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( ~dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby21] ~dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( ~dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby22] ~dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=4121b21ce93a0e1e553127f6de7c071b +_md5_=595869e0902fe196d41dc62b5173be08 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk2-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gtk2-2.2.3-r1 deleted file mode 100644 index 5bc6227e8473..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gtk2-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtk+:2 x11-themes/hicolor-icon-theme ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Gtk2 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtk+:2 ruby_targets_ruby19? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=5f910b9c884d6669857db2f1d2e64771 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk2-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gtk2-2.2.5 deleted file mode 100644 index 4954dcc61a67..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gtk2-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtk+:2 x11-themes/hicolor-icon-theme ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Gtk2 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtk+:2 ruby_targets_ruby19? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=d48b6590464f0c9f5d99e9838724f3f8 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.0.7 index 9afa10eec2f2..afe48776b35d 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk2-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk2-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Gtk2 bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=x11-libs/gtk+:2 ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=bdf7d098020db05501cb70c01606da2c +_md5_=f79d1bf070d6711ad463faab296836d9 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk3-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gtk3-2.2.3-r1 deleted file mode 100644 index 367ed3bffc67..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gtk3-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtk+:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.3[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Gtk3 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtk+:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=0192c31dca2d1087a4f1fa426af5b94a diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk3-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gtk3-2.2.5 deleted file mode 100644 index 8f0e75361b71..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gtk3-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtk+:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-pango-2.2.5[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Gtk3 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtk+:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-atk-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=97f8e275269eba5d3c6d1856a2ca28e6 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.0.7-r1 b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.0.7-r1 index b827626a89e2..62ee2930239a 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtk3-3.0.7-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-gtk3-3.0.7-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Gtk3 bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=x11-libs/gtk+:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gdk3-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gio2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gdk3-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gio2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-atk-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gdk3-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gio2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-pango-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=765eb52f083f4d678b8e8b0caa47f25c +_md5_=56d2d8f00f1707d09b47d9a40c044fe2 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-2.2.3-r1 deleted file mode 100644 index 63034ce1af6d..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtksourceview:2.0 test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby bindings for gtksourceview -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtksourceview:2.0 ruby_targets_ruby19? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e9d996164bd277420067b3437ea2265d diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-2.2.5 deleted file mode 100644 index 403e660d5cd4..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtksourceview:2.0 test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby bindings for gtksourceview -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtksourceview:2.0 ruby_targets_ruby19? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=f4d806d21dc732395783091ccedff302 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.0.7 index c460b783ed47..37a472adf5cb 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby bindings for gtksourceview EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=x11-libs/gtksourceview:2.0 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=252e88849bc54bacd1697c522105e02b +_md5_=d699e0e3b563f8bbc7423eb0a742b4a5 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-2.2.3-r1 deleted file mode 100644 index 1140a37b88ce..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtksourceview:3.0 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Gtk3 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtksourceview:3.0 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=849e620926cd544bb5aab68e4b660a66 diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-2.2.5 deleted file mode 100644 index fb2ff81b1586..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/gtksourceview:3.0 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Gtk3 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/gtksourceview:3.0 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=af3eec3f649da7fc959c39bae1992e1a diff --git a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.0.7 index 158c90f0f106..77d12efe1666 100644 --- a/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-gtksourceview3-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Gtk3 bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=x11-libs/gtksourceview:3.0 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=01456c98d288aa69c6ca1a6fccce0261 +_md5_=2a56621e79c7c0e3e7ba093a0451e286 diff --git a/metadata/md5-cache/dev-ruby/ruby-pango-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-pango-2.2.3-r1 deleted file mode 100644 index 953bc04e1f8f..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-pango-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=x11-libs/pango-1.2.1 test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Pango bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=>=x11-libs/pango-1.2.1 ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] >=dev-ruby/rcairo-1.12.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=f633d28fd485819e66e622e7bb1a0135 diff --git a/metadata/md5-cache/dev-ruby/ruby-pango-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-pango-2.2.5 deleted file mode 100644 index 3793f67afb53..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-pango-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=x11-libs/pango-1.2.1 test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby Pango bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=>=x11-libs/pango-1.2.1 ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=2ceab7b3d0eb9e0723ce85763259b77f diff --git a/metadata/md5-cache/dev-ruby/ruby-pango-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-pango-3.0.7 index bce59c2f88f3..b9681d3f1bc1 100644 --- a/metadata/md5-cache/dev-ruby/ruby-pango-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-pango-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby Pango bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=>=x11-libs/pango-1.2.1 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby20] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby21] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby22] >=dev-ruby/rcairo-1.14.0[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=3b83b152132f7f2fff2fb7e20551185d +_md5_=23c1818e30dcc70b74f9b8f1c9f6ea2f diff --git a/metadata/md5-cache/dev-ruby/ruby-poppler-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-poppler-2.2.3-r1 deleted file mode 100644 index e85a48642574..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-poppler-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=app-text/poppler[cairo] test? ( ruby_targets_ruby19? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby19] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby poppler-glib bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=app-text/poppler[cairo] ruby_targets_ruby19? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby19] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=76b055c678657f755eb7203c383baa23 diff --git a/metadata/md5-cache/dev-ruby/ruby-poppler-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-poppler-2.2.5 deleted file mode 100644 index 715e8f3e24ed..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-poppler-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=app-text/poppler[cairo] test? ( ruby_targets_ruby19? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby19] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby poppler-glib bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=app-text/poppler[cairo] ruby_targets_ruby19? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby19] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=f86519350d0fda120f3c8507a894b929 diff --git a/metadata/md5-cache/dev-ruby/ruby-poppler-3.0.7-r1 b/metadata/md5-cache/dev-ruby/ruby-poppler-3.0.7-r1 index 79cce22fdf34..74e10d3bf4c2 100644 --- a/metadata/md5-cache/dev-ruby/ruby-poppler-3.0.7-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-poppler-3.0.7-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby poppler-glib bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=app-text/poppler[cairo] ruby_targets_ruby20? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby20] >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby21] >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/ruby-gdkpixbuf2[ruby_targets_ruby22] >=dev-ruby/ruby-glib2-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=dc5116f3fb7d00a9d0751d50d3f65a32 +_md5_=3f7c66d46d356d41a376aa75f4cab3bc diff --git a/metadata/md5-cache/dev-ruby/ruby-rsvg-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-rsvg-2.2.3-r1 deleted file mode 100644 index a90988d3817f..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-rsvg-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=gnome-base/librsvg-2.8 test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] cairo? ( dev-ruby/rcairo[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] cairo? ( dev-ruby/rcairo[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] cairo? ( dev-ruby/rcairo[ruby_targets_ruby22] ) ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby bindings for librsvg -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=cairo test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=>=gnome-base/librsvg-2.8 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby20] cairo? ( dev-ruby/rcairo[ruby_targets_ruby20] ) ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby21] cairo? ( dev-ruby/rcairo[ruby_targets_ruby21] ) ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gdkpixbuf2-2.2.3[ruby_targets_ruby22] cairo? ( dev-ruby/rcairo[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=80730ba13ca52ab869c6f4fa42de13a0 diff --git a/metadata/md5-cache/dev-ruby/ruby-rsvg-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-rsvg-2.2.5 deleted file mode 100644 index 6b52e40e1d3d..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-rsvg-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=gnome-base/librsvg-2.8 test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/rcairo-1.12.8[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/rcairo-1.12.8[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/rcairo-1.12.8[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby bindings for librsvg -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=>=gnome-base/librsvg-2.8 ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby20] >=dev-ruby/rcairo-1.12.8[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby21] >=dev-ruby/rcairo-1.12.8[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-2.2.5[ruby_targets_ruby22] >=dev-ruby/rcairo-1.12.8[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=05ac6316c88ffd90bdc9bc73bf34dadd diff --git a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.0.7 index 441e735c40f9..e82225246a26 100644 --- a/metadata/md5-cache/dev-ruby/ruby-rsvg-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-rsvg-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby bindings for librsvg EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=>=gnome-base/librsvg-2.8 ruby_targets_ruby20? ( >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby20] >=dev-ruby/rcairo-1.12.8[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby21] >=dev-ruby/rcairo-1.12.8[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gdkpixbuf2-3.0.7[ruby_targets_ruby22] >=dev-ruby/rcairo-1.12.8[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=07753fcc569fb44aeaa6b0d30147e1e5 +_md5_=f389f243dfabeb155ade82cee6ae2c88 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-vte-2.2.3-r1 deleted file mode 100644 index 1f048b950832..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-vte-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=x11-libs/vte-0.12.1:0 test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby vte bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=>=x11-libs/vte-0.12.1:0 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=288ca9b26fd32b46ec067b8b2857b657 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-vte-2.2.5 deleted file mode 100644 index 3c1abc7dba50..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-vte-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=>=x11-libs/vte-0.12.1:0 test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby vte bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=>=x11-libs/vte-0.12.1:0 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=288ca9b26fd32b46ec067b8b2857b657 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-vte-3.0.7 index 7a4bdde51c85..4f7d7b8a0f03 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-vte-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby vte bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=>=x11-libs/vte-0.12.1:0 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=49f96d2317fa7de99be33c7fbbde86a5 +_md5_=56a88474f1504f51e15a120714d18e4b diff --git a/metadata/md5-cache/dev-ruby/ruby-vte3-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-vte3-2.2.3-r1 deleted file mode 100644 index 8b246866af55..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-vte3-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/vte:2.90 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby VTE bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/vte:2.90 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=5d9793c71c926647290cd15af6096b15 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte3-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-vte3-2.2.5 deleted file mode 100644 index 9602171737aa..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-vte3-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=x11-libs/vte:2.90 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby VTE bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=x11-libs/vte:2.90 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=5d9793c71c926647290cd15af6096b15 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte3-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-vte3-3.0.7 index 26362be7751f..5e159684415f 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte3-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-vte3-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby VTE bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=x11-libs/vte:2.90 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=602942190b616bbe5fc8bdafa71be4b4 +_md5_=6239612ec57631f2ee1b6d7aebdfbee5 diff --git a/metadata/md5-cache/dev-ruby/ruby-vte3-3.0.7-r1 b/metadata/md5-cache/dev-ruby/ruby-vte3-3.0.7-r1 index 336fa6d81f53..eebb2a4b5058 100644 --- a/metadata/md5-cache/dev-ruby/ruby-vte3-3.0.7-r1 +++ b/metadata/md5-cache/dev-ruby/ruby-vte3-3.0.7-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby VTE bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=x11-libs/vte:2.91 ruby_targets_ruby20? ( >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=e7d9f4d82ca763218cd638f2bdce50fb +_md5_=d7e0f981d2515f55b53de46376f85673 diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-2.2.3-r1 deleted file mode 100644 index 02cc0f9cef3f..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=net-libs/webkit-gtk:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby WebKitGtk bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=net-libs/webkit-gtk:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=0003fd1f23a0b95ee269bfb284738257 diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-2.2.5 deleted file mode 100644 index 2a9384683931..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=net-libs/webkit-gtk:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby WebKitGtk bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=net-libs/webkit-gtk:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=9a7a889b1f3f70b005f83aaf39f5f635 diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-3.0.7 index 73505e6be183..b69514a9fcc9 100644 --- a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-webkit-gtk-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby WebKitGtk bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=net-libs/webkit-gtk:3 ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=72cb748f994de833e62f63e1e0209e46 +_md5_=093d2a32ba5c68befafd18dcfe99327b diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-2.2.3-r1 b/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-2.2.3-r1 deleted file mode 100644 index e673abb5e0aa..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-2.2.3-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=net-libs/webkit-gtk:2 ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.3[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby WebKitGtk+ for Gtk 2.0 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=net-libs/webkit-gtk:2 ruby_targets_ruby19? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby19] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-2.2.3[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.3[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.3.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=e4a2690b09f3e55b01f951536c8e9773 diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-2.2.5 b/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-2.2.5 deleted file mode 100644 index d4fcc73afb87..000000000000 --- a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-2.2.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=net-libs/webkit-gtk:2 ruby_targets_ruby19? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-glib2-2.2.5[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] ) ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) ) virtual/pkgconfig ruby_targets_ruby19? ( dev-ruby/pkg-config[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/pkg-config[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/pkg-config[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/pkg-config[ruby_targets_ruby22] ) -DESCRIPTION=Ruby WebKitGtk+ for Gtk 2.0 bindings -EAPI=5 -HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ -IUSE=test test elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=Ruby -RDEPEND=net-libs/webkit-gtk:2 ruby_targets_ruby19? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby19] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-2.2.5[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-2.2.5[ruby_targets_ruby22] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) -REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) -SLOT=0 -SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-2.2.5.tar.gz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=0171852e94ee2320ee9c399c8ef14d93 diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-3.0.7 index facd60d12a4f..897042f637f8 100644 --- a/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-webkit-gtk2-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby WebKitGtk+ for Gtk 2.0 bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=net-libs/webkit-gtk:2 ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gtk2-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=a9fb5b6208a44570bd4a1244f75d06c2 +_md5_=bd26477ad54ae942116c397ee4f5fca1 diff --git a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.0.7 b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.0.7 index 57940dfab1b3..33af4a291355 100644 --- a/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.0.7 +++ b/metadata/md5-cache/dev-ruby/ruby-webkit2-gtk-3.0.7 @@ -4,11 +4,11 @@ DESCRIPTION=Ruby WebKitGtk+ for Gtk 3.0 bindings EAPI=5 HOMEPAGE=http://ruby-gnome2.sourceforge.jp/ IUSE=test test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 test -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc ~x86 LICENSE=Ruby RDEPEND=net-libs/webkit-gtk:4 ruby_targets_ruby20? ( >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby20] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby21] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/ruby-gobject-introspection-3.0.7[ruby_targets_ruby22] >=dev-ruby/ruby-gtk3-3.0.7[ruby_targets_ruby22] ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ruby_targets_ruby22? ( dev-lang/ruby:2.2 ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_ruby21? ( virtual/rubygems[ruby_targets_ruby21] ) ruby_targets_ruby22? ( virtual/rubygems[ruby_targets_ruby22] ) REQUIRED_USE=|| ( ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ) SLOT=0 SRC_URI=mirror://sourceforge/ruby-gnome2/ruby-gnome2-all-3.0.7.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-ng-gnome2 c61bccb936b239bb053e8cd8d3469d69 ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 -_md5_=6ca5b4ef6658284779fa40867be05232 +_md5_=994648cd77b74a0d2c634ad15a75cd88 diff --git a/metadata/md5-cache/dev-ruby/ruby2ruby-2.3.0 b/metadata/md5-cache/dev-ruby/ruby2ruby-2.3.0 index 97c5d54d6dff..5f6ac1f6f824 100644 --- a/metadata/md5-cache/dev-ruby/ruby2ruby-2.3.0 +++ b/metadata/md5-cache/dev-ruby/ruby2ruby-2.3.0 @@ -4,11 +4,11 @@ DESCRIPTION=Generates readable ruby from ParseTree EAPI=5 HOMEPAGE=https://github.com/seattlerb/ruby2ruby IUSE=test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 doc test test -KEYWORDS=alpha ~amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=GPL-2 RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/sexp_processor-4.6.0:4[ruby_targets_ruby20] >=dev-ruby/ruby_parser-3.1:3[ruby_targets_ruby20] !=dev-ruby/sexp_processor-4.6.0:4[ruby_targets_ruby21] >=dev-ruby/ruby_parser-3.1:3[ruby_targets_ruby21] !=dev-ruby/sexp_processor-4.6.0:4[ruby_targets_ruby22] >=dev-ruby/ruby_parser-3.1:3[ruby_targets_ruby22] !=dev-ruby/sexp_processor-4.6.0:4[ruby_targets_ruby23] >=dev-ruby/ruby_parser-3.1:3[ruby_targets_ruby23] !=dev-ruby/sexp_processor-4.7.0:4[ruby_targets_ruby20] !=dev-ruby/sexp_processor-4.7.0:4[ruby_targets_ruby21] !=dev-ruby/sexp_processor-4.7.0:4[ruby_targets_ruby22] !=dev-ruby/sexp_processor-4.7.0:4[ruby_targets_ruby23] !=dev-db/sqlite-3.6.16:3 ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=0 SRC_URI=mirror://rubygems/sqlite3-1.3.11.gem _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-fakegem 836f858624840907bbb6ae6f2c881cb7 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=d6e77ef1c749f27b5ea1002771e136e1 +_md5_=1ee52ad0ef4f3b28940e96f8a98b9b90 diff --git a/metadata/md5-cache/dev-scheme/guile-1.8.8-r3 b/metadata/md5-cache/dev-scheme/guile-1.8.8-r3 new file mode 100644 index 000000000000..07e06eec10e4 --- /dev/null +++ b/metadata/md5-cache/dev-scheme/guile-1.8.8-r3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare +DEPEND=>=dev-libs/gmp-4.1:0= dev-libs/libltdl:0= sys-devel/gettext sys-libs/ncurses:0= emacs? ( virtual/emacs ) readline? ( sys-libs/readline:0= ) sys-apps/texinfo sys-devel/libtool !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Scheme interpreter +EAPI=5 +HOMEPAGE=https://www.gnu.org/software/guile/ +IUSE=debug debug-freelist debug-malloc +deprecated discouraged emacs networking nls readline +regex +threads +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +LICENSE=LGPL-2.1 +RDEPEND=>=dev-libs/gmp-4.1:0= dev-libs/libltdl:0= sys-devel/gettext sys-libs/ncurses:0= emacs? ( virtual/emacs ) readline? ( sys-libs/readline:0= ) +RESTRICT=!regex? ( test ) +SLOT=12/8 +SRC_URI=mirror://gnu/guile/guile-1.8.8.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c elisp-common 9f56c4e9bf1282dbfc2a5a09e1124e74 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=e9bb0de5693af2d90c62859e47a9b831 diff --git a/metadata/md5-cache/dev-scheme/guile-2.0.12-r1 b/metadata/md5-cache/dev-scheme/guile-2.0.12-r1 deleted file mode 100644 index 14cea218610f..000000000000 --- a/metadata/md5-cache/dev-scheme/guile-2.0.12-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=config configure install postinst prepare -DEPEND=>=dev-libs/boehm-gc-7.0[threads?] dev-libs/gmp:= virtual/libffi dev-libs/libltdl:= dev-libs/libunistring sys-devel/libtool sys-libs/ncurses:0= sys-libs/readline:0= virtual/pkgconfig sys-apps/texinfo sys-devel/gettext !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 -DESCRIPTION=GNU Ubiquitous Intelligent Language for Extensions -EAPI=6 -HOMEPAGE=https://www.gnu.org/software/guile/ -IUSE=debug debug-malloc +deprecated +networking +nls +regex +threads -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos -LICENSE=LGPL-3+ -RDEPEND=>=dev-libs/boehm-gc-7.0[threads?] dev-libs/gmp:= virtual/libffi dev-libs/libltdl:= dev-libs/libunistring sys-devel/libtool sys-libs/ncurses:0= sys-libs/readline:0= -SLOT=12/22 -SRC_URI=mirror://gnu/guile/guile-2.0.12.tar.gz -_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=5cd866a69ce9b327b27159acd9c32fd2 diff --git a/metadata/md5-cache/dev-util/jenkins-bin-2.22 b/metadata/md5-cache/dev-util/jenkins-bin-2.22 deleted file mode 100644 index 3b40c0ff5b59..000000000000 --- a/metadata/md5-cache/dev-util/jenkins-bin-2.22 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install setup -DEPEND=virtual/pkgconfig -DESCRIPTION=Extensible continuous integration server -EAPI=6 -HOMEPAGE=http://jenkins-ci.org/ -KEYWORDS=~amd64 ~x86 ~amd64-linux -LICENSE=MIT -RDEPEND=media-fonts/dejavu media-libs/freetype !dev-util/jenkins-bin:lts >=virtual/jre-1.7.0 -RESTRICT=mirror -SLOT=0 -SRC_URI=http://mirrors.jenkins-ci.org/war/2.22/jenkins.war -> jenkins-bin-2.22.war -_eclasses_=multilib 165fc17c38d1b11dac2008280dab6e80 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 -_md5_=42b6de4f6461dddac1cb5f77d47a1ed9 diff --git a/metadata/md5-cache/dev-util/jenkins-bin-2.23 b/metadata/md5-cache/dev-util/jenkins-bin-2.28 similarity index 86% rename from metadata/md5-cache/dev-util/jenkins-bin-2.23 rename to metadata/md5-cache/dev-util/jenkins-bin-2.28 index 034c5a44f4c6..b025bc8466f7 100644 --- a/metadata/md5-cache/dev-util/jenkins-bin-2.23 +++ b/metadata/md5-cache/dev-util/jenkins-bin-2.28 @@ -8,6 +8,6 @@ LICENSE=MIT RDEPEND=media-fonts/dejavu media-libs/freetype !dev-util/jenkins-bin:lts >=virtual/jre-1.7.0 RESTRICT=mirror SLOT=0 -SRC_URI=http://mirrors.jenkins-ci.org/war/2.23/jenkins.war -> jenkins-bin-2.23.war +SRC_URI=http://mirrors.jenkins-ci.org/war/2.28/jenkins.war -> jenkins-bin-2.28.war _eclasses_=multilib 165fc17c38d1b11dac2008280dab6e80 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 _md5_=42b6de4f6461dddac1cb5f77d47a1ed9 diff --git a/metadata/md5-cache/dev-util/shelltestrunner-1.3.5-r1 b/metadata/md5-cache/dev-util/shelltestrunner-1.3.5-r1 index 82793f37375f..00e1b6927ae5 100644 --- a/metadata/md5-cache/dev-util/shelltestrunner-1.3.5-r1 +++ b/metadata/md5-cache/dev-util/shelltestrunner-1.3.5-r1 @@ -9,4 +9,4 @@ RDEPEND=>=dev-haskell/cmdargs-0.7:= =dev-haskell/di SLOT=0 SRC_URI=mirror://hackage/packages/archive/shelltestrunner/1.3.5/shelltestrunner-1.3.5.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=895151197dd6937bd0d11f082fbf2ac4 +_md5_=9b1e7eef831f7f970d2969d71af898cd diff --git a/metadata/md5-cache/dev-vcs/darcs-2.12.4 b/metadata/md5-cache/dev-vcs/darcs-2.12.4 new file mode 100644 index 000000000000..edfad91eb672 --- /dev/null +++ b/metadata/md5-cache/dev-vcs/darcs-2.12.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-haskell/async-2.0.1.4:=[profile?] =dev-haskell/attoparsec-0.11:=[profile?] =dev-haskell/base16-bytestring-0.1:=[profile?] =dev-haskell/cryptohash-0.4:=[profile?] =dev-haskell/data-ordlist-0.4:=[profile?] =dev-haskell/fgl-5.5.0.1:=[profile?] =dev-haskell/graphviz-2999.17.0.1:=[profile?] =dev-haskell/hashable-1.1.2.5:=[profile?] =dev-haskell/haskeline-0.6.3:=[profile?] =dev-haskell/html-1.0.1.2:=[profile?] =dev-haskell/http-4000.2.8:=[profile?] =dev-haskell/mmap-0.5:=[profile?] =dev-haskell/mtl-2.1.2:=[profile?] =dev-haskell/old-time-1.1:=[profile?] =dev-haskell/parsec-3.1:=[profile?] =dev-haskell/random-1.0.1.1:=[profile?] =dev-haskell/regex-applicative-0.2:=[profile?] =dev-haskell/regex-compat-tdfa-0.95.1:=[profile?] =dev-haskell/sandi-0.4:=[profile?] =dev-haskell/tar-0.4:=[profile?] =dev-haskell/text-1.2.1.3:=[profile?] =dev-haskell/transformers-compat-0.4:=[profile?] =dev-haskell/unix-compat-0.1.2:=[profile?] =dev-haskell/utf8-string-0.3.6:=[profile?] =dev-haskell/vector-0.10.0.1:=[profile?] =dev-haskell/zip-archive-0.2.3:=[profile?] =dev-haskell/zlib-0.5.4.1:=[profile?] =dev-lang/ghc-7.10.1:= curl? ( net-misc/curl ) network-uri? ( >=dev-haskell/network-2.6:=[profile?] =dev-haskell/network-uri-2.6:=[profile?] =dev-haskell/network-2.4.1.2:=[profile?] =dev-haskell/terminfo-0.3:=[profile?] =dev-haskell/cabal-1.22.2.0 test? ( >=dev-haskell/cmdargs-0.10 =dev-haskell/findbin-0.0 =dev-haskell/hunit-1.2.5.2 =dev-haskell/quickcheck-2.6 =dev-haskell/shelly-1.6.2 =dev-haskell/split-0.2.2 =dev-haskell/test-framework-0.4.0 =dev-haskell/test-framework-hunit-0.2.2 =dev-haskell/test-framework-quickcheck2-0.3 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=a distributed, interactive, smart revision control system +EAPI=6 +HOMEPAGE=http://darcs.net/ +IUSE=+curl +network-uri +terminfo +threaded doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-haskell/async-2.0.1.4:=[profile?] =dev-haskell/attoparsec-0.11:=[profile?] =dev-haskell/base16-bytestring-0.1:=[profile?] =dev-haskell/cryptohash-0.4:=[profile?] =dev-haskell/data-ordlist-0.4:=[profile?] =dev-haskell/fgl-5.5.0.1:=[profile?] =dev-haskell/graphviz-2999.17.0.1:=[profile?] =dev-haskell/hashable-1.1.2.5:=[profile?] =dev-haskell/haskeline-0.6.3:=[profile?] =dev-haskell/html-1.0.1.2:=[profile?] =dev-haskell/http-4000.2.8:=[profile?] =dev-haskell/mmap-0.5:=[profile?] =dev-haskell/mtl-2.1.2:=[profile?] =dev-haskell/old-time-1.1:=[profile?] =dev-haskell/parsec-3.1:=[profile?] =dev-haskell/random-1.0.1.1:=[profile?] =dev-haskell/regex-applicative-0.2:=[profile?] =dev-haskell/regex-compat-tdfa-0.95.1:=[profile?] =dev-haskell/sandi-0.4:=[profile?] =dev-haskell/tar-0.4:=[profile?] =dev-haskell/text-1.2.1.3:=[profile?] =dev-haskell/transformers-compat-0.4:=[profile?] =dev-haskell/unix-compat-0.1.2:=[profile?] =dev-haskell/utf8-string-0.3.6:=[profile?] =dev-haskell/vector-0.10.0.1:=[profile?] =dev-haskell/zip-archive-0.2.3:=[profile?] =dev-haskell/zlib-0.5.4.1:=[profile?] =dev-lang/ghc-7.10.1:= curl? ( net-misc/curl ) network-uri? ( >=dev-haskell/network-2.6:=[profile?] =dev-haskell/network-uri-2.6:=[profile?] =dev-haskell/network-2.4.1.2:=[profile?] =dev-haskell/terminfo-0.3:=[profile?] =dev-haskell/exceptions-0.6:= dev-haskell/feed:= dev-haskell/hslogger:= dev-haskell/http-client:= dev-haskell/http-conduit:= dev-haskell/http-types:= dev-haskell/ifelse:= dev-haskell/missingh:= dev-haskell/monad-control:= dev-haskell/monad-logger:= >=dev-haskell/mtl-2:= dev-haskell/old-locale:= >=dev-haskell/optparse-applicative-0.11.0:= dev-haskell/persistent:= dev-haskell/persistent-sqlite:= dev-haskell/persistent-template:= >=dev-haskell/quickcheck-2.1:2= dev-haskell/random:= dev-haskell/regex-tdfa:= dev-haskell/resourcet:= dev-haskell/safesemaphore:= dev-haskell/sandi:= >=dev-haskell/stm-2.3:= dev-haskell/text:= dev-haskell/transformers:= dev-haskell/unix-compat:= dev-haskell/unordered-containers:= dev-haskell/utf8-string:= >=dev-haskell/uuid-1.2.6:= >=dev-lang/ghc-7.6.1:= assistant? ( dev-haskell/dns:= dev-haskell/hinotify:= dev-haskell/mountpoints:= sys-process/lsof ) benchmark? ( dev-haskell/criterion:= ) concurrentoutput? ( >=dev-haskell/concurrent-output-1.6:= ) cryptonite? ( dev-haskell/cryptonite:= ) !cryptonite? ( >=dev-haskell/cryptohash-0.11.0:= ) dbus? ( >=dev-haskell/dbus-0.10.7:= >=dev-haskell/fdo-notify-0.3:= ) magicmime? ( dev-haskell/magic:= ) network-uri? ( >=dev-haskell/network-2.6:= >=dev-haskell/network-uri-2.6:= ) !network-uri? ( >=dev-haskell/network-2.4:= =dev-haskell/aws-0.9.2:= dev-haskell/conduit:= dev-haskell/conduit-extra:= ) torrentparser? ( >=dev-haskell/torrent-10000.0.0:= ) webapp? ( dev-haskell/blaze-builder:= dev-haskell/byteable:= dev-haskell/clientsession:= dev-haskell/crypto-api:= >=dev-haskell/path-pieces-0.1.4:= dev-haskell/securemem:= >=dev-haskell/shakespeare-2.0.0:= dev-haskell/wai:= dev-haskell/wai-extra:= >=dev-haskell/warp-3.0.0.5:= >=dev-haskell/warp-tls-1.4:= >=dev-haskell/yesod-1.2.6:= >=dev-haskell/yesod-core-1.2.19:= >=dev-haskell/yesod-default-1.2.0:= >=dev-haskell/yesod-form-1.3.15:= >=dev-haskell/yesod-static-1.2.4:= ) webdav? ( >=dev-haskell/dav-1.0:= ) xmpp? ( >=dev-haskell/gnutls-0.1.4:= dev-haskell/network-protocol-xmpp:= dev-haskell/xml-types:= ) dev-vcs/git >=dev-haskell/cabal-1.16.0 dev-lang/perl doc? ( www-apps/ikiwiki net-misc/rsync ) +DESCRIPTION=manage files with git, without checking their contents into git +EAPI=6 +HOMEPAGE=http://git-annex.branchable.com/ +IUSE=+assistant benchmark +concurrentoutput +cryptonite doc +dbus +magicmime +network-uri +pairing +s3 +torrentparser +webapp +webdav +xmpp +KEYWORDS=~amd64 ~x86 ~amd64-linux +LICENSE=GPL-3 +RDEPEND=dev-haskell/aeson:= dev-haskell/async:= dev-haskell/bloomfilter:= dev-haskell/case-insensitive:= dev-haskell/data-default:= dev-haskell/disk-free-space:= dev-haskell/dlist:= dev-haskell/edit-distance:= dev-haskell/esqueleto:= >=dev-haskell/exceptions-0.6:= dev-haskell/feed:= dev-haskell/hslogger:= dev-haskell/http-client:= dev-haskell/http-conduit:= dev-haskell/http-types:= dev-haskell/ifelse:= dev-haskell/missingh:= dev-haskell/monad-control:= dev-haskell/monad-logger:= >=dev-haskell/mtl-2:= dev-haskell/old-locale:= >=dev-haskell/optparse-applicative-0.11.0:= dev-haskell/persistent:= dev-haskell/persistent-sqlite:= dev-haskell/persistent-template:= >=dev-haskell/quickcheck-2.1:2= dev-haskell/random:= dev-haskell/regex-tdfa:= dev-haskell/resourcet:= dev-haskell/safesemaphore:= dev-haskell/sandi:= >=dev-haskell/stm-2.3:= dev-haskell/text:= dev-haskell/transformers:= dev-haskell/unix-compat:= dev-haskell/unordered-containers:= dev-haskell/utf8-string:= >=dev-haskell/uuid-1.2.6:= >=dev-lang/ghc-7.6.1:= assistant? ( dev-haskell/dns:= dev-haskell/hinotify:= dev-haskell/mountpoints:= sys-process/lsof ) benchmark? ( dev-haskell/criterion:= ) concurrentoutput? ( >=dev-haskell/concurrent-output-1.6:= ) cryptonite? ( dev-haskell/cryptonite:= ) !cryptonite? ( >=dev-haskell/cryptohash-0.11.0:= ) dbus? ( >=dev-haskell/dbus-0.10.7:= >=dev-haskell/fdo-notify-0.3:= ) magicmime? ( dev-haskell/magic:= ) network-uri? ( >=dev-haskell/network-2.6:= >=dev-haskell/network-uri-2.6:= ) !network-uri? ( >=dev-haskell/network-2.4:= =dev-haskell/aws-0.9.2:= dev-haskell/conduit:= dev-haskell/conduit-extra:= ) torrentparser? ( >=dev-haskell/torrent-10000.0.0:= ) webapp? ( dev-haskell/blaze-builder:= dev-haskell/byteable:= dev-haskell/clientsession:= dev-haskell/crypto-api:= >=dev-haskell/path-pieces-0.1.4:= dev-haskell/securemem:= >=dev-haskell/shakespeare-2.0.0:= dev-haskell/wai:= dev-haskell/wai-extra:= >=dev-haskell/warp-3.0.0.5:= >=dev-haskell/warp-tls-1.4:= >=dev-haskell/yesod-1.2.6:= >=dev-haskell/yesod-core-1.2.19:= >=dev-haskell/yesod-default-1.2.0:= >=dev-haskell/yesod-form-1.3.15:= >=dev-haskell/yesod-static-1.2.4:= ) webdav? ( >=dev-haskell/dav-1.0:= ) xmpp? ( >=dev-haskell/gnutls-0.1.4:= dev-haskell/network-protocol-xmpp:= dev-haskell/xml-types:= ) dev-vcs/git +RESTRICT=test +SLOT=0 +SRC_URI=mirror://hackage/packages/archive/git-annex/6.20161031/git-annex-6.20161031.tar.gz +_eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=13269f46140df5e9cd55936930f97005 diff --git a/metadata/md5-cache/games-board/goatee-gtk-0.3.1.1 b/metadata/md5-cache/games-board/goatee-gtk-0.3.1.1 new file mode 100644 index 000000000000..c439a7fac623 --- /dev/null +++ b/metadata/md5-cache/games-board/goatee-gtk-0.3.1.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm setup test +DEPEND=>=dev-games/goatee-0.3:=[profile?] =dev-haskell/cairo-0.13:=[profile?] =dev-haskell/glib-0.13:=[profile?] =dev-haskell/gtk-0.13:=[profile?] =dev-haskell/mtl-2.1:=[profile?] =dev-haskell/parsec-3.1:=[profile?] =dev-lang/ghc-7.4.1:= >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/hunit-1.2 =dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=A monadic take on a 2,500-year-old board game - GTK+ UI +EAPI=6 +HOMEPAGE=http://khumba.net/projects/goatee +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=AGPL-3 +RDEPEND=>=dev-games/goatee-0.3:=[profile?] =dev-haskell/cairo-0.13:=[profile?] =dev-haskell/glib-0.13:=[profile?] =dev-haskell/gtk-0.13:=[profile?] =dev-haskell/mtl-2.1:=[profile?] =dev-haskell/parsec-3.1:=[profile?] =dev-lang/ghc-7.4.1:= +SLOT=0/0.3.1.1 +SRC_URI=mirror://hackage/packages/archive/goatee-gtk/0.3.1.1/goatee-gtk-0.3.1.1.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=e87b310b159a6d7115c35cc216ee87d1 diff --git a/metadata/md5-cache/games-simulation/openttd-1.5.3 b/metadata/md5-cache/games-simulation/openttd-1.6.1 similarity index 66% rename from metadata/md5-cache/games-simulation/openttd-1.5.3 rename to metadata/md5-cache/games-simulation/openttd-1.6.1 index 61566deba571..19e8ae09a0ab 100644 --- a/metadata/md5-cache/games-simulation/openttd-1.5.3 +++ b/metadata/md5-cache/games-simulation/openttd-1.6.1 @@ -1,15 +1,15 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack +DEFINED_PHASES=compile configure install postinst postrm preinst DEPEND=!dedicated? ( media-libs/libsdl[sound,X,video] icu? ( dev-libs/icu:= ) truetype? ( media-libs/fontconfig media-libs/freetype:2 sys-libs/zlib ) ) lzo? ( dev-libs/lzo:2 ) iconv? ( virtual/libiconv ) png? ( media-libs/libpng:0 ) zlib? ( sys-libs/zlib ) virtual/pkgconfig >=sys-apps/sed-4 DESCRIPTION=OpenTTD is a clone of Transport Tycoon Deluxe -EAPI=5 +EAPI=6 HOMEPAGE=http://www.openttd.org/ IUSE=aplaymidi debug dedicated iconv icu lzo +openmedia +png cpu_flags_x86_sse +timidity +truetype zlib -KEYWORDS=amd64 ~ppc ~ppc64 x86 +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=GPL-2 PDEPEND=!dedicated? ( openmedia? ( games-misc/openmsx games-misc/opensfx ) aplaymidi? ( media-sound/alsa-utils ) !aplaymidi? ( timidity? ( media-sound/timidity++ ) ) ) openmedia? ( >=games-misc/opengfx-0.4.7 ) -RDEPEND=!dedicated? ( media-libs/libsdl[sound,X,video] icu? ( dev-libs/icu:= ) truetype? ( media-libs/fontconfig media-libs/freetype:2 sys-libs/zlib ) ) lzo? ( dev-libs/lzo:2 ) iconv? ( virtual/libiconv ) png? ( media-libs/libpng:0 ) zlib? ( sys-libs/zlib ) games-misc/games-envd +RDEPEND=!dedicated? ( media-libs/libsdl[sound,X,video] icu? ( dev-libs/icu:= ) truetype? ( media-libs/fontconfig media-libs/freetype:2 sys-libs/zlib ) ) lzo? ( dev-libs/lzo:2 ) iconv? ( virtual/libiconv ) png? ( media-libs/libpng:0 ) zlib? ( sys-libs/zlib ) RESTRICT=test SLOT=0 -SRC_URI=http://binaries.openttd.org/releases/1.5.3/openttd-1.5.3-source.tar.gz -_eclasses_=base 3fe4f8980633fd7bc69e9887209ba2fe eutils b83a2420b796f7c6eff682679d08fe25 games 2cf0d67d765e6358b435ccda30c13ad8 gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=3d5acb12a943bb066dd53979bdf7e364 +SRC_URI=http://binaries.openttd.org/releases/1.6.1/openttd-1.6.1-source.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=5fda35791cd4dcd8cba610455592faf6 diff --git a/metadata/md5-cache/kde-apps/kdepim-common-libs-4.14.11_pre20160211 b/metadata/md5-cache/kde-apps/kdepim-common-libs-4.14.11_pre20160211 index 8c052c365bcf..ac37149fb622 100644 --- a/metadata/md5-cache/kde-apps/kdepim-common-libs-4.14.11_pre20160211 +++ b/metadata/md5-cache/kde-apps/kdepim-common-libs-4.14.11_pre20160211 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/baloo-4.14.3:4[aqua=] >=kde-apps/kdepimlibs-4.14.11_pre20160211:4[aqua=,akonadi(+)] app-crypt/gpgme dev-libs/grantlee:0 kde-apps/akonadi:4 google? ( net-libs/libkgapi:4 ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) >=dev-qt/qtwebkit-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=,webkit] +DEPEND=>=kde-apps/kdepimlibs-4.14.11_pre20160211:4[aqua=,akonadi(+)] app-crypt/gpgme dev-libs/grantlee:0 kde-apps/akonadi:4 kde-frameworks/baloo:4 google? ( net-libs/libkgapi:4 ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) >=dev-qt/qtwebkit-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=,webkit] DESCRIPTION=Common libraries for KDE PIM apps EAPI=6 HOMEPAGE=https://www.kde.org/ IUSE=debug google aqua KEYWORDS=amd64 ~arm x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=>=kde-base/baloo-4.14.3:4[aqua=] >=kde-apps/kdepimlibs-4.14.11_pre20160211:4[aqua=,akonadi(+)] app-crypt/gpgme dev-libs/grantlee:0 kde-apps/akonadi:4 google? ( net-libs/libkgapi:4 ) !kde-apps/libkdepim:4 !kde-apps/libkleo:4 !kde-apps/libkpgp:4 !=kde-apps/kdepim-runtime-4.14.11_pre20160211:4[aqua=] app-crypt/gnupg !kde-base/kdepim-common-libs:4 kde-frameworks/oxygen-icons >=dev-qt/qtwebkit-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=,webkit] +RDEPEND=>=kde-apps/kdepimlibs-4.14.11_pre20160211:4[aqua=,akonadi(+)] app-crypt/gpgme dev-libs/grantlee:0 kde-apps/akonadi:4 kde-frameworks/baloo:4 google? ( net-libs/libkgapi:4 ) !kde-apps/libkdepim:4 !kde-apps/libkleo:4 !kde-apps/libkpgp:4 !=kde-apps/kdepim-runtime-4.14.11_pre20160211:4[aqua=] app-crypt/gnupg !kde-base/kdepim-common-libs:4 kde-frameworks/oxygen-icons >=dev-qt/qtwebkit-4.8.5:4 dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=,webkit] RESTRICT=test SLOT=4/4.14 SRC_URI=https://quickgit.kde.org/?p=kdepim.git&a=snapshot&h=2aec255c6465676404e4694405c153e485e477d9&fmt=tgz -> kdepim-4.14.11_pre20160211.tar.gz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 kde4-meta cc1175ba18c9391fbc67922aecead7da multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=e71689d6a78ab383c24d2fb06039b464 +_md5_=6505cf7d89cecd1578e1a5091abc21fa diff --git a/metadata/md5-cache/kde-apps/kdepimlibs-4.14.10-r2 b/metadata/md5-cache/kde-apps/kdepimlibs-4.14.10-r2 index 43ec2e2f0f7e..2bb4098c870f 100644 --- a/metadata/md5-cache/kde-apps/kdepimlibs-4.14.10-r2 +++ b/metadata/md5-cache/kde-apps/kdepimlibs-4.14.10-r2 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=4/4.14 SRC_URI=mirror://kde/Attic/applications/15.04.3/src/kdepimlibs-4.14.10.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=1f273d8c987e9eb9dce2c9e831b28972 +_md5_=08016f9c0bd311cce27ea94573ff25bd diff --git a/metadata/md5-cache/kde-base/baloo-4.14.3 b/metadata/md5-cache/kde-base/baloo-4.14.3 deleted file mode 100644 index f70446bfe955..000000000000 --- a/metadata/md5-cache/kde-base/baloo-4.14.3 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-apps/kdepimlibs-4.14.3:4[aqua=] >=kde-base/kfilemetadata-4.14.3:4[aqua=] dev-libs/qjson =dev-libs/xapian-1.2*[chert] sys-apps/attr !=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -DESCRIPTION=Next generation of the Nepomuk project -EAPI=5 -HOMEPAGE=https://www.kde.org/ -IUSE=debug minimal aqua -KEYWORDS=amd64 ~arm x86 ~amd64-linux ~x86-linux -LICENSE=GPL-2 -RDEPEND=>=kde-apps/kdepimlibs-4.14.3:4[aqua=] >=kde-base/kfilemetadata-4.14.3:4[aqua=] dev-libs/qjson =dev-libs/xapian-1.2*[chert] sys-apps/attr !=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -RESTRICT=test -SLOT=4/4.14 -SRC_URI=mirror://kde/stable/4.14.3/src/baloo-4.14.3.tar.xz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=2916afe11ee57d31da6c9c2a9c805f0b diff --git a/metadata/md5-cache/kde-base/kdebase-startkde-4.11.22-r2 b/metadata/md5-cache/kde-base/kdebase-startkde-4.11.22-r2 index 142fc40df926..c4102cee5455 100644 --- a/metadata/md5-cache/kde-base/kdebase-startkde-4.11.22-r2 +++ b/metadata/md5-cache/kde-base/kdebase-startkde-4.11.22-r2 @@ -6,8 +6,8 @@ HOMEPAGE=https://www.kde.org/ IUSE=crash-reporter +handbook minimal +wallpapers aqua KEYWORDS=amd64 ~arm x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=>=kde-apps/attica-4.11.22:4[aqua=] >=kde-apps/kcmshell-4.11.22:4[aqua=] >=kde-apps/kcontrol-4.11.22:4[aqua=] >=kde-apps/kdebase-data-4.11.22:4[aqua=] >=kde-apps/kdebase-desktoptheme-4.11.22:4[aqua=] >=kde-apps/kdebase-kioslaves-4.11.22:4[aqua=] >=kde-apps/kdebase-menu-4.11.22:4[aqua=] >=kde-apps/kdebase-menu-icons-4.11.22:4[aqua=] >=kde-apps/kdebugdialog-4.11.22:4[aqua=] >=kde-apps/kdesu-4.11.22:4[aqua=] >=kde-apps/kdontchangethehostname-4.11.22:4[aqua=] >=kde-apps/keditfiletype-4.11.22:4[aqua=] >=kde-apps/kfile-4.11.22:4[aqua=] >=kde-apps/kfmclient-4.11.22:4[aqua=] >=kde-apps/kglobalaccel-4.11.22:4[aqua=] >=kde-apps/kiconfinder-4.11.22:4[aqua=] >=kde-apps/kimgio-4.11.22:4[aqua=] >=kde-apps/kioclient-4.11.22:4[aqua=] >=kde-apps/kmimetypefinder-4.11.22:4[aqua=] >=kde-apps/knetattach-4.11.22:4[aqua=] >=kde-apps/knewstuff-4.11.22:4[aqua=] >=kde-apps/knotify-4.11.22:4[aqua=] >=kde-apps/knotify-4.11.22:4[aqua=] >=kde-apps/kpasswdserver-4.11.22:4[aqua=] >=kde-apps/kquitapp-4.11.22:4[aqua=] >=kde-apps/kreadconfig-4.11.22:4[aqua=] >=kde-apps/kstart-4.11.22:4[aqua=] >=kde-apps/ktimezoned-4.11.22:4[aqua=] >=kde-apps/ktraderclient-4.11.22:4[aqua=] >=kde-apps/kuiserver-4.11.22:4[aqua=] >=kde-apps/kurifilter-plugins-4.11.22:4[aqua=] >=kde-apps/kwalletd-4.11.22:4[aqua=] >=kde-apps/kwalletmanager-4.11.22:4[aqua=] >=kde-apps/phonon-kde-4.11.22:4[aqua=] >=kde-apps/plasma-apps-4.11.22:4[aqua=] >=kde-apps/plasma-runtime-4.11.22:4[aqua=] >=kde-apps/renamedlg-plugins-4.11.22:4[aqua=] >=kde-apps/solid-runtime-4.11.22:4[aqua=] >=kde-base/kcminit-4.11.22:4[aqua=] >=kde-base/krunner-4.11.22:4[aqua=] >=kde-base/ksmserver-4.11.22:4[aqua=] >=kde-base/ksplash-4.11.22:4[aqua=] >=kde-base/kstartupconfig-4.11.22:4[aqua=] >=kde-base/kwin-4.11.22:4[aqua=] >=kde-base/plasma-workspace-4.11.22:4[aqua=] >=kde-base/systemsettings-4.11.22:4[aqua=] x11-apps/mkfontdir x11-apps/xmessage x11-apps/xprop x11-apps/xrandr x11-apps/xrdb x11-apps/xsetroot x11-apps/xset crash-reporter? ( >=kde-apps/drkonqi-4.11.22:4[aqua=] ) handbook? ( kde-apps/khelpcenter:* ) !minimal? ( >=kde-apps/kdepasswd-4.11.22:4[aqua=] >=kde-base/freespacenotifier-4.11.22:4[aqua=] >=kde-base/kcheckpass-4.11.22:4[aqua=] >=kde-base/kdebase-cursors-4.11.22:4[aqua=] >=kde-base/kephal-4.11.22:4[aqua=] >=kde-base/klipper-4.11.22:4[aqua=] >=kde-base/kstyles-4.11.22:4[aqua=] >=kde-base/ksystraycmd-4.11.22:4[aqua=] >=kde-base/libkworkspace-4.11.22:4[aqua=] >=kde-base/liboxygenstyle-4.11.22:4[aqua=] >=kde-base/libplasmaclock-4.11.22:4[aqua=] >=kde-base/libplasmagenericshell-4.11.22:4[aqua=] >=kde-base/libtaskmanager-4.11.22:4[aqua=] >=kde-base/qguiplatformplugin_kde-4.11.22:4[aqua=] >=kde-base/solid-actions-kcm-4.11.22:4[aqua=] kde-plasma/khotkeys:4 kde-plasma/kinfocenter:4 kde-plasma/kmenuedit:4 kde-plasma/ksysguard:4 kde-plasma/kwrited:4 kde-plasma/powerdevil:4 ) wallpapers? ( kde-plasma/plasma-workspace-wallpapers:5 ) kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=>=kde-apps/attica-4.11.22:4[aqua=] >=kde-apps/kcmshell-4.11.22:4[aqua=] >=kde-apps/kcontrol-4.11.22:4[aqua=] >=kde-apps/kdebase-data-4.11.22:4[aqua=] >=kde-apps/kdebase-desktoptheme-4.11.22:4[aqua=] >=kde-apps/kdebase-kioslaves-4.11.22:4[aqua=] >=kde-apps/kdebase-menu-4.11.22:4[aqua=] >=kde-apps/kdebase-menu-icons-4.11.22:4[aqua=] >=kde-apps/kdebugdialog-4.11.22:4[aqua=] >=kde-apps/kdesu-4.11.22:4[aqua=] >=kde-apps/kdontchangethehostname-4.11.22:4[aqua=] >=kde-apps/keditfiletype-4.11.22:4[aqua=] >=kde-apps/kfile-4.11.22:4[aqua=] >=kde-apps/kfmclient-4.11.22:4[aqua=] >=kde-apps/kglobalaccel-4.11.22:4[aqua=] >=kde-apps/kiconfinder-4.11.22:4[aqua=] >=kde-apps/kimgio-4.11.22:4[aqua=] >=kde-apps/kioclient-4.11.22:4[aqua=] >=kde-apps/kmimetypefinder-4.11.22:4[aqua=] >=kde-apps/knetattach-4.11.22:4[aqua=] >=kde-apps/knewstuff-4.11.22:4[aqua=] >=kde-apps/knotify-4.11.22:4[aqua=] >=kde-apps/knotify-4.11.22:4[aqua=] >=kde-apps/kpasswdserver-4.11.22:4[aqua=] >=kde-apps/kquitapp-4.11.22:4[aqua=] >=kde-apps/kreadconfig-4.11.22:4[aqua=] >=kde-apps/kstart-4.11.22:4[aqua=] >=kde-apps/ktimezoned-4.11.22:4[aqua=] >=kde-apps/ktraderclient-4.11.22:4[aqua=] >=kde-apps/kuiserver-4.11.22:4[aqua=] >=kde-apps/kurifilter-plugins-4.11.22:4[aqua=] >=kde-apps/kwalletd-4.11.22:4[aqua=] >=kde-apps/kwalletmanager-4.11.22:4[aqua=] >=kde-apps/phonon-kde-4.11.22:4[aqua=] >=kde-apps/plasma-apps-4.11.22:4[aqua=] >=kde-apps/plasma-runtime-4.11.22:4[aqua=] >=kde-apps/renamedlg-plugins-4.11.22:4[aqua=] >=kde-apps/solid-runtime-4.11.22:4[aqua=] >=kde-base/kcminit-4.11.22:4[aqua=] >=kde-base/krunner-4.11.22:4[aqua=] >=kde-base/ksmserver-4.11.22:4[aqua=] >=kde-base/ksplash-4.11.22:4[aqua=] >=kde-base/kstartupconfig-4.11.22:4[aqua=] >=kde-base/plasma-workspace-4.11.22:4[aqua=] kde-plasma/kwin:4 kde-plasma/systemsettings:4 x11-apps/mkfontdir x11-apps/xmessage x11-apps/xprop x11-apps/xrandr x11-apps/xrdb x11-apps/xsetroot x11-apps/xset crash-reporter? ( >=kde-apps/drkonqi-4.11.22:4[aqua=] ) handbook? ( kde-apps/khelpcenter:* ) !minimal? ( >=kde-apps/kdepasswd-4.11.22:4[aqua=] >=kde-base/freespacenotifier-4.11.22:4[aqua=] >=kde-base/kcheckpass-4.11.22:4[aqua=] >=kde-base/kdebase-cursors-4.11.22:4[aqua=] >=kde-base/kephal-4.11.22:4[aqua=] >=kde-base/klipper-4.11.22:4[aqua=] >=kde-base/kstyles-4.11.22:4[aqua=] >=kde-base/ksystraycmd-4.11.22:4[aqua=] >=kde-base/libkworkspace-4.11.22:4[aqua=] >=kde-base/liboxygenstyle-4.11.22:4[aqua=] >=kde-base/libplasmaclock-4.11.22:4[aqua=] >=kde-base/libplasmagenericshell-4.11.22:4[aqua=] >=kde-base/libtaskmanager-4.11.22:4[aqua=] >=kde-base/qguiplatformplugin_kde-4.11.22:4[aqua=] >=kde-base/solid-actions-kcm-4.11.22:4[aqua=] kde-plasma/khotkeys:4 kde-plasma/kinfocenter:4 kde-plasma/kmenuedit:4 kde-plasma/ksysguard:4 kde-plasma/kwrited:4 kde-plasma/powerdevil:4 ) wallpapers? ( kde-plasma/plasma-workspace-wallpapers:5 ) kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4/4.11 SRC_URI=mirror://kde/Attic/applications/15.08.0/src/kde-workspace-4.11.22.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 kde4-meta cc1175ba18c9391fbc67922aecead7da multilib 165fc17c38d1b11dac2008280dab6e80 prefix 99dcca42e6528d8fe3c214bf5731aaf2 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=abd23ef50625ca43717969f937978794 +_md5_=cf152f6c7935ac26745d9d83af3fff62 diff --git a/metadata/md5-cache/kde-base/legacy-icons-4.11.22-r1 b/metadata/md5-cache/kde-base/legacy-icons-4.11.22-r1 index ae6c3fa0a3b0..ec8eed3c41ec 100644 --- a/metadata/md5-cache/kde-base/legacy-icons-4.11.22-r1 +++ b/metadata/md5-cache/kde-base/legacy-icons-4.11.22-r1 @@ -6,8 +6,8 @@ HOMEPAGE=https://www.kde.org/ IUSE=aqua KEYWORDS=amd64 ~arm x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=!=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=!=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4/4.11 SRC_URI=mirror://kde/stable/applications/15.08.0/src/kde-workspace-4.11.22.tar.xz mirror://kde/Attic/applications/15.04.3/src/kwalletmanager-15.04.3.tar.xz mirror://kde/stable/applications/15.08.3/src/libkipi-15.08.3.tar.xz mirror://kde/stable/applications/15.08.3/src/libksane-15.08.3.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=c2361746f6057c2ef20237a9a43ef3f6 +_md5_=242d317554fdaf2465e46acb922a04f0 diff --git a/metadata/md5-cache/kde-base/systemsettings-4.11.22-r2 b/metadata/md5-cache/kde-base/systemsettings-4.11.22-r2 deleted file mode 100644 index 9c9196628011..000000000000 --- a/metadata/md5-cache/kde-base/systemsettings-4.11.22-r2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=dev-libs/glib:2 >=kde-base/kwin-4.11.22:4[aqua=] >=kde-base/libkworkspace-4.11.22:4[aqua=] media-libs/fontconfig >=media-libs/freetype-2 >=x11-libs/libxklavier-3.2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXi x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXtst opengl? ( virtual/opengl ) usb? ( virtual/libusb:0 ) x11-proto/kbproto x11-proto/xextproto >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -DESCRIPTION=System settings utility -EAPI=6 -HOMEPAGE=https://www.kde.org/ https://userbase.kde.org/System_Settings -IUSE=debug gtk +kscreen +usb test opengl +handbook aqua -KEYWORDS=amd64 ~arm x86 ~amd64-linux ~x86-linux -LICENSE=GPL-2 -RDEPEND=dev-libs/glib:2 >=kde-base/kwin-4.11.22:4[aqua=] >=kde-base/libkworkspace-4.11.22:4[aqua=] media-libs/fontconfig >=media-libs/freetype-2 >=x11-libs/libxklavier-3.2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXi x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXtst opengl? ( virtual/opengl ) usb? ( virtual/libusb:0 ) sys-libs/timezone-data x11-apps/setxkbmap x11-misc/xkeyboard-config gtk? ( kde-plasma/kde-gtk-config:4 ) kscreen? ( kde-plasma/kscreen:4 ) || ( >=kde-base/legacy-icons-4.11.22:4[aqua=] >=kde-frameworks/oxygen-icons-5.19.0:5 ) kde-frameworks/oxygen-icons handbook? ( >=kde-base/kdelibs-4.11.22:4[aqua=,handbook] ) opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -RESTRICT=test -SLOT=4/4.11 -SRC_URI=mirror://kde/Attic/applications/15.08.0/src/kde-workspace-4.11.22.tar.xz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 kde4-meta cc1175ba18c9391fbc67922aecead7da multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=2b7097b77e94705cd8a65d56112cf569 diff --git a/metadata/md5-cache/kde-frameworks/baloo-4.14.3 b/metadata/md5-cache/kde-frameworks/baloo-4.14.3 new file mode 100644 index 000000000000..de25cde0d275 --- /dev/null +++ b/metadata/md5-cache/kde-frameworks/baloo-4.14.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack +DEPEND=>=kde-apps/kdepimlibs-4.14.3:4[aqua=] dev-libs/qjson =dev-libs/xapian-1.2*[chert] kde-frameworks/kfilemetadata:4 sys-apps/attr !=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DESCRIPTION=Framework for searching and managing metadata +EAPI=5 +HOMEPAGE=https://www.kde.org/ +IUSE=debug minimal aqua +KEYWORDS=amd64 ~arm x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=>=kde-apps/kdepimlibs-4.14.3:4[aqua=] dev-libs/qjson =dev-libs/xapian-1.2*[chert] kde-frameworks/kfilemetadata:4 sys-apps/attr !=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RESTRICT=test +SLOT=4/4.14 +SRC_URI=mirror://kde/stable/4.14.3/src/baloo-4.14.3.tar.xz +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=2f4b801185506eae04c8b6b041228205 diff --git a/metadata/md5-cache/kde-frameworks/baloo-5.26.0-r2 b/metadata/md5-cache/kde-frameworks/baloo-5.26.0-r2 index 391684ca19a3..42730712a30e 100644 --- a/metadata/md5-cache/kde-frameworks/baloo-5.26.0-r2 +++ b/metadata/md5-cache/kde-frameworks/baloo-5.26.0-r2 @@ -6,8 +6,8 @@ HOMEPAGE=https://www.kde.org/ IUSE=test debug test KEYWORDS=amd64 ~arm x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/kconfig-5.26:5 >=kde-frameworks/kcoreaddons-5.26:5 >=kde-frameworks/kcrash-5.26:5 >=kde-frameworks/kdbusaddons-5.26:5 >=kde-frameworks/kfilemetadata-5.26:5 >=kde-frameworks/ki18n-5.26:5 >=kde-frameworks/kidletime-5.26:5 >=kde-frameworks/kio-5.26:5 >=kde-frameworks/solid-5.26:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-db/lmdb-0.9.17 !kde-base/baloo:4[-minimal(-)] >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kconfig-5.26:5 >=kde-frameworks/kcoreaddons-5.26:5 >=kde-frameworks/kcrash-5.26:5 >=kde-frameworks/kdbusaddons-5.26:5 >=kde-frameworks/kfilemetadata-5.26:5 >=kde-frameworks/ki18n-5.26:5 >=kde-frameworks/kidletime-5.26:5 >=kde-frameworks/kio-5.26:5 >=kde-frameworks/solid-5.26:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-db/lmdb-0.9.17 !kde-frameworks/baloo:4[-minimal(-)] >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 SLOT=5/5.26 SRC_URI=mirror://kde/stable/frameworks/5.26/baloo-5.26.0.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=99b1bb0376037521b0d5fb8a551e5c0d +_md5_=09133a1ea1d96041db531d8153cb2659 diff --git a/metadata/md5-cache/kde-frameworks/baloo-5.27.0 b/metadata/md5-cache/kde-frameworks/baloo-5.27.0 index 5a1769565dcb..b8f6f0dfb651 100644 --- a/metadata/md5-cache/kde-frameworks/baloo-5.27.0 +++ b/metadata/md5-cache/kde-frameworks/baloo-5.27.0 @@ -6,8 +6,8 @@ HOMEPAGE=https://www.kde.org/ IUSE=test debug test KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/kconfig-5.27:5 >=kde-frameworks/kcoreaddons-5.27:5 >=kde-frameworks/kcrash-5.27:5 >=kde-frameworks/kdbusaddons-5.27:5 >=kde-frameworks/kfilemetadata-5.27:5 >=kde-frameworks/ki18n-5.27:5 >=kde-frameworks/kidletime-5.27:5 >=kde-frameworks/kio-5.27:5 >=kde-frameworks/solid-5.27:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-db/lmdb-0.9.17 !kde-base/baloo:4[-minimal(-)] >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kconfig-5.27:5 >=kde-frameworks/kcoreaddons-5.27:5 >=kde-frameworks/kcrash-5.27:5 >=kde-frameworks/kdbusaddons-5.27:5 >=kde-frameworks/kfilemetadata-5.27:5 >=kde-frameworks/ki18n-5.27:5 >=kde-frameworks/kidletime-5.27:5 >=kde-frameworks/kio-5.27:5 >=kde-frameworks/solid-5.27:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-db/lmdb-0.9.17 !kde-frameworks/baloo:4[-minimal(-)] >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 SLOT=5/5.27 SRC_URI=mirror://kde/stable/frameworks/5.27/baloo-5.27.0.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=6e45b1f04f89798722fb220647a871af +_md5_=e7efad4cbb53fcedc960f1bb2ff0c5e5 diff --git a/metadata/md5-cache/kde-base/kfilemetadata-4.14.3 b/metadata/md5-cache/kde-frameworks/kfilemetadata-4.14.3 similarity index 95% rename from metadata/md5-cache/kde-base/kfilemetadata-4.14.3 rename to metadata/md5-cache/kde-frameworks/kfilemetadata-4.14.3 index d0989eddb9b6..0cac1bfa0947 100644 --- a/metadata/md5-cache/kde-base/kfilemetadata-4.14.3 +++ b/metadata/md5-cache/kde-frameworks/kfilemetadata-4.14.3 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack DEPEND=epub? ( app-text/ebook-tools ) exif? ( media-gfx/exiv2:= ) ffmpeg? ( virtual/ffmpeg ) mobi? ( >=kde-apps/kdegraphics-mobipocket-4.14.3:4[aqua=] ) pdf? ( app-text/poppler[qt4] ) taglib? ( media-libs/taglib ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -DESCRIPTION=A library for extracting file metadata +DESCRIPTION=Library for extracting file metadata EAPI=5 HOMEPAGE=https://www.kde.org/ IUSE=debug epub exif ffmpeg mobi pdf taglib aqua KEYWORDS=amd64 ~arm x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 RDEPEND=epub? ( app-text/ebook-tools ) exif? ( media-gfx/exiv2:= ) ffmpeg? ( virtual/ffmpeg ) mobi? ( >=kde-apps/kdegraphics-mobipocket-4.14.3:4[aqua=] ) pdf? ( app-text/poppler[qt4] ) taglib? ( media-libs/taglib ) kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -SLOT=4/4.14 +SLOT=4 SRC_URI=mirror://kde/stable/4.14.3/src/kfilemetadata-4.14.3.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=254bc13c74c4397ad7a1b4bc2d2350c5 +_md5_=dcf5b129a224796860bb5e918b9db944 diff --git a/metadata/md5-cache/kde-misc/baloo-kcmadv-2014.04.27 b/metadata/md5-cache/kde-misc/baloo-kcmadv-2014.04.27 index adec50f0bd44..118f4f43802e 100644 --- a/metadata/md5-cache/kde-misc/baloo-kcmadv-2014.04.27 +++ b/metadata/md5-cache/kde-misc/baloo-kcmadv-2014.04.27 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/baloo-4.13.0:4[aqua=,-minimal(-)] >=kde-base/kfilemetadata-4.13.0:4[aqua=] dev-libs/qjson dev-libs/xapian >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=dev-libs/qjson dev-libs/xapian kde-frameworks/baloo:4[-minimal] kde-frameworks/kfilemetadata:4 >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=Alternative configuration module for the Baloo search framework EAPI=5 HOMEPAGE=https://gitlab.com/baloo-kcmadv/baloo-kcmadv IUSE=aqua KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=>=kde-base/baloo-4.13.0:4[aqua=,-minimal(-)] >=kde-base/kfilemetadata-4.13.0:4[aqua=] dev-libs/qjson dev-libs/xapian kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=dev-libs/qjson dev-libs/xapian kde-frameworks/baloo:4[-minimal] kde-frameworks/kfilemetadata:4 kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4 SRC_URI=https://dev.gentoo.org/~dilfridge/distfiles/baloo-kcmadv-2014.04.27.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=3d067c80cb69d1e517654ae7b05f9881 +_md5_=0e1a41051f03e9bd28db7df8ceb4006b diff --git a/metadata/md5-cache/kde-misc/chromi-0.2 b/metadata/md5-cache/kde-misc/chromi-0.2 deleted file mode 100644 index 23c39df35ff6..000000000000 --- a/metadata/md5-cache/kde-misc/chromi-0.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kwin-4.4:4[aqua=] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -DESCRIPTION=Titlebar-less decoration inspired by Google Chrome and Nitrogen minimal mod -EAPI=5 -HOMEPAGE=http://kde-look.org/content/show.php/Chromi?content=119069 -IUSE=aqua -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2+ -RDEPEND=>=kde-base/kwin-4.4:4[aqua=] kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -SLOT=4 -SRC_URI=https://github.com/jinliu/kwin-deco-chromi/archive/v0.2.zip -> chromi-0.2.zip -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=f40f4777a93f2096462bd0d26ce73006 diff --git a/metadata/md5-cache/kde-misc/chromi-0.2_p20141209 b/metadata/md5-cache/kde-misc/chromi-0.2_p20141209 index fe4877c478d5..a5be000d9c25 100644 --- a/metadata/md5-cache/kde-misc/chromi-0.2_p20141209 +++ b/metadata/md5-cache/kde-misc/chromi-0.2_p20141209 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kwin-4.4:4[aqua=] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=kde-plasma/kwin:4 >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=Titlebar-less decoration inspired by Google Chrome and Nitrogen minimal mod EAPI=5 HOMEPAGE=http://kde-look.org/content/show.php/Chromi?content=119069 IUSE=aqua KEYWORDS=~amd64 ~x86 LICENSE=GPL-2+ -RDEPEND=>=kde-base/kwin-4.4:4[aqua=] kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=kde-plasma/kwin:4 kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4 SRC_URI=https://dev.gentoo.org/~kensington/distfiles/kwin-deco-chromi-0.2_p20141209.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0dd5a55710cbb0657bee5386ce0e46fb +_md5_=c4569965313acb852b1ad8f56e62bd3a diff --git a/metadata/md5-cache/kde-misc/nightmode-0.3-r1 b/metadata/md5-cache/kde-misc/nightmode-0.3-r1 index e8f5bc3c149d..e54c09501dcf 100644 --- a/metadata/md5-cache/kde-misc/nightmode-0.3-r1 +++ b/metadata/md5-cache/kde-misc/nightmode-0.3-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kwin-4.8:4[aqua=] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=kde-plasma/kwin:4 >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=kwin plugin that makes the entire screen darker EAPI=5 HOMEPAGE=http://kde-apps.org/content/show.php/Nightmode?content=123805 IUSE=debug aqua KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=>=kde-base/kwin-4.8:4[aqua=] kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=kde-plasma/kwin:4 kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4 SRC_URI=http://static.davidedmundson.co.uk/nightmode_0.3.tar.gz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0e1f507f7fa9cfeb3411bdbd6699f8b3 +_md5_=5c614d1eaa2582bd65c1c2b751fed815 diff --git a/metadata/md5-cache/kde-misc/zanshin-0.3.1 b/metadata/md5-cache/kde-misc/zanshin-0.3.1 index 24999ca948d5..b845c561bf33 100644 --- a/metadata/md5-cache/kde-misc/zanshin-0.3.1 +++ b/metadata/md5-cache/kde-misc/zanshin-0.3.1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-apps/kdepim-runtime-4.6.0:4[aqua=] >=kde-apps/kdepimlibs-4.4:4[aqua=] >=kde-base/baloo-4.4:4[aqua=] dev-libs/boost >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=>=kde-apps/kdepim-runtime-4.6.0:4[aqua=] >=kde-apps/kdepimlibs-4.4:4[aqua=] dev-libs/boost kde-frameworks/baloo:4 >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=Todo management application by KDE EAPI=6 HOMEPAGE=https://zanshin.kde.org/ IUSE=debug test aqua KEYWORDS=~amd64 ~x86 LICENSE=|| ( GPL-2 GPL-3 ) -RDEPEND=>=kde-apps/kdepim-runtime-4.6.0:4[aqua=] >=kde-apps/kdepimlibs-4.4:4[aqua=] >=kde-base/baloo-4.4:4[aqua=] dev-libs/boost kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=>=kde-apps/kdepim-runtime-4.6.0:4[aqua=] >=kde-apps/kdepimlibs-4.4:4[aqua=] dev-libs/boost kde-frameworks/baloo:4 kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] RESTRICT=test SLOT=4 SRC_URI=https://files.kde.org/zanshin/zanshin-0.3.1.tar.bz2 _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0101c053a1524967af585b4583f92efd +_md5_=949c7bcf59a6f0878eb25b6cc74d1eca diff --git a/metadata/md5-cache/kde-plasma/khotkeys-5.7.5 b/metadata/md5-cache/kde-plasma/khotkeys-5.7.5 index 8c20432dd6d6..696e25d076c3 100644 --- a/metadata/md5-cache/kde-plasma/khotkeys-5.7.5 +++ b/metadata/md5-cache/kde-plasma/khotkeys-5.7.5 @@ -6,8 +6,8 @@ HOMEPAGE=https://www.kde.org/ IUSE=debug +handbook KEYWORDS=amd64 ~arm x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5[X] >=kde-frameworks/kglobalaccel-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/ktextwidgets-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kwindowsystem-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=kde-plasma/plasma-workspace-5.7.5:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 x11-libs/libX11 x11-libs/libXtst >=kde-frameworks/kded-5.23.0:5 >=kde-plasma/kde-cli-tools-5.7.5:5 !kde-plasma/khotkeys:4 !kde-base/systemsettings:4 >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5[X] >=kde-frameworks/kglobalaccel-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/ktextwidgets-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kwindowsystem-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=kde-plasma/plasma-workspace-5.7.5:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 x11-libs/libX11 x11-libs/libXtst >=kde-frameworks/kded-5.23.0:5 >=kde-plasma/kde-cli-tools-5.7.5:5 !kde-plasma/khotkeys:4 !kde-plasma/systemsettings:4 >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.7.5/khotkeys-5.7.5.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=c6b1500edace6c7305a40372ce415c4e +_md5_=4ae30942f2e6bccdeb87fe43bf40ccc7 diff --git a/metadata/md5-cache/kde-plasma/khotkeys-5.8.3 b/metadata/md5-cache/kde-plasma/khotkeys-5.8.3 index 7c24de3df571..964dab3d33e7 100644 --- a/metadata/md5-cache/kde-plasma/khotkeys-5.8.3 +++ b/metadata/md5-cache/kde-plasma/khotkeys-5.8.3 @@ -6,8 +6,8 @@ HOMEPAGE=https://www.kde.org/ IUSE=debug +handbook KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kdbusaddons-5.26.0:5 >=kde-frameworks/kdelibs4support-5.26.0:5[X] >=kde-frameworks/kglobalaccel-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/ktextwidgets-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kwindowsystem-5.26.0:5 >=kde-frameworks/kxmlgui-5.26.0:5 >=kde-plasma/plasma-workspace-5.8.3:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 x11-libs/libX11 x11-libs/libXtst >=kde-frameworks/kded-5.26.0:5 >=kde-plasma/kde-cli-tools-5.8.3:5 !kde-plasma/khotkeys:4 !kde-base/systemsettings:4 >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kdbusaddons-5.26.0:5 >=kde-frameworks/kdelibs4support-5.26.0:5[X] >=kde-frameworks/kglobalaccel-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/ktextwidgets-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kwindowsystem-5.26.0:5 >=kde-frameworks/kxmlgui-5.26.0:5 >=kde-plasma/plasma-workspace-5.8.3:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 x11-libs/libX11 x11-libs/libXtst >=kde-frameworks/kded-5.26.0:5 >=kde-plasma/kde-cli-tools-5.8.3:5 !kde-plasma/khotkeys:4 !kde-plasma/systemsettings:4 >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.8.3/khotkeys-5.8.3.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=aeaecf4b33aaeb64dc1066017f9379a9 +_md5_=8cc211c6a7b4f23adc41bc2cb8c07962 diff --git a/metadata/md5-cache/kde-base/kwin-4.11.22 b/metadata/md5-cache/kde-plasma/kwin-4.11.22 similarity index 98% rename from metadata/md5-cache/kde-base/kwin-4.11.22 rename to metadata/md5-cache/kde-plasma/kwin-4.11.22 index fff34dd847c6..56d485860608 100644 --- a/metadata/md5-cache/kde-base/kwin-4.11.22 +++ b/metadata/md5-cache/kde-plasma/kwin-4.11.22 @@ -12,4 +12,4 @@ RESTRICT=test SLOT=4/4.11 SRC_URI=mirror://kde/Attic/applications/15.08.0/src/kde-workspace-4.11.22.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 kde4-meta cc1175ba18c9391fbc67922aecead7da multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=016053ab3f446ec63fca3eead14fb825 +_md5_=c11bb4fe7cac1813020c0e930862b5ff diff --git a/metadata/md5-cache/kde-plasma/kwin-5.7.5 b/metadata/md5-cache/kde-plasma/kwin-5.7.5 index 76138617fc01..b7c6409fca40 100644 --- a/metadata/md5-cache/kde-plasma/kwin-5.7.5 +++ b/metadata/md5-cache/kde-plasma/kwin-5.7.5 @@ -6,9 +6,9 @@ HOMEPAGE=https://www.kde.org/ IUSE=gles2 multimedia test debug +handbook test KEYWORDS=amd64 ~arm x86 LICENSE=GPL-2+ -RDEPEND=>=kde-frameworks/kactivities-5.23.0:5 >=kde-frameworks/kauth-5.23.0:5 >=kde-frameworks/kcmutils-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kcrash-5.23.0:5 >=kde-frameworks/kdeclarative-5.23.0:5 >=kde-frameworks/kglobalaccel-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kidletime-5.23.0:5 >=kde-frameworks/kinit-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/knewstuff-5.23.0:5 >=kde-frameworks/knotifications-5.23.0:5 >=kde-frameworks/kpackage-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwayland-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kwindowsystem-5.23.0:5[X] >=kde-frameworks/kxmlgui-5.23.0:5 >=kde-frameworks/plasma-5.23.0:5 >=kde-plasma/breeze-5.7.5:5 >=kde-plasma/kdecoration-5.7.5:5 >=kde-plasma/kscreenlocker-5.7.5:5 >=dev-qt/qtcore-5.6.1:5= >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5[gles2=] >=dev-qt/qtscript-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 >=dev-libs/libinput-0.10 >=dev-libs/wayland-1.2 media-libs/fontconfig media-libs/freetype media-libs/libepoxy media-libs/mesa[egl,gbm,gles2?,wayland] virtual/libudev:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXi x11-libs/libdrm >=x11-libs/libxcb-1.10 >=x11-libs/libxkbcommon-0.4.1 x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms >=kde-plasma/kde-cli-tools-5.7.5:5 multimedia? ( || ( >=dev-qt/qtmultimedia-5.6.1:5[gstreamer,qml] >=dev-qt/qtmultimedia-5.6.1:5[gstreamer010,qml] ) ) !=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kactivities-5.23.0:5 >=kde-frameworks/kauth-5.23.0:5 >=kde-frameworks/kcmutils-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kcrash-5.23.0:5 >=kde-frameworks/kdeclarative-5.23.0:5 >=kde-frameworks/kglobalaccel-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kidletime-5.23.0:5 >=kde-frameworks/kinit-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/knewstuff-5.23.0:5 >=kde-frameworks/knotifications-5.23.0:5 >=kde-frameworks/kpackage-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwayland-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kwindowsystem-5.23.0:5[X] >=kde-frameworks/kxmlgui-5.23.0:5 >=kde-frameworks/plasma-5.23.0:5 >=kde-plasma/breeze-5.7.5:5 >=kde-plasma/kdecoration-5.7.5:5 >=kde-plasma/kscreenlocker-5.7.5:5 >=dev-qt/qtcore-5.6.1:5= >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5[gles2=] >=dev-qt/qtscript-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 >=dev-libs/libinput-0.10 >=dev-libs/wayland-1.2 media-libs/fontconfig media-libs/freetype media-libs/libepoxy media-libs/mesa[egl,gbm,gles2?,wayland] virtual/libudev:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXi x11-libs/libdrm >=x11-libs/libxcb-1.10 >=x11-libs/libxkbcommon-0.4.1 x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms >=kde-plasma/kde-cli-tools-5.7.5:5 multimedia? ( || ( >=dev-qt/qtmultimedia-5.6.1:5[gstreamer,qml] >=dev-qt/qtmultimedia-5.6.1:5[gstreamer010,qml] ) ) !=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 RESTRICT=test SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.7.5/kwin-5.7.5.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=21f107b1353130d56bb8b8eac3fbbb57 +_md5_=20fde32c8b3e8dcacdd158e24806d879 diff --git a/metadata/md5-cache/kde-plasma/kwin-5.8.3 b/metadata/md5-cache/kde-plasma/kwin-5.8.3 index ceb1f90c1a75..16fe79705bd4 100644 --- a/metadata/md5-cache/kde-plasma/kwin-5.8.3 +++ b/metadata/md5-cache/kde-plasma/kwin-5.8.3 @@ -6,9 +6,9 @@ HOMEPAGE=https://www.kde.org/ IUSE=gles2 multimedia test debug +handbook test KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-2+ -RDEPEND=>=kde-frameworks/kactivities-5.26.0:5 >=kde-frameworks/kauth-5.26.0:5 >=kde-frameworks/kcmutils-5.26.0:5 >=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kcrash-5.26.0:5 >=kde-frameworks/kdeclarative-5.26.0:5 >=kde-frameworks/kglobalaccel-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kiconthemes-5.26.0:5 >=kde-frameworks/kidletime-5.26.0:5 >=kde-frameworks/kinit-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/knewstuff-5.26.0:5 >=kde-frameworks/knotifications-5.26.0:5 >=kde-frameworks/kpackage-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/kwayland-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kwindowsystem-5.26.0:5[X] >=kde-frameworks/kxmlgui-5.26.0:5 >=kde-frameworks/plasma-5.26.0:5 >=kde-plasma/breeze-5.8.3:5 >=kde-plasma/kdecoration-5.8.3:5 >=kde-plasma/kscreenlocker-5.8.3:5 >=dev-qt/qtcore-5.6.1:5= >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5[gles2=] >=dev-qt/qtscript-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 >=dev-libs/libinput-1.2 >=dev-libs/wayland-1.2 media-libs/fontconfig media-libs/freetype media-libs/libepoxy media-libs/mesa[egl,gbm,gles2?,wayland] virtual/libudev:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXi x11-libs/libdrm >=x11-libs/libxcb-1.10 >=x11-libs/libxkbcommon-0.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms >=kde-plasma/kde-cli-tools-5.8.3:5 multimedia? ( || ( >=dev-qt/qtmultimedia-5.6.1:5[gstreamer,qml] >=dev-qt/qtmultimedia-5.6.1:5[gstreamer010,qml] ) ) !=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kactivities-5.26.0:5 >=kde-frameworks/kauth-5.26.0:5 >=kde-frameworks/kcmutils-5.26.0:5 >=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kcrash-5.26.0:5 >=kde-frameworks/kdeclarative-5.26.0:5 >=kde-frameworks/kglobalaccel-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kiconthemes-5.26.0:5 >=kde-frameworks/kidletime-5.26.0:5 >=kde-frameworks/kinit-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/knewstuff-5.26.0:5 >=kde-frameworks/knotifications-5.26.0:5 >=kde-frameworks/kpackage-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/kwayland-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kwindowsystem-5.26.0:5[X] >=kde-frameworks/kxmlgui-5.26.0:5 >=kde-frameworks/plasma-5.26.0:5 >=kde-plasma/breeze-5.8.3:5 >=kde-plasma/kdecoration-5.8.3:5 >=kde-plasma/kscreenlocker-5.8.3:5 >=dev-qt/qtcore-5.6.1:5= >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5[gles2=] >=dev-qt/qtscript-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 >=dev-libs/libinput-1.2 >=dev-libs/wayland-1.2 media-libs/fontconfig media-libs/freetype media-libs/libepoxy media-libs/mesa[egl,gbm,gles2?,wayland] virtual/libudev:= x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXi x11-libs/libdrm >=x11-libs/libxcb-1.10 >=x11-libs/libxkbcommon-0.5.0 x11-libs/xcb-util-cursor x11-libs/xcb-util-image x11-libs/xcb-util-keysyms >=kde-plasma/kde-cli-tools-5.8.3:5 multimedia? ( || ( >=dev-qt/qtmultimedia-5.6.1:5[gstreamer,qml] >=dev-qt/qtmultimedia-5.6.1:5[gstreamer010,qml] ) ) !=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 RESTRICT=test SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.8.3/kwin-5.8.3.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0edec13281fee63bc635c3ec1335894b +_md5_=184a0acc391e4abf00a9f0abdceef0bf diff --git a/metadata/md5-cache/kde-plasma/milou-0.1 b/metadata/md5-cache/kde-plasma/milou-0.1 index b30fd2209301..5cd08de0c7d8 100644 --- a/metadata/md5-cache/kde-plasma/milou-0.1 +++ b/metadata/md5-cache/kde-plasma/milou-0.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/baloo-0.1:4[aqua=] >=kde-apps/kdepimlibs-0.1:4[aqua=] >=kde-base/kfilemetadata-0.1:4[aqua=] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=>=kde-apps/kdepimlibs-0.1:4[aqua=] kde-frameworks/baloo:4 kde-frameworks/kfilemetadata:4 >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=Dedicated search application built on top of Baloo EAPI=5 HOMEPAGE=https://projects.kde.org/projects/extragear/base/milou IUSE=debug l10n_bs l10n_ca l10n_cs l10n_da l10n_de l10n_el l10n_es l10n_fi l10n_fr l10n_hu l10n_ja l10n_ko l10n_lt l10n_nds l10n_nl l10n_pl l10n_pt l10n_pt-BR l10n_ro l10n_sk l10n_sv l10n_uk l10n_zh-CN l10n_zh-TW aqua KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 LGPL-2.1 -RDEPEND=>=kde-base/baloo-0.1:4[aqua=] >=kde-apps/kdepimlibs-0.1:4[aqua=] kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=>=kde-apps/kdepimlibs-0.1:4[aqua=] kde-frameworks/baloo:4 kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4 SRC_URI=mirror://kde/unstable/milou/0.1/src/milou-0.1.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=ce170cc925ef9ff8ff9de44666078627 +_md5_=e6b87762220fe506de7688185162c6ef diff --git a/metadata/md5-cache/kde-plasma/plasma-desktop-5.7.5 b/metadata/md5-cache/kde-plasma/plasma-desktop-5.7.5 index 599bc66a1df6..a8ec28f59d71 100644 --- a/metadata/md5-cache/kde-plasma/plasma-desktop-5.7.5 +++ b/metadata/md5-cache/kde-plasma/plasma-desktop-5.7.5 @@ -6,9 +6,9 @@ HOMEPAGE=https://www.kde.org/ IUSE=+fontconfig gtk2 gtk3 +input_devices_evdev input_devices_synaptics ibus legacy-systray packagekit pulseaudio +qt4 scim test debug +handbook test KEYWORDS=amd64 ~arm x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/attica-5.23.0:5 >=kde-frameworks/baloo-5.23.0:5 >=kde-frameworks/kactivities-5.23.0:5 >=kde-frameworks/kactivities-stats-5.23.0:5 >=kde-frameworks/karchive-5.23.0:5 >=kde-frameworks/kauth-5.23.0:5 >=kde-frameworks/kbookmarks-5.23.0:5 >=kde-frameworks/kcmutils-5.23.0:5 >=kde-frameworks/kcodecs-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/kdeclarative-5.23.0:5 >=kde-frameworks/kded-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5 >=kde-frameworks/kemoticons-5.23.0:5 >=kde-frameworks/kglobalaccel-5.23.0:5 >=kde-frameworks/kguiaddons-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/kitemmodels-5.23.0:5 >=kde-frameworks/kitemviews-5.23.0:5 >=kde-frameworks/kjobwidgets-5.23.0:5 >=kde-frameworks/knewstuff-5.23.0:5 >=kde-frameworks/knotifications-5.23.0:5 >=kde-frameworks/knotifyconfig-5.23.0:5 >=kde-frameworks/kparts-5.23.0:5 >=kde-frameworks/kpeople-5.23.0:5 >=kde-frameworks/krunner-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwallet-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kwindowsystem-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=kde-frameworks/plasma-5.23.0:5 >=kde-frameworks/solid-5.23.0:5 >=kde-frameworks/sonnet-5.23.0:5 >=kde-plasma/kwin-5.7.5:5 >=kde-plasma/plasma-workspace-5.7.5:5 >=dev-qt/qtconcurrent-5.6.1:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtnetwork-5.6.1:5 >=dev-qt/qtprintsupport-5.6.1:5 >=dev-qt/qtsql-5.6.1:5 >=dev-qt/qtsvg-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 >=dev-qt/qtxml-5.6.1:5 media-libs/phonon[qt5] x11-libs/libX11 x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXi x11-libs/libxcb x11-libs/libxkbfile fontconfig? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/xcb-util-image ) ibus? ( >=dev-qt/qtx11extras-5.6.1:5 app-i18n/ibus dev-libs/glib:2 x11-libs/libxcb x11-libs/xcb-util-keysyms ) input_devices_synaptics? ( x11-drivers/xf86-input-synaptics ) packagekit? ( >=app-admin/packagekit-qt-0.9.6 ) pulseaudio? ( dev-libs/glib:2 media-libs/libcanberra media-sound/pulseaudio ) scim? ( app-i18n/scim ) >=kde-plasma/breeze-5.7.5:5 >=kde-plasma/kde-cli-tools-5.7.5:5 >=kde-plasma/oxygen-5.7.5:5 >=dev-qt/qtgraphicaleffects-5.6.1:5 sys-apps/accountsservice x11-apps/setxkbmap legacy-systray? ( gtk2? ( dev-libs/libappindicator:2 ) gtk3? ( dev-libs/libappindicator:3 ) qt4? ( dev-libs/sni-qt ) ) pulseaudio? ( >=kde-plasma/plasma-pa-5.7.5:5 ) qt4? ( kde-base/qguiplatformplugin_kde ) !kde-apps/kcontrol !kde-apps/kdepasswd:4 !kde-apps/knetattach[handbook] !kde-base/plasma-desktop:4 !kde-base/plasma-workspace:4 !kde-base/solid-actions-kcm:4 !kde-base/systemsettings:4 !kde-misc/kcm_touchpad !kde-misc/kcm-touchpad !kde-plasma/kcm-touchpad !=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/attica-5.23.0:5 >=kde-frameworks/baloo-5.23.0:5 >=kde-frameworks/kactivities-5.23.0:5 >=kde-frameworks/kactivities-stats-5.23.0:5 >=kde-frameworks/karchive-5.23.0:5 >=kde-frameworks/kauth-5.23.0:5 >=kde-frameworks/kbookmarks-5.23.0:5 >=kde-frameworks/kcmutils-5.23.0:5 >=kde-frameworks/kcodecs-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/kdeclarative-5.23.0:5 >=kde-frameworks/kded-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5 >=kde-frameworks/kemoticons-5.23.0:5 >=kde-frameworks/kglobalaccel-5.23.0:5 >=kde-frameworks/kguiaddons-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/kitemmodels-5.23.0:5 >=kde-frameworks/kitemviews-5.23.0:5 >=kde-frameworks/kjobwidgets-5.23.0:5 >=kde-frameworks/knewstuff-5.23.0:5 >=kde-frameworks/knotifications-5.23.0:5 >=kde-frameworks/knotifyconfig-5.23.0:5 >=kde-frameworks/kparts-5.23.0:5 >=kde-frameworks/kpeople-5.23.0:5 >=kde-frameworks/krunner-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwallet-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kwindowsystem-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=kde-frameworks/plasma-5.23.0:5 >=kde-frameworks/solid-5.23.0:5 >=kde-frameworks/sonnet-5.23.0:5 >=kde-plasma/kwin-5.7.5:5 >=kde-plasma/plasma-workspace-5.7.5:5 >=dev-qt/qtconcurrent-5.6.1:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtnetwork-5.6.1:5 >=dev-qt/qtprintsupport-5.6.1:5 >=dev-qt/qtsql-5.6.1:5 >=dev-qt/qtsvg-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 >=dev-qt/qtxml-5.6.1:5 media-libs/phonon[qt5] x11-libs/libX11 x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXi x11-libs/libxcb x11-libs/libxkbfile fontconfig? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/xcb-util-image ) ibus? ( >=dev-qt/qtx11extras-5.6.1:5 app-i18n/ibus dev-libs/glib:2 x11-libs/libxcb x11-libs/xcb-util-keysyms ) input_devices_synaptics? ( x11-drivers/xf86-input-synaptics ) packagekit? ( >=app-admin/packagekit-qt-0.9.6 ) pulseaudio? ( dev-libs/glib:2 media-libs/libcanberra media-sound/pulseaudio ) scim? ( app-i18n/scim ) >=kde-plasma/breeze-5.7.5:5 >=kde-plasma/kde-cli-tools-5.7.5:5 >=kde-plasma/oxygen-5.7.5:5 >=dev-qt/qtgraphicaleffects-5.6.1:5 sys-apps/accountsservice x11-apps/setxkbmap legacy-systray? ( gtk2? ( dev-libs/libappindicator:2 ) gtk3? ( dev-libs/libappindicator:3 ) qt4? ( dev-libs/sni-qt ) ) pulseaudio? ( >=kde-plasma/plasma-pa-5.7.5:5 ) qt4? ( kde-base/qguiplatformplugin_kde ) !kde-apps/kcontrol !kde-apps/kdepasswd:4 !kde-apps/knetattach[handbook] !kde-base/plasma-desktop:4 !kde-base/plasma-workspace:4 !kde-base/solid-actions-kcm:4 !kde-plasma/systemsettings:4 !kde-misc/kcm_touchpad !kde-misc/kcm-touchpad !kde-plasma/kcm-touchpad !=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 REQUIRED_USE=legacy-systray? ( || ( gtk2 gtk3 qt4 ) ) gtk2? ( legacy-systray ) gtk3? ( legacy-systray ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.7.5/plasma-desktop-5.7.5.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=68acbef6cf68356d833732d8ba47a5cd +_md5_=18221d04018f0151bdc961335d897473 diff --git a/metadata/md5-cache/kde-plasma/plasma-desktop-5.8.3 b/metadata/md5-cache/kde-plasma/plasma-desktop-5.8.3 index 106a326775a6..45512c7e35f7 100644 --- a/metadata/md5-cache/kde-plasma/plasma-desktop-5.8.3 +++ b/metadata/md5-cache/kde-plasma/plasma-desktop-5.8.3 @@ -6,9 +6,9 @@ HOMEPAGE=https://www.kde.org/ IUSE=+fontconfig gtk2 gtk3 +input_devices_evdev input_devices_synaptics ibus legacy-systray packagekit pulseaudio +qt4 scim +semantic-desktop test debug +handbook test KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/attica-5.26.0:5 >=kde-frameworks/kactivities-5.26.0:5 >=kde-frameworks/kactivities-stats-5.26.0:5 >=kde-frameworks/karchive-5.26.0:5 >=kde-frameworks/kauth-5.26.0:5 >=kde-frameworks/kbookmarks-5.26.0:5 >=kde-frameworks/kcmutils-5.26.0:5 >=kde-frameworks/kcodecs-5.26.0:5 >=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kdbusaddons-5.26.0:5 >=kde-frameworks/kdeclarative-5.26.0:5 >=kde-frameworks/kded-5.26.0:5 >=kde-frameworks/kdelibs4support-5.26.0:5 >=kde-frameworks/kemoticons-5.26.0:5 >=kde-frameworks/kglobalaccel-5.26.0:5 >=kde-frameworks/kguiaddons-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kiconthemes-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/kitemmodels-5.26.0:5 >=kde-frameworks/kitemviews-5.26.0:5 >=kde-frameworks/kjobwidgets-5.26.0:5 >=kde-frameworks/knewstuff-5.26.0:5 >=kde-frameworks/knotifications-5.26.0:5 >=kde-frameworks/knotifyconfig-5.26.0:5 >=kde-frameworks/kparts-5.26.0:5 >=kde-frameworks/kpeople-5.26.0:5 >=kde-frameworks/krunner-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/kwallet-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kwindowsystem-5.26.0:5 >=kde-frameworks/kxmlgui-5.26.0:5 >=kde-frameworks/plasma-5.26.0:5 >=kde-frameworks/solid-5.26.0:5 >=kde-frameworks/sonnet-5.26.0:5 >=kde-plasma/kwin-5.8.3:5 >=kde-plasma/plasma-workspace-5.8.3:5 >=dev-qt/qtconcurrent-5.6.1:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtnetwork-5.6.1:5 >=dev-qt/qtprintsupport-5.6.1:5 >=dev-qt/qtsql-5.6.1:5 >=dev-qt/qtsvg-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 >=dev-qt/qtxml-5.6.1:5 media-libs/phonon[qt5] x11-libs/libX11 x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXi x11-libs/libxcb x11-libs/libxkbfile fontconfig? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/xcb-util-image ) ibus? ( >=dev-qt/qtx11extras-5.6.1:5 app-i18n/ibus dev-libs/glib:2 x11-libs/libxcb x11-libs/xcb-util-keysyms ) input_devices_synaptics? ( x11-drivers/xf86-input-synaptics ) packagekit? ( >=app-admin/packagekit-qt-0.9.6 ) pulseaudio? ( dev-libs/glib:2 media-libs/libcanberra media-sound/pulseaudio ) scim? ( app-i18n/scim ) semantic-desktop? ( >=kde-frameworks/baloo-5.26.0:5 ) >=kde-plasma/breeze-5.8.3:5 >=kde-plasma/kde-cli-tools-5.8.3:5 >=kde-plasma/oxygen-5.8.3:5 >=dev-qt/qtgraphicaleffects-5.6.1:5 sys-apps/accountsservice x11-apps/setxkbmap legacy-systray? ( gtk2? ( dev-libs/libappindicator:2 ) gtk3? ( dev-libs/libappindicator:3 ) qt4? ( dev-libs/sni-qt ) ) pulseaudio? ( >=kde-plasma/plasma-pa-5.8.3:5 ) qt4? ( kde-base/qguiplatformplugin_kde ) !kde-apps/kcontrol !kde-apps/kdepasswd:4 !kde-apps/knetattach[handbook] !kde-base/plasma-desktop:4 !kde-base/plasma-workspace:4 !kde-base/solid-actions-kcm:4 !kde-base/systemsettings:4 !kde-misc/kcm_touchpad !kde-misc/kcm-touchpad !kde-plasma/kcm-touchpad !=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/attica-5.26.0:5 >=kde-frameworks/kactivities-5.26.0:5 >=kde-frameworks/kactivities-stats-5.26.0:5 >=kde-frameworks/karchive-5.26.0:5 >=kde-frameworks/kauth-5.26.0:5 >=kde-frameworks/kbookmarks-5.26.0:5 >=kde-frameworks/kcmutils-5.26.0:5 >=kde-frameworks/kcodecs-5.26.0:5 >=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kdbusaddons-5.26.0:5 >=kde-frameworks/kdeclarative-5.26.0:5 >=kde-frameworks/kded-5.26.0:5 >=kde-frameworks/kdelibs4support-5.26.0:5 >=kde-frameworks/kemoticons-5.26.0:5 >=kde-frameworks/kglobalaccel-5.26.0:5 >=kde-frameworks/kguiaddons-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kiconthemes-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/kitemmodels-5.26.0:5 >=kde-frameworks/kitemviews-5.26.0:5 >=kde-frameworks/kjobwidgets-5.26.0:5 >=kde-frameworks/knewstuff-5.26.0:5 >=kde-frameworks/knotifications-5.26.0:5 >=kde-frameworks/knotifyconfig-5.26.0:5 >=kde-frameworks/kparts-5.26.0:5 >=kde-frameworks/kpeople-5.26.0:5 >=kde-frameworks/krunner-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/kwallet-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kwindowsystem-5.26.0:5 >=kde-frameworks/kxmlgui-5.26.0:5 >=kde-frameworks/plasma-5.26.0:5 >=kde-frameworks/solid-5.26.0:5 >=kde-frameworks/sonnet-5.26.0:5 >=kde-plasma/kwin-5.8.3:5 >=kde-plasma/plasma-workspace-5.8.3:5 >=dev-qt/qtconcurrent-5.6.1:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtdeclarative-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtnetwork-5.6.1:5 >=dev-qt/qtprintsupport-5.6.1:5 >=dev-qt/qtsql-5.6.1:5 >=dev-qt/qtsvg-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 >=dev-qt/qtxml-5.6.1:5 media-libs/phonon[qt5] x11-libs/libX11 x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXi x11-libs/libxcb x11-libs/libxkbfile fontconfig? ( media-libs/fontconfig media-libs/freetype x11-libs/libXft x11-libs/xcb-util-image ) ibus? ( >=dev-qt/qtx11extras-5.6.1:5 app-i18n/ibus dev-libs/glib:2 x11-libs/libxcb x11-libs/xcb-util-keysyms ) input_devices_synaptics? ( x11-drivers/xf86-input-synaptics ) packagekit? ( >=app-admin/packagekit-qt-0.9.6 ) pulseaudio? ( dev-libs/glib:2 media-libs/libcanberra media-sound/pulseaudio ) scim? ( app-i18n/scim ) semantic-desktop? ( >=kde-frameworks/baloo-5.26.0:5 ) >=kde-plasma/breeze-5.8.3:5 >=kde-plasma/kde-cli-tools-5.8.3:5 >=kde-plasma/oxygen-5.8.3:5 >=dev-qt/qtgraphicaleffects-5.6.1:5 sys-apps/accountsservice x11-apps/setxkbmap legacy-systray? ( gtk2? ( dev-libs/libappindicator:2 ) gtk3? ( dev-libs/libappindicator:3 ) qt4? ( dev-libs/sni-qt ) ) pulseaudio? ( >=kde-plasma/plasma-pa-5.8.3:5 ) qt4? ( kde-base/qguiplatformplugin_kde ) !kde-apps/kcontrol !kde-apps/kdepasswd:4 !kde-apps/knetattach[handbook] !kde-base/plasma-desktop:4 !kde-base/plasma-workspace:4 !kde-base/solid-actions-kcm:4 !kde-plasma/systemsettings:4 !kde-misc/kcm_touchpad !kde-misc/kcm-touchpad !kde-plasma/kcm-touchpad !=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 REQUIRED_USE=legacy-systray? ( || ( gtk2 gtk3 qt4 ) ) gtk2? ( legacy-systray ) gtk3? ( legacy-systray ) SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.8.3/plasma-desktop-5.8.3.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=0411658a78f6efe9db63169bef84a230 +_md5_=e9dae9f5c1c099ab48bf1f953a49e37d diff --git a/metadata/md5-cache/kde-plasma/powerdevil-5.7.5 b/metadata/md5-cache/kde-plasma/powerdevil-5.7.5 index 3169bec2f937..5f78b3c4adf3 100644 --- a/metadata/md5-cache/kde-plasma/powerdevil-5.7.5 +++ b/metadata/md5-cache/kde-plasma/powerdevil-5.7.5 @@ -6,8 +6,8 @@ HOMEPAGE=https://projects.kde.org/projects/kde/workspace/powerdevil IUSE=systemd +wireless debug +handbook KEYWORDS=amd64 ~arm x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/kactivities-5.23.0:5 >=kde-frameworks/kauth-5.23.0:5[policykit] >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5 >=kde-frameworks/kglobalaccel-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kidletime-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/knotifications-5.23.0:5 >=kde-frameworks/knotifyconfig-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwayland-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=kde-frameworks/solid-5.23.0:5 >=kde-plasma/libkscreen-5.7.5:5 >=kde-plasma/plasma-workspace-5.7.5:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 virtual/libudev:= x11-libs/libxcb wireless? ( >=kde-frameworks/bluez-qt-5.23.0:5 >=kde-frameworks/networkmanager-qt-5.23.0:5 ) >=kde-plasma/kde-cli-tools-5.7.5:5 systemd? ( >=sys-power/upower-0.9.23 ) !systemd? ( sys-auth/polkit-pkla-compat || ( ( >=sys-auth/consolekit-1.0.1 sys-power/pm-utils >=sys-power/upower-0.9.23 ) sys-power/upower-pm-utils ) ) !kde-plasma/powerdevil:4 !kde-base/systemsettings:4[handbook] >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kactivities-5.23.0:5 >=kde-frameworks/kauth-5.23.0:5[policykit] >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5 >=kde-frameworks/kglobalaccel-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kidletime-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/knotifications-5.23.0:5 >=kde-frameworks/knotifyconfig-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwayland-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=kde-frameworks/solid-5.23.0:5 >=kde-plasma/libkscreen-5.7.5:5 >=kde-plasma/plasma-workspace-5.7.5:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 virtual/libudev:= x11-libs/libxcb wireless? ( >=kde-frameworks/bluez-qt-5.23.0:5 >=kde-frameworks/networkmanager-qt-5.23.0:5 ) >=kde-plasma/kde-cli-tools-5.7.5:5 systemd? ( >=sys-power/upower-0.9.23 ) !systemd? ( sys-auth/polkit-pkla-compat || ( ( >=sys-auth/consolekit-1.0.1 sys-power/pm-utils >=sys-power/upower-0.9.23 ) sys-power/upower-pm-utils ) ) !kde-plasma/powerdevil:4 !kde-plasma/systemsettings:4[handbook] >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.7.5/powerdevil-5.7.5.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=991fe07351b5aa82134ee1c790c2ee12 +_md5_=7d4a1f1c327c0531098b4d39ff64a1b3 diff --git a/metadata/md5-cache/kde-plasma/powerdevil-5.8.3 b/metadata/md5-cache/kde-plasma/powerdevil-5.8.3 index 704fdd109c96..a8cfe8a6e4cb 100644 --- a/metadata/md5-cache/kde-plasma/powerdevil-5.8.3 +++ b/metadata/md5-cache/kde-plasma/powerdevil-5.8.3 @@ -6,8 +6,8 @@ HOMEPAGE=https://projects.kde.org/projects/kde/workspace/powerdevil IUSE=systemd +wireless debug +handbook KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/kactivities-5.26.0:5 >=kde-frameworks/kauth-5.26.0:5[policykit] >=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kcrash-5.26.0:5 >=kde-frameworks/kdbusaddons-5.26.0:5 >=kde-frameworks/kdelibs4support-5.26.0:5 >=kde-frameworks/kglobalaccel-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kidletime-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/knotifications-5.26.0:5 >=kde-frameworks/knotifyconfig-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/kwayland-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kxmlgui-5.26.0:5 >=kde-frameworks/solid-5.26.0:5 >=kde-plasma/libkscreen-5.8.3:5 >=kde-plasma/plasma-workspace-5.8.3:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 virtual/libudev:= x11-libs/libxcb wireless? ( >=kde-frameworks/bluez-qt-5.26.0:5 >=kde-frameworks/networkmanager-qt-5.26.0:5 ) >=kde-plasma/kde-cli-tools-5.8.3:5 systemd? ( >=sys-power/upower-0.9.23 ) !systemd? ( sys-auth/polkit-pkla-compat || ( ( >=sys-auth/consolekit-1.0.1 sys-power/pm-utils >=sys-power/upower-0.9.23 ) sys-power/upower-pm-utils ) ) !kde-plasma/powerdevil:4 !kde-base/systemsettings:4[handbook] >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kactivities-5.26.0:5 >=kde-frameworks/kauth-5.26.0:5[policykit] >=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kcrash-5.26.0:5 >=kde-frameworks/kdbusaddons-5.26.0:5 >=kde-frameworks/kdelibs4support-5.26.0:5 >=kde-frameworks/kglobalaccel-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kidletime-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/knotifications-5.26.0:5 >=kde-frameworks/knotifyconfig-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/kwayland-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kxmlgui-5.26.0:5 >=kde-frameworks/solid-5.26.0:5 >=kde-plasma/libkscreen-5.8.3:5 >=kde-plasma/plasma-workspace-5.8.3:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=dev-qt/qtx11extras-5.6.1:5 virtual/libudev:= x11-libs/libxcb wireless? ( >=kde-frameworks/bluez-qt-5.26.0:5 >=kde-frameworks/networkmanager-qt-5.26.0:5 ) >=kde-plasma/kde-cli-tools-5.8.3:5 systemd? ( >=sys-power/upower-0.9.23 ) !systemd? ( sys-auth/polkit-pkla-compat || ( ( >=sys-auth/consolekit-1.0.1 sys-power/pm-utils >=sys-power/upower-0.9.23 ) sys-power/upower-pm-utils ) ) !kde-plasma/powerdevil:4 !kde-plasma/systemsettings:4[handbook] >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.8.3/powerdevil-5.8.3.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=359d31332de6b2bc0ca6814f6489f188 +_md5_=77f5d9fb167f1a2eefa88f6c6eb0a41f diff --git a/metadata/md5-cache/kde-plasma/systemsettings-4.11.22-r2 b/metadata/md5-cache/kde-plasma/systemsettings-4.11.22-r2 new file mode 100644 index 000000000000..4358aec78300 --- /dev/null +++ b/metadata/md5-cache/kde-plasma/systemsettings-4.11.22-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack +DEPEND=dev-libs/glib:2 kde-plasma/kwin:4 >=kde-base/libkworkspace-4.11.22:4[aqua=] media-libs/fontconfig >=media-libs/freetype-2 >=x11-libs/libxklavier-3.2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXi x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXtst opengl? ( virtual/opengl ) usb? ( virtual/libusb:0 ) x11-proto/kbproto x11-proto/xextproto >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DESCRIPTION=System settings utility +EAPI=6 +HOMEPAGE=https://www.kde.org/ https://userbase.kde.org/System_Settings +IUSE=debug gtk +kscreen +usb test opengl +handbook aqua +KEYWORDS=amd64 ~arm x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=dev-libs/glib:2 kde-plasma/kwin:4 >=kde-base/libkworkspace-4.11.22:4[aqua=] media-libs/fontconfig >=media-libs/freetype-2 >=x11-libs/libxklavier-3.2 x11-libs/libX11 x11-libs/libXcursor x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXi x11-libs/libxkbfile x11-libs/libXrandr x11-libs/libXtst opengl? ( virtual/opengl ) usb? ( virtual/libusb:0 ) sys-libs/timezone-data x11-apps/setxkbmap x11-misc/xkeyboard-config gtk? ( kde-plasma/kde-gtk-config:4 ) kscreen? ( kde-plasma/kscreen:4 ) || ( >=kde-base/legacy-icons-4.11.22:4[aqua=] >=kde-frameworks/oxygen-icons-5.19.0:5 ) kde-frameworks/oxygen-icons handbook? ( >=kde-base/kdelibs-4.11.22:4[aqua=,handbook] ) opengl? ( >=dev-qt/qtopengl-4.8.5:4 ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RESTRICT=test +SLOT=4/4.11 +SRC_URI=mirror://kde/Attic/applications/15.08.0/src/kde-workspace-4.11.22.tar.xz +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 kde4-meta cc1175ba18c9391fbc67922aecead7da multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=cdebb57dbb2850ccd6364584a41f56ac diff --git a/metadata/md5-cache/kde-plasma/systemsettings-5.7.5 b/metadata/md5-cache/kde-plasma/systemsettings-5.7.5 index e51b9ad278de..c0bc7c9864e9 100644 --- a/metadata/md5-cache/kde-plasma/systemsettings-5.7.5 +++ b/metadata/md5-cache/kde-plasma/systemsettings-5.7.5 @@ -6,8 +6,8 @@ HOMEPAGE=https://www.kde.org/ IUSE=classic gtk debug +handbook KEYWORDS=amd64 ~arm x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/kauth-5.23.0:5 >=kde-frameworks/kcmutils-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/kitemviews-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kwindowsystem-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 classic? ( >=kde-frameworks/khtml-5.23.0:5 ) gtk? ( >=kde-plasma/kde-gtk-config-5.7.5:5 ) !kde-base/systemsettings:4 >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kauth-5.23.0:5 >=kde-frameworks/kcmutils-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdbusaddons-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/kitemviews-5.23.0:5 >=kde-frameworks/kservice-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kwindowsystem-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 classic? ( >=kde-frameworks/khtml-5.23.0:5 ) gtk? ( >=kde-plasma/kde-gtk-config-5.7.5:5 ) !kde-plasma/systemsettings:4 >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.7.5/systemsettings-5.7.5.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=3ffa1b73eb35b383e1769ccbe8d75ac4 +_md5_=c5f03026caa2c4cabacd2871e7b7bcef diff --git a/metadata/md5-cache/kde-plasma/systemsettings-5.8.3 b/metadata/md5-cache/kde-plasma/systemsettings-5.8.3 index 771afabe345b..c9b4e39d3a64 100644 --- a/metadata/md5-cache/kde-plasma/systemsettings-5.8.3 +++ b/metadata/md5-cache/kde-plasma/systemsettings-5.8.3 @@ -6,8 +6,8 @@ HOMEPAGE=https://www.kde.org/ IUSE=classic gtk debug +handbook KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-2 -RDEPEND=>=kde-frameworks/kauth-5.26.0:5 >=kde-frameworks/kcmutils-5.26.0:5 >=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kdbusaddons-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kiconthemes-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/kitemviews-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kwindowsystem-5.26.0:5 >=kde-frameworks/kxmlgui-5.26.0:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 classic? ( >=kde-frameworks/khtml-5.26.0:5 ) gtk? ( >=kde-plasma/kde-gtk-config-5.8.3:5 ) !kde-base/systemsettings:4 >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 +RDEPEND=>=kde-frameworks/kauth-5.26.0:5 >=kde-frameworks/kcmutils-5.26.0:5 >=kde-frameworks/kcompletion-5.26.0:5 >=kde-frameworks/kconfig-5.26.0:5 >=kde-frameworks/kconfigwidgets-5.26.0:5 >=kde-frameworks/kcoreaddons-5.26.0:5 >=kde-frameworks/kdbusaddons-5.26.0:5 >=kde-frameworks/ki18n-5.26.0:5 >=kde-frameworks/kiconthemes-5.26.0:5 >=kde-frameworks/kio-5.26.0:5 >=kde-frameworks/kitemviews-5.26.0:5 >=kde-frameworks/kservice-5.26.0:5 >=kde-frameworks/kwidgetsaddons-5.26.0:5 >=kde-frameworks/kwindowsystem-5.26.0:5 >=kde-frameworks/kxmlgui-5.26.0:5 >=dev-qt/qtdbus-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 classic? ( >=kde-frameworks/khtml-5.26.0:5 ) gtk? ( >=kde-plasma/kde-gtk-config-5.8.3:5 ) !kde-plasma/systemsettings:4 >=kde-frameworks/kf-env-3 !=dev-qt/qtcore-5.6.1:5 SLOT=5 SRC_URI=mirror://kde/stable/plasma/5.8.3/systemsettings-5.8.3.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5d27da60e97ef1cabbb9d9c08574fa7a +_md5_=3af1a8787793f72319d4c0a8886f06d2 diff --git a/metadata/md5-cache/mail-client/claws-mail-3.14.1 b/metadata/md5-cache/mail-client/claws-mail-3.14.1 new file mode 100644 index 000000000000..20a41f702119 --- /dev/null +++ b/metadata/md5-cache/mail-client/claws-mail-3.14.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst postrm preinst prepare setup +DEPEND=!!mail-client/claws-mail-acpi-notifier !!mail-client/claws-mail-archive !!mail-client/claws-mail-att-remover !!mail-client/claws-mail-attachwarner !!mail-client/claws-mail-clamd !!mail-client/claws-mail-fancy !!mail-client/claws-mail-fetchinfo !mail-client/claws-mail-gdata !!mail-client/claws-mail-geolocation !!mail-client/claws-mail-gtkhtml !!mail-client/claws-mail-mailmbox !!mail-client/claws-mail-newmail !!mail-client/claws-mail-notification !!mail-client/claws-mail-perl !!mail-client/claws-mail-python !!mail-client/claws-mail-rssyl !!mail-client/claws-mail-spam-report !!mail-client/claws-mail-tnef-parse !!mail-client/claws-mail-vcalendar !!mail-client/claws-mail-address_keeper !!mail-client/claws-mail-pdf-viewer archive? ( app-arch/libarchive >=net-misc/curl-7.9.7 ) bogofilter? ( mail-filter/bogofilter ) calendar? ( >=net-misc/curl-7.9.7 ) dbus? ( >=dev-libs/dbus-glib-0.60 ) gdata? ( >=dev-libs/libgdata-0.17.1 ) gnutls? ( >=net-libs/gnutls-3.0 ) gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.20:2 ) imap? ( >=net-libs/libetpan-0.57 ) ldap? ( >=net-nds/openldap-2.0.7 ) nls? ( >=sys-devel/gettext-0.18 ) nntp? ( >=net-libs/libetpan-0.57 ) notification? ( dev-libs/glib:2 libcanberra? ( media-libs/libcanberra[gtk] ) libindicate? ( dev-libs/libindicate:3[gtk] ) libnotify? ( x11-libs/libnotify ) ) pda? ( >=app-pda/jpilot-0.99 ) pdf? ( app-text/poppler[cairo] ) pgp? ( >=app-crypt/gpgme-1.0.0 ) session? ( x11-libs/libICE x11-libs/libSM ) smime? ( >=app-crypt/gpgme-1.0.0 ) spam-report? ( >=net-misc/curl-7.9.7 ) spell? ( >=app-text/enchant-1.0.0 ) startup-notification? ( x11-libs/startup-notification ) valgrind? ( dev-util/valgrind ) webkit? ( >=net-libs/webkit-gtk-1.1.14:2 ) app-arch/xz-utils virtual/pkgconfig xface? ( >=media-libs/compface-1.4 ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 >=sys-apps/sed-4 +DESCRIPTION=An email client (and news reader) based on GTK+ +EAPI=6 +HOMEPAGE=http://www.claws-mail.org/ +IUSE=archive bogofilter calendar clamav dbus debug doc gdata gtk3 +imap ipv6 ldap +libcanberra +libindicate +libnotify networkmanager nls nntp +notification pda pdf perl +pgp python rss session sieve smime spamassassin spam-report spell +gnutls startup-notification valgrind webkit xface python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +LICENSE=GPL-3 +RDEPEND=archive? ( app-arch/libarchive >=net-misc/curl-7.9.7 ) bogofilter? ( mail-filter/bogofilter ) calendar? ( >=net-misc/curl-7.9.7 ) dbus? ( >=dev-libs/dbus-glib-0.60 ) gdata? ( >=dev-libs/libgdata-0.17.1 ) gnutls? ( >=net-libs/gnutls-3.0 ) gtk3? ( x11-libs/gtk+:3 ) !gtk3? ( >=x11-libs/gtk+-2.20:2 ) imap? ( >=net-libs/libetpan-0.57 ) ldap? ( >=net-nds/openldap-2.0.7 ) nls? ( >=sys-devel/gettext-0.18 ) nntp? ( >=net-libs/libetpan-0.57 ) notification? ( dev-libs/glib:2 libcanberra? ( media-libs/libcanberra[gtk] ) libindicate? ( dev-libs/libindicate:3[gtk] ) libnotify? ( x11-libs/libnotify ) ) pda? ( >=app-pda/jpilot-0.99 ) pdf? ( app-text/poppler[cairo] ) pgp? ( >=app-crypt/gpgme-1.0.0 ) session? ( x11-libs/libICE x11-libs/libSM ) smime? ( >=app-crypt/gpgme-1.0.0 ) spam-report? ( >=net-misc/curl-7.9.7 ) spell? ( >=app-text/enchant-1.0.0 ) startup-notification? ( x11-libs/startup-notification ) valgrind? ( dev-util/valgrind ) webkit? ( >=net-libs/webkit-gtk-1.1.14:2 ) app-misc/mime-types x11-misc/shared-mime-info clamav? ( app-antivirus/clamav ) networkmanager? ( net-misc/networkmanager ) pdf? ( app-text/ghostscript-gpl ) perl? ( dev-lang/perl:= ) python? ( >=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_python2_7(+)] >=dev-python/pygtk-2.10.3 ) rss? ( dev-libs/libxml2 net-misc/curl ) +REQUIRED_USE=libcanberra? ( notification ) libindicate? ( notification ) libnotify? ( notification ) networkmanager? ( dbus ) smime? ( pgp ) +SLOT=0 +SRC_URI=http://www.claws-mail.org/download.php?file=releases/claws-mail-3.14.1.tar.xz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=61f5c25d5645060fe99df2fd70f9b1a5 diff --git a/metadata/md5-cache/mail-filter/bogofilter-1.2.4-r1 b/metadata/md5-cache/mail-filter/bogofilter-1.2.4-r1 index 3f13aaed900e..770c32ec5336 100644 --- a/metadata/md5-cache/mail-filter/bogofilter-1.2.4-r1 +++ b/metadata/md5-cache/mail-filter/bogofilter-1.2.4-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare setup test -DEPEND=virtual/libiconv berkdb? ( >=sys-libs/db-3.2 ) !berkdb? ( sqlite? ( >=dev-db/sqlite-3.6.22 ) !sqlite? ( tokyocabinet? ( dev-db/tokyocabinet ) !tokyocabinet? ( >=sys-libs/db-3.2 ) ) ) sci-libs/gsl:= app-arch/pax !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DEPEND=virtual/libiconv berkdb? ( >=sys-libs/db-3.2:* ) !berkdb? ( sqlite? ( >=dev-db/sqlite-3.6.22 ) !sqlite? ( tokyocabinet? ( dev-db/tokyocabinet ) !tokyocabinet? ( >=sys-libs/db-3.2:* ) ) ) sci-libs/gsl:= app-arch/pax !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 DESCRIPTION=Bayesian spam filter designed with fast algorithms, and tuned for speed EAPI=5 HOMEPAGE=http://bogofilter.sourceforge.net/ IUSE=berkdb sqlite tokyocabinet KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd LICENSE=GPL-2 -RDEPEND=virtual/libiconv berkdb? ( >=sys-libs/db-3.2 ) !berkdb? ( sqlite? ( >=dev-db/sqlite-3.6.22 ) !sqlite? ( tokyocabinet? ( dev-db/tokyocabinet ) !tokyocabinet? ( >=sys-libs/db-3.2 ) ) ) sci-libs/gsl:= app-arch/pax +RDEPEND=virtual/libiconv berkdb? ( >=sys-libs/db-3.2:* ) !berkdb? ( sqlite? ( >=dev-db/sqlite-3.6.22 ) !sqlite? ( tokyocabinet? ( dev-db/tokyocabinet ) !tokyocabinet? ( >=sys-libs/db-3.2:* ) ) ) sci-libs/gsl:= app-arch/pax SLOT=0 SRC_URI=mirror://sourceforge/bogofilter/bogofilter-1.2.4.tar.bz2 _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c db-use a4966c7f4f7df444ead1212848c13cc9 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=2236e1433dd3e9224fe693d4d59d2186 +_md5_=7ec31efe6eb353312e2aa949bc19f0cd diff --git a/metadata/md5-cache/media-gfx/digikam-4.14.0-r1 b/metadata/md5-cache/media-gfx/digikam-4.14.0-r1 index 98d9d3b18e68..312ebf75c040 100644 --- a/metadata/md5-cache/media-gfx/digikam-4.14.0-r1 +++ b/metadata/md5-cache/media-gfx/digikam-4.14.0-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kdelibs-4.14.14:4[aqua=] kde-apps/kdebase-kioslaves:4 kde-apps/libkdcraw:4= kde-apps/libkexiv2:4= >=kde-apps/libkface-15.08.2-r1:4 kde-apps/libkgeomap:4= kde-apps/libkipi:4 kde-apps/kcmshell:4 dev-qt/qtgui:4 || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] ) media-libs/jasper media-libs/lcms:2 >=media-libs/lensfun-0.2.6 media-libs/liblqr >=media-libs/libpgf-6.12.27 media-libs/libpng:0= media-libs/opencv:=[contrib(+),-qt5] media-libs/phonon[qt4] >=media-libs/tiff-3.8.2:0 virtual/jpeg:0 x11-libs/libX11 addressbook? ( >=kde-apps/kdepimlibs-4.4:4[aqua=] ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) semantic-desktop? ( >=kde-base/baloo-4.12.0:4[aqua=] ) dev-cpp/eigen:3 dev-libs/boost sys-devel/gettext doc? ( app-doc/doxygen ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=>=kde-base/kdelibs-4.14.14:4[aqua=] kde-apps/kdebase-kioslaves:4 kde-apps/libkdcraw:4= kde-apps/libkexiv2:4= >=kde-apps/libkface-15.08.2-r1:4 kde-apps/libkgeomap:4= kde-apps/libkipi:4 kde-apps/kcmshell:4 dev-qt/qtgui:4 || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] ) media-libs/jasper media-libs/lcms:2 >=media-libs/lensfun-0.2.6 media-libs/liblqr >=media-libs/libpgf-6.12.27 media-libs/libpng:0= media-libs/opencv:=[contrib(+),-qt5] media-libs/phonon[qt4] >=media-libs/tiff-3.8.2:0 virtual/jpeg:0 x11-libs/libX11 addressbook? ( >=kde-apps/kdepimlibs-4.4:4[aqua=] ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) semantic-desktop? ( kde-frameworks/baloo:4 ) dev-cpp/eigen:3 dev-libs/boost sys-devel/gettext doc? ( app-doc/doxygen ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=Digital photo management application for KDE EAPI=5 HOMEPAGE=http://www.digikam.org/ IUSE=addressbook debug doc gphoto2 mysql semantic-desktop +thumbnails video l10n_ar l10n_be l10n_bg l10n_bs l10n_ca l10n_cs l10n_da l10n_de l10n_el l10n_en-GB l10n_eo l10n_es l10n_et l10n_eu l10n_fa l10n_fi l10n_fr l10n_ga l10n_gl l10n_he l10n_hi l10n_hr l10n_hu l10n_is l10n_it l10n_ja l10n_km l10n_ko l10n_lt l10n_lv l10n_ms l10n_nb l10n_nds l10n_ne l10n_nl l10n_nn l10n_pa l10n_pl l10n_pt l10n_pt-BR l10n_ro l10n_ru l10n_se l10n_sk l10n_sl l10n_sq l10n_sv l10n_th l10n_tr l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW +handbook aqua KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 handbook? ( FDL-1.2 ) -RDEPEND=>=kde-base/kdelibs-4.14.14:4[aqua=] kde-apps/kdebase-kioslaves:4 kde-apps/libkdcraw:4= kde-apps/libkexiv2:4= >=kde-apps/libkface-15.08.2-r1:4 kde-apps/libkgeomap:4= kde-apps/libkipi:4 kde-apps/kcmshell:4 dev-qt/qtgui:4 || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] ) media-libs/jasper media-libs/lcms:2 >=media-libs/lensfun-0.2.6 media-libs/liblqr >=media-libs/libpgf-6.12.27 media-libs/libpng:0= media-libs/opencv:=[contrib(+),-qt5] media-libs/phonon[qt4] >=media-libs/tiff-3.8.2:0 virtual/jpeg:0 x11-libs/libX11 addressbook? ( >=kde-apps/kdepimlibs-4.4:4[aqua=] ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) semantic-desktop? ( >=kde-base/baloo-4.12.0:4[aqua=] ) >=kde-apps/kreadconfig-4.4:4[aqua=] media-plugins/kipi-plugins:4 video? ( >=kde-apps/ffmpegthumbs-4.4:4[aqua=] ) kde-frameworks/oxygen-icons l10n_ar? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ar(+)] ) l10n_be? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_be(+)] ) l10n_bg? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bg(+)] ) l10n_bs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bs(+)] ) l10n_ca? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ca(+)] ) l10n_cs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_cs(+)] ) l10n_da? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_da(+)] ) l10n_de? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_de(+)] ) l10n_el? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_el(+)] ) l10n_en-GB? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_en-GB(+)] ) l10n_eo? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_eo(+)] ) l10n_es? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_es(+)] ) l10n_et? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_et(+)] ) l10n_eu? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_eu(+)] ) l10n_fa? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fa(+)] ) l10n_fi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fi(+)] ) l10n_fr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fr(+)] ) l10n_ga? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ga(+)] ) l10n_gl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_gl(+)] ) l10n_he? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_he(+)] ) l10n_hi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hi(+)] ) l10n_hr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hr(+)] ) l10n_hu? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hu(+)] ) l10n_is? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_is(+)] ) l10n_it? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_it(+)] ) l10n_ja? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ja(+)] ) l10n_km? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_km(+)] ) l10n_ko? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ko(+)] ) l10n_lt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_lt(+)] ) l10n_lv? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_lv(+)] ) l10n_ms? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ms(+)] ) l10n_nb? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nb(+)] ) l10n_nds? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nds(+)] ) l10n_ne? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ne(+)] ) l10n_nl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nl(+)] ) l10n_nn? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nn(+)] ) l10n_pa? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pa(+)] ) l10n_pl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pl(+)] ) l10n_pt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt(+)] ) l10n_pt-BR? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt-BR(+)] ) l10n_ro? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ro(+)] ) l10n_ru? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ru(+)] ) l10n_se? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_se(+)] ) l10n_sk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sk(+)] ) l10n_sl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sl(+)] ) l10n_sq? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sq(+)] ) l10n_sv? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sv(+)] ) l10n_th? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_th(+)] ) l10n_tr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_tr(+)] ) l10n_uk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_uk(+)] ) l10n_vi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_vi(+)] ) l10n_zh-CN? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_zh-CN(+)] ) l10n_zh-TW? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_zh-TW(+)] ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=>=kde-base/kdelibs-4.14.14:4[aqua=] kde-apps/kdebase-kioslaves:4 kde-apps/libkdcraw:4= kde-apps/libkexiv2:4= >=kde-apps/libkface-15.08.2-r1:4 kde-apps/libkgeomap:4= kde-apps/libkipi:4 kde-apps/kcmshell:4 dev-qt/qtgui:4 || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] ) media-libs/jasper media-libs/lcms:2 >=media-libs/lensfun-0.2.6 media-libs/liblqr >=media-libs/libpgf-6.12.27 media-libs/libpng:0= media-libs/opencv:=[contrib(+),-qt5] media-libs/phonon[qt4] >=media-libs/tiff-3.8.2:0 virtual/jpeg:0 x11-libs/libX11 addressbook? ( >=kde-apps/kdepimlibs-4.4:4[aqua=] ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) semantic-desktop? ( kde-frameworks/baloo:4 ) >=kde-apps/kreadconfig-4.4:4[aqua=] media-plugins/kipi-plugins:4 video? ( >=kde-apps/ffmpegthumbs-4.4:4[aqua=] ) kde-frameworks/oxygen-icons l10n_ar? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ar(+)] ) l10n_be? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_be(+)] ) l10n_bg? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bg(+)] ) l10n_bs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bs(+)] ) l10n_ca? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ca(+)] ) l10n_cs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_cs(+)] ) l10n_da? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_da(+)] ) l10n_de? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_de(+)] ) l10n_el? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_el(+)] ) l10n_en-GB? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_en-GB(+)] ) l10n_eo? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_eo(+)] ) l10n_es? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_es(+)] ) l10n_et? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_et(+)] ) l10n_eu? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_eu(+)] ) l10n_fa? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fa(+)] ) l10n_fi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fi(+)] ) l10n_fr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fr(+)] ) l10n_ga? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ga(+)] ) l10n_gl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_gl(+)] ) l10n_he? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_he(+)] ) l10n_hi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hi(+)] ) l10n_hr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hr(+)] ) l10n_hu? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hu(+)] ) l10n_is? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_is(+)] ) l10n_it? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_it(+)] ) l10n_ja? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ja(+)] ) l10n_km? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_km(+)] ) l10n_ko? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ko(+)] ) l10n_lt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_lt(+)] ) l10n_lv? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_lv(+)] ) l10n_ms? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ms(+)] ) l10n_nb? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nb(+)] ) l10n_nds? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nds(+)] ) l10n_ne? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ne(+)] ) l10n_nl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nl(+)] ) l10n_nn? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nn(+)] ) l10n_pa? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pa(+)] ) l10n_pl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pl(+)] ) l10n_pt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt(+)] ) l10n_pt-BR? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt-BR(+)] ) l10n_ro? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ro(+)] ) l10n_ru? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ru(+)] ) l10n_se? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_se(+)] ) l10n_sk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sk(+)] ) l10n_sl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sl(+)] ) l10n_sq? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sq(+)] ) l10n_sv? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sv(+)] ) l10n_th? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_th(+)] ) l10n_tr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_tr(+)] ) l10n_uk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_uk(+)] ) l10n_vi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_vi(+)] ) l10n_zh-CN? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_zh-CN(+)] ) l10n_zh-TW? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_zh-TW(+)] ) handbook? ( >=kde-base/kdelibs-4.4:4[aqua=,handbook] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] RESTRICT=test SLOT=4 SRC_URI=mirror://kde/stable/digikam/digikam-4.14.0.tar.bz2 _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=3128179856203e81be58d4e2af75197c +_md5_=84058d60412ee93b0d741da3f71acf9b diff --git a/metadata/md5-cache/media-gfx/digikam-4.4.0-r1 b/metadata/md5-cache/media-gfx/digikam-4.4.0-r1 index 79b80b90308b..1098e3212d8a 100644 --- a/metadata/md5-cache/media-gfx/digikam-4.4.0-r1 +++ b/metadata/md5-cache/media-gfx/digikam-4.4.0-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=kde-apps/kdebase-kioslaves:4 kde-apps/libkdcraw:4= kde-apps/libkexiv2:4= <=kde-apps/libkface-4.4.0 kde-apps/libkgeomap:4 kde-apps/libkipi:4 kde-apps/marble:4=[plasma] media-libs/jasper media-libs/lcms:2 media-libs/lensfun media-libs/liblqr >=media-libs/libpgf-6.12.27 media-libs/libpng:0= >=media-libs/opencv-2.4.9[-qt5] media-libs/tiff virtual/jpeg dev-qt/qtgui:4 || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] ) addressbook? ( >=kde-apps/kdepimlibs-4.10:4[aqua=] ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) semantic-desktop? ( >=kde-base/baloo-4.10:4[aqua=] ) dev-cpp/eigen:3 dev-libs/boost sys-devel/gettext doc? ( app-doc/doxygen ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=kde-apps/kdebase-kioslaves:4 kde-apps/libkdcraw:4= kde-apps/libkexiv2:4= <=kde-apps/libkface-4.4.0 kde-apps/libkgeomap:4 kde-apps/libkipi:4 kde-apps/marble:4=[plasma] media-libs/jasper media-libs/lcms:2 media-libs/lensfun media-libs/liblqr >=media-libs/libpgf-6.12.27 media-libs/libpng:0= >=media-libs/opencv-2.4.9[-qt5] media-libs/tiff virtual/jpeg dev-qt/qtgui:4 || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] ) addressbook? ( >=kde-apps/kdepimlibs-4.10:4[aqua=] ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) semantic-desktop? ( kde-frameworks/baloo:4 ) dev-cpp/eigen:3 dev-libs/boost sys-devel/gettext doc? ( app-doc/doxygen ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) handbook? ( app-text/docbook-xml-dtd:4.2 app-text/docbook-xsl-stylesheets ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=Digital photo management application for KDE EAPI=5 HOMEPAGE=http://www.digikam.org/ IUSE=addressbook debug doc gphoto2 mysql semantic-desktop themedesigner +thumbnails video l10n_ar l10n_be l10n_bg l10n_bs l10n_ca l10n_cs l10n_da l10n_de l10n_el l10n_en-GB l10n_eo l10n_es l10n_et l10n_eu l10n_fa l10n_fi l10n_fr l10n_ga l10n_gl l10n_he l10n_hi l10n_hr l10n_hu l10n_is l10n_it l10n_ja l10n_km l10n_ko l10n_lt l10n_lv l10n_ms l10n_nb l10n_nds l10n_ne l10n_nl l10n_nn l10n_pa l10n_pl l10n_pt l10n_pt-BR l10n_ro l10n_ru l10n_se l10n_sk l10n_sl l10n_sq l10n_sv l10n_th l10n_tr l10n_uk l10n_vi l10n_zh-CN l10n_zh-TW +handbook aqua KEYWORDS=amd64 x86 LICENSE=GPL-2 handbook? ( FDL-1.2 ) -RDEPEND=kde-apps/kdebase-kioslaves:4 kde-apps/libkdcraw:4= kde-apps/libkexiv2:4= <=kde-apps/libkface-4.4.0 kde-apps/libkgeomap:4 kde-apps/libkipi:4 kde-apps/marble:4=[plasma] media-libs/jasper media-libs/lcms:2 media-libs/lensfun media-libs/liblqr >=media-libs/libpgf-6.12.27 media-libs/libpng:0= >=media-libs/opencv-2.4.9[-qt5] media-libs/tiff virtual/jpeg dev-qt/qtgui:4 || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] ) addressbook? ( >=kde-apps/kdepimlibs-4.10:4[aqua=] ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) semantic-desktop? ( >=kde-base/baloo-4.10:4[aqua=] ) kde-apps/kreadconfig:4 media-plugins/kipi-plugins:4 video? ( || ( kde-apps/ffmpegthumbs:4 >=kde-apps/ffmpegthumbs-4.10:4[aqua=] ) ) kde-frameworks/oxygen-icons l10n_ar? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ar(+)] ) l10n_be? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_be(+)] ) l10n_bg? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_bg(+)] ) l10n_bs? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_bs(+)] ) l10n_ca? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ca(+)] ) l10n_cs? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_cs(+)] ) l10n_da? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_da(+)] ) l10n_de? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_de(+)] ) l10n_el? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_el(+)] ) l10n_en-GB? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_en-GB(+)] ) l10n_eo? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_eo(+)] ) l10n_es? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_es(+)] ) l10n_et? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_et(+)] ) l10n_eu? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_eu(+)] ) l10n_fa? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_fa(+)] ) l10n_fi? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_fi(+)] ) l10n_fr? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_fr(+)] ) l10n_ga? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ga(+)] ) l10n_gl? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_gl(+)] ) l10n_he? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_he(+)] ) l10n_hi? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_hi(+)] ) l10n_hr? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_hr(+)] ) l10n_hu? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_hu(+)] ) l10n_is? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_is(+)] ) l10n_it? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_it(+)] ) l10n_ja? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ja(+)] ) l10n_km? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_km(+)] ) l10n_ko? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ko(+)] ) l10n_lt? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_lt(+)] ) l10n_lv? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_lv(+)] ) l10n_ms? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ms(+)] ) l10n_nb? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_nb(+)] ) l10n_nds? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_nds(+)] ) l10n_ne? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ne(+)] ) l10n_nl? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_nl(+)] ) l10n_nn? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_nn(+)] ) l10n_pa? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_pa(+)] ) l10n_pl? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_pl(+)] ) l10n_pt? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_pt(+)] ) l10n_pt-BR? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_pt-BR(+)] ) l10n_ro? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ro(+)] ) l10n_ru? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ru(+)] ) l10n_se? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_se(+)] ) l10n_sk? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_sk(+)] ) l10n_sl? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_sl(+)] ) l10n_sq? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_sq(+)] ) l10n_sv? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_sv(+)] ) l10n_th? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_th(+)] ) l10n_tr? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_tr(+)] ) l10n_uk? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_uk(+)] ) l10n_vi? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_vi(+)] ) l10n_zh-CN? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_zh-CN(+)] ) l10n_zh-TW? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_zh-TW(+)] ) handbook? ( >=kde-base/kdelibs-4.10:4[aqua=,handbook] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=kde-apps/kdebase-kioslaves:4 kde-apps/libkdcraw:4= kde-apps/libkexiv2:4= <=kde-apps/libkface-4.4.0 kde-apps/libkgeomap:4 kde-apps/libkipi:4 kde-apps/marble:4=[plasma] media-libs/jasper media-libs/lcms:2 media-libs/lensfun media-libs/liblqr >=media-libs/libpgf-6.12.27 media-libs/libpng:0= >=media-libs/opencv-2.4.9[-qt5] media-libs/tiff virtual/jpeg dev-qt/qtgui:4 || ( dev-qt/qtsql:4[mysql] dev-qt/qtsql:4[sqlite] ) addressbook? ( >=kde-apps/kdepimlibs-4.10:4[aqua=] ) gphoto2? ( media-libs/libgphoto2:= ) mysql? ( virtual/mysql ) semantic-desktop? ( kde-frameworks/baloo:4 ) kde-apps/kreadconfig:4 media-plugins/kipi-plugins:4 video? ( || ( kde-apps/ffmpegthumbs:4 >=kde-apps/ffmpegthumbs-4.10:4[aqua=] ) ) kde-frameworks/oxygen-icons l10n_ar? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ar(+)] ) l10n_be? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_be(+)] ) l10n_bg? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_bg(+)] ) l10n_bs? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_bs(+)] ) l10n_ca? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ca(+)] ) l10n_cs? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_cs(+)] ) l10n_da? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_da(+)] ) l10n_de? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_de(+)] ) l10n_el? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_el(+)] ) l10n_en-GB? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_en-GB(+)] ) l10n_eo? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_eo(+)] ) l10n_es? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_es(+)] ) l10n_et? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_et(+)] ) l10n_eu? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_eu(+)] ) l10n_fa? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_fa(+)] ) l10n_fi? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_fi(+)] ) l10n_fr? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_fr(+)] ) l10n_ga? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ga(+)] ) l10n_gl? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_gl(+)] ) l10n_he? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_he(+)] ) l10n_hi? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_hi(+)] ) l10n_hr? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_hr(+)] ) l10n_hu? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_hu(+)] ) l10n_is? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_is(+)] ) l10n_it? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_it(+)] ) l10n_ja? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ja(+)] ) l10n_km? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_km(+)] ) l10n_ko? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ko(+)] ) l10n_lt? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_lt(+)] ) l10n_lv? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_lv(+)] ) l10n_ms? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ms(+)] ) l10n_nb? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_nb(+)] ) l10n_nds? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_nds(+)] ) l10n_ne? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ne(+)] ) l10n_nl? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_nl(+)] ) l10n_nn? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_nn(+)] ) l10n_pa? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_pa(+)] ) l10n_pl? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_pl(+)] ) l10n_pt? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_pt(+)] ) l10n_pt-BR? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_pt-BR(+)] ) l10n_ro? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ro(+)] ) l10n_ru? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_ru(+)] ) l10n_se? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_se(+)] ) l10n_sk? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_sk(+)] ) l10n_sl? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_sl(+)] ) l10n_sq? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_sq(+)] ) l10n_sv? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_sv(+)] ) l10n_th? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_th(+)] ) l10n_tr? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_tr(+)] ) l10n_uk? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_uk(+)] ) l10n_vi? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_vi(+)] ) l10n_zh-CN? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_zh-CN(+)] ) l10n_zh-TW? ( >=kde-apps/kde4-l10n-4.10:4[aqua=,l10n_zh-TW(+)] ) handbook? ( >=kde-base/kdelibs-4.10:4[aqua=,handbook] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] RESTRICT=test SLOT=4 SRC_URI=mirror://kde/stable/digikam/digikam-4.4.0.tar.bz2 _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=ab7d46588c0f622f5c48df09141e2331 +_md5_=ce8f039e1e349f9dfb9dce555a7c65cb diff --git a/metadata/md5-cache/media-gfx/hugin-2016.2.0 b/metadata/md5-cache/media-gfx/hugin-2016.2.0 index 4aa14bbf64b2..26dfa127853e 100644 --- a/metadata/md5-cache/media-gfx/hugin-2016.2.0 +++ b/metadata/md5-cache/media-gfx/hugin-2016.2.0 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test -DEPEND=!!dev-util/cocom dev-db/sqlite:3 >=dev-libs/boost-1.49.0-r1:0= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= media-libs/freeglut media-libs/glew:= >=media-libs/libpano13-2.9.19_beta1:0= media-libs/libpng:0= media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] sci-libs/fftw:= sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/wxGTK:3.0=[X,opengl] lapack? ( virtual/blas virtual/lapack ) sift? ( media-gfx/autopano-sift-C ) dev-cpp/tclap sys-devel/gettext virtual/pkgconfig python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?] >=dev-lang/swig-2.0.4 ) sys-devel/make >=dev-util/cmake-2.8.12 +DEPEND=!!dev-util/cocom dev-db/sqlite:3 dev-libs/boost:= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= media-libs/freeglut media-libs/glew:= >=media-libs/libpano13-2.9.19_beta1:0= media-libs/libpng:0= media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] sci-libs/fftw:3.0= sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/wxGTK:3.0=[X,opengl] lapack? ( virtual/blas virtual/lapack ) sift? ( media-gfx/autopano-sift-C ) dev-cpp/tclap sys-devel/gettext virtual/pkgconfig python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] >=dev-lang/swig-2.0.4 ) sys-devel/make >=dev-util/cmake-2.8.12 DESCRIPTION=GUI for the creation & processing of panoramic images -EAPI=5 +EAPI=6 HOMEPAGE=http://hugin.sf.net -IUSE=debug lapack python sift l10n_ca l10n_ca-valencia l10n_cs l10n_da l10n_de l10n_en-GB l10n_es l10n_eu l10n_fi l10n_fr l10n_hu l10n_it l10n_ja l10n_nl l10n_pl l10n_pt-BR l10n_ro l10n_ru l10n_sk l10n_sv l10n_zh-CN l10n_zh-TW python_targets_python2_7 python_targets_python3_4 python_single_target_python2_7 python_single_target_python3_4 +IUSE=debug lapack python sift l10n_ca l10n_ca-valencia l10n_cs l10n_da l10n_de l10n_en-GB l10n_es l10n_eu l10n_fi l10n_fr l10n_hu l10n_it l10n_ja l10n_nl l10n_pl l10n_pt-BR l10n_ro l10n_ru l10n_sk l10n_sv l10n_zh-CN l10n_zh-TW python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 KEYWORDS=~amd64 ~ppc ~x86 LICENSE=GPL-2 SIFT -RDEPEND=!!dev-util/cocom dev-db/sqlite:3 >=dev-libs/boost-1.49.0-r1:0= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= media-libs/freeglut media-libs/glew:= >=media-libs/libpano13-2.9.19_beta1:0= media-libs/libpng:0= media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] sci-libs/fftw:= sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/wxGTK:3.0=[X,opengl] lapack? ( virtual/blas virtual/lapack ) sift? ( media-gfx/autopano-sift-C ) media-libs/exiftool -REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_4 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) ) +RDEPEND=!!dev-util/cocom dev-db/sqlite:3 dev-libs/boost:= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= media-libs/freeglut media-libs/glew:= >=media-libs/libpano13-2.9.19_beta1:0= media-libs/libpng:0= media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] sci-libs/fftw:3.0= sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/wxGTK:3.0=[X,opengl] lapack? ( virtual/blas virtual/lapack ) sift? ( media-gfx/autopano-sift-C ) media-libs/exiftool +REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) ) SLOT=0 SRC_URI=mirror://sourceforge/hugin/hugin-2016.2.0.tar.bz2 _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c wxwidgets 9b34ce3ca77f4e418e8fd9951c4c1cb1 -_md5_=c2cb0b961ea955323c1c312056abc16f +_md5_=9aa998b9fb186e995693e207f2c28c49 diff --git a/metadata/md5-cache/media-gfx/hugin-9999 b/metadata/md5-cache/media-gfx/hugin-9999 index 289538b5b944..2b37c0735b5d 100644 --- a/metadata/md5-cache/media-gfx/hugin-9999 +++ b/metadata/md5-cache/media-gfx/hugin-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=!!dev-util/cocom dev-db/sqlite:3 >=dev-libs/boost-1.49.0-r1:0= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= media-libs/freeglut media-libs/glew:= >=media-libs/libpano13-2.9.19_beta1:0= media-libs/libpng:0= media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] sci-libs/fftw:= sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/wxGTK:3.0=[X,opengl] lapack? ( virtual/blas virtual/lapack ) sift? ( media-gfx/autopano-sift-C ) dev-cpp/tclap sys-devel/gettext virtual/pkgconfig python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_jython2_7(-),-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python3_5(-),python_single_target_python2_7(+)?,python_single_target_python3_4(+)?] >=dev-lang/swig-2.0.4 ) dev-vcs/mercurial sys-devel/make >=dev-util/cmake-2.8.12 +DEPEND=!!dev-util/cocom dev-db/sqlite:3 dev-libs/boost:= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= media-libs/freeglut media-libs/glew:= >=media-libs/libpano13-2.9.19_beta1:0= media-libs/libpng:0= media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] sci-libs/fftw:3.0= sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/wxGTK:3.0=[X,opengl] lapack? ( virtual/blas virtual/lapack ) sift? ( media-gfx/autopano-sift-C ) dev-cpp/tclap sys-devel/gettext virtual/pkgconfig python? ( python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_4? ( dev-lang/python:3.4 ) python_single_target_python3_5? ( dev-lang/python:3.5 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-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(+)?] >=dev-lang/swig-2.0.4 ) dev-vcs/mercurial sys-devel/make >=dev-util/cmake-2.8.12 DESCRIPTION=GUI for the creation & processing of panoramic images -EAPI=5 +EAPI=6 HOMEPAGE=http://hugin.sf.net -IUSE=debug lapack python sift l10n_ca l10n_ca-valencia l10n_cs l10n_da l10n_de l10n_en-GB l10n_es l10n_eu l10n_fi l10n_fr l10n_hu l10n_it l10n_ja l10n_nl l10n_pl l10n_pt-BR l10n_ro l10n_ru l10n_sk l10n_sv l10n_zh-CN l10n_zh-TW python_targets_python2_7 python_targets_python3_4 python_single_target_python2_7 python_single_target_python3_4 +IUSE=debug lapack python sift l10n_ca l10n_ca-valencia l10n_cs l10n_da l10n_de l10n_en-GB l10n_es l10n_eu l10n_fi l10n_fr l10n_hu l10n_it l10n_ja l10n_nl l10n_pl l10n_pt-BR l10n_ro l10n_ru l10n_sk l10n_sv l10n_zh-CN l10n_zh-TW python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 LICENSE=GPL-2 SIFT -RDEPEND=!!dev-util/cocom dev-db/sqlite:3 >=dev-libs/boost-1.49.0-r1:0= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= media-libs/freeglut media-libs/glew:= >=media-libs/libpano13-2.9.19_beta1:0= media-libs/libpng:0= media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] sci-libs/fftw:= sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/wxGTK:3.0=[X,opengl] lapack? ( virtual/blas virtual/lapack ) sift? ( media-gfx/autopano-sift-C ) media-libs/exiftool -REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_4 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) ) +RDEPEND=!!dev-util/cocom dev-db/sqlite:3 dev-libs/boost:= dev-libs/zthread >=media-gfx/enblend-4.0 media-gfx/exiv2:= media-libs/freeglut media-libs/glew:= >=media-libs/libpano13-2.9.19_beta1:0= media-libs/libpng:0= media-libs/openexr:= media-libs/tiff:0 >=media-libs/vigra-1.9.0[openexr] sci-libs/fftw:3.0= sys-libs/zlib virtual/glu virtual/jpeg:0 virtual/opengl x11-libs/wxGTK:3.0=[X,opengl] lapack? ( virtual/blas virtual/lapack ) sift? ( media-gfx/autopano-sift-C ) media-libs/exiftool +REQUIRED_USE=python? ( ^^ ( python_single_target_python2_7 python_single_target_python3_4 python_single_target_python3_5 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_4? ( python_targets_python3_4 ) python_single_target_python3_5? ( python_targets_python3_5 ) ) SLOT=0 _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc mercurial 789038b352d112bcff9dff083aa40d8d multilib 165fc17c38d1b11dac2008280dab6e80 python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c wxwidgets 9b34ce3ca77f4e418e8fd9951c4c1cb1 -_md5_=5d5321ee92546996a3bcec7f7e3a8d12 +_md5_=c38094defb365f8829fc330aa077ae4b diff --git a/metadata/md5-cache/media-sound/gmusicbrowser-1.1.15-r2 b/metadata/md5-cache/media-sound/gmusicbrowser-1.1.15-r2 new file mode 100644 index 000000000000..3f6fa2c0047a --- /dev/null +++ b/metadata/md5-cache/media-sound/gmusicbrowser-1.1.15-r2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install postinst postrm preinst +DEPEND=sys-devel/gettext >=sys-apps/sed-4 +DESCRIPTION=An open-source jukebox for large collections of mp3/ogg/flac files +EAPI=6 +HOMEPAGE=http://gmusicbrowser.org/ +IUSE=dbus doc extras gstreamer gstreamer-0 libnotify mplayer +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-lang/perl dev-perl/gtk2-perl virtual/perl-MIME-Base64 || ( net-misc/wget dev-perl/AnyEvent-HTTP ) dbus? ( dev-perl/Net-DBus ) gstreamer? ( dev-perl/Glib-Object-Introspection ) gstreamer-0? ( dev-perl/GStreamer dev-perl/GStreamer-Interfaces media-plugins/gst-plugins-meta:0.10 ) mplayer? ( || ( media-video/mplayer media-video/mpv ) ) !gstreamer? ( !gstreamer-0? ( !mplayer? ( media-sound/alsa-utils media-sound/flac123 || ( media-sound/mpg123 media-sound/mpg321 ) media-sound/vorbis-tools ) ) ) extras? ( dev-perl/gnome2-wnck ) libnotify? ( dev-perl/Gtk2-Notify ) +SLOT=0 +SRC_URI=http://gmusicbrowser.org/download/gmusicbrowser-1.1.15.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=a1ad1f21add0dd5ab4d9cc5dfcbdc0d7 diff --git a/metadata/md5-cache/media-sound/gmusicbrowser-9999 b/metadata/md5-cache/media-sound/gmusicbrowser-9999 index 77bafc3f47eb..aee15f64687c 100644 --- a/metadata/md5-cache/media-sound/gmusicbrowser-9999 +++ b/metadata/md5-cache/media-sound/gmusicbrowser-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile install postinst postrm preinst unpack -DEPEND=sys-devel/gettext doc? ( dev-perl/Text-Markdown ) dev-vcs/git >=sys-apps/sed-4 +DEPEND=sys-devel/gettext doc? ( dev-perl/Text-Markdown ) >=dev-vcs/git-1.8.2.1 >=sys-apps/sed-4 DESCRIPTION=An open-source jukebox for large collections of mp3/ogg/flac files -EAPI=5 +EAPI=6 HOMEPAGE=http://gmusicbrowser.org/ -IUSE=doc +IUSE=dbus doc extras gstreamer gstreamer-0 libnotify mplayer LICENSE=GPL-3 -RDEPEND=dev-lang/perl dev-perl/gtk2-perl virtual/perl-MIME-Base64 || ( net-misc/wget dev-perl/AnyEvent-HTTP ) || ( ( dev-perl/GStreamer dev-perl/GStreamer-Interfaces media-plugins/gst-plugins-meta:0.10 ) ( media-video/mplayer ) ( media-video/mpv ) ( media-sound/alsa-utils media-sound/flac123 || ( media-sound/mpg123 media-sound/mpg321 ) media-sound/vorbis-tools ) ) +RDEPEND=dev-lang/perl dev-perl/gtk2-perl virtual/perl-MIME-Base64 || ( net-misc/wget dev-perl/AnyEvent-HTTP ) dbus? ( dev-perl/Net-DBus ) gstreamer? ( dev-perl/Glib-Object-Introspection ) gstreamer-0? ( dev-perl/GStreamer dev-perl/GStreamer-Interfaces media-plugins/gst-plugins-meta:0.10 ) mplayer? ( || ( media-video/mplayer media-video/mpv ) ) !gstreamer? ( !gstreamer-0? ( !mplayer? ( media-sound/alsa-utils media-sound/flac123 || ( media-sound/mpg123 media-sound/mpg321 ) media-sound/vorbis-tools ) ) ) extras? ( dev-perl/gnome2-wnck ) libnotify? ( dev-perl/Gtk2-Notify ) SLOT=0 -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d git-2 7af5d170bfc02983b4bcd3167dc5edd4 gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=d197d15cdf3985352dd7b86afa49f9a9 +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d git-r3 e928b84a9f6f1d9076d1d27687876dc6 gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=d5984780608efaec06b867180374db0d diff --git a/metadata/md5-cache/media-tv/kodi-17.0_beta4 b/metadata/md5-cache/media-tv/kodi-17.0_beta4-r1 similarity index 90% rename from metadata/md5-cache/media-tv/kodi-17.0_beta4 rename to metadata/md5-cache/media-tv/kodi-17.0_beta4-r1 index 78cb01e5a93f..f8d27fc109cd 100644 --- a/metadata/md5-cache/media-tv/kodi-17.0_beta4 +++ b/metadata/md5-cache/media-tv/kodi-17.0_beta4-r1 @@ -9,6 +9,6 @@ LICENSE=GPL-2 RDEPEND=>=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_python2_7(+)] app-arch/bzip2 app-arch/unzip app-arch/zip app-i18n/enca airplay? ( app-pda/libplist ) dev-libs/expat dev-libs/fribidi dev-libs/libcdio[-minimal] cec? ( >=dev-libs/libcec-3.0 ) dev-libs/libpcre[cxx] dev-libs/libxml2 dev-libs/libxslt >=dev-libs/lzo-2.04 dev-libs/tinyxml[stl] >=dev-libs/yajl-2 dev-python/simplejson[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_python2_7(+)] dev-python/pillow[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_python2_7(+)] media-fonts/anonymous-pro media-fonts/corefonts media-fonts/dejavu alsa? ( media-libs/alsa-lib ) media-libs/flac media-libs/fontconfig media-libs/freetype media-libs/jasper media-libs/jbigkit >=media-libs/libass-0.9.7 bluray? ( >=media-libs/libbluray-0.7.0 ) media-libs/libmad media-libs/libmodplug media-libs/libmpeg2 media-libs/libsamplerate >=media-libs/taglib-1.9 media-libs/tiff:0= media-sound/wavpack >=media-video/ffmpeg-3.0:=[encode] nfs? ( net-fs/libnfs:= ) webserver? ( net-libs/libmicrohttpd[messages] ) sftp? ( net-libs/libssh[sftp] ) net-misc/curl samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) bluetooth? ( net-wireless/bluez ) dbus? ( sys-apps/dbus ) caps? ( sys-libs/libcap ) sys-libs/zlib virtual/jpeg:0= usb? ( virtual/libusb:1 ) mysql? ( virtual/mysql ) opengl? ( virtual/glu virtual/opengl >=media-libs/glew-1.5.6:= ) gles? ( media-libs/mesa[gles2] ) vaapi? ( x11-libs/libva[opengl] ) vdpau? ( || ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) media-video/ffmpeg[vdpau] ) X? ( x11-apps/xdpyinfo x11-apps/mesa-progs x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender ) zeroconf? ( net-dns/avahi ) !media-tv/xbmc udisks? ( sys-fs/udisks:0 ) upower? ( || ( sys-power/upower sys-power/upower-pm-utils ) ) REQUIRED_USE=|| ( gles opengl ) ?? ( gles vaapi ) udisks? ( dbus ) upower? ( dbus ) SLOT=0 -SRC_URI=https://github.com/xbmc/xbmc/archive/17.0b4-Krypton.tar.gz -> kodi-17.0b4.tar.gz !java? ( https://github.com/candrews/gentoo-kodi/raw/master/kodi-17.0b4-generated-addons.tar.xz ) +SRC_URI=https://github.com/xbmc/xbmc/archive/17.0b4-Krypton.tar.gz -> kodi-17.0b4.tar.gz https://github.com/xbmc/libdvdcss/archive/2f12236bc1c92f73c21e973363f79eb300de603f.tar.gz -> libdvdcss-2f12236bc1c92f73c21e973363f79eb300de603f.tar.gz https://github.com/xbmc/libdvdread/archive/17d99db97e7b8f23077b342369d3c22a6250affd.tar.gz -> libdvdread-17d99db97e7b8f23077b342369d3c22a6250affd.tar.gz https://github.com/xbmc/libdvdnav/archive/43b5f81f5fe30bceae3b7cecf2b0ca57fc930dac.tar.gz -> libdvdnav-43b5f81f5fe30bceae3b7cecf2b0ca57fc930dac.tar.gz !java? ( https://github.com/candrews/gentoo-kodi/raw/master/kodi-17.0b4-generated-addons.tar.xz ) _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 libtool 4890219c51da247200223277f993e054 linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=8d57fd9224eab767710c979a8f49d5d1 +_md5_=65220cc1e3a73ec1f59e07921bf25b11 diff --git a/metadata/md5-cache/media-tv/kodi-9999 b/metadata/md5-cache/media-tv/kodi-9999 index b74b84a6450b..96853a4843a2 100644 --- a/metadata/md5-cache/media-tv/kodi-9999 +++ b/metadata/md5-cache/media-tv/kodi-9999 @@ -9,4 +9,4 @@ RDEPEND=>=dev-lang/python-2.7.5-r2:2.7[sqlite] >=dev-lang/python-exec-2:=[python REQUIRED_USE=|| ( gles opengl ) ?? ( gles vaapi ) udisks? ( dbus ) upower? ( dbus ) SLOT=0 _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 git-r3 e928b84a9f6f1d9076d1d27687876dc6 libtool 4890219c51da247200223277f993e054 linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=8d57fd9224eab767710c979a8f49d5d1 +_md5_=65220cc1e3a73ec1f59e07921bf25b11 diff --git a/metadata/md5-cache/net-fs/torus-0.1.2 b/metadata/md5-cache/net-fs/torus-0.1.2 new file mode 100644 index 000000000000..386779400343 --- /dev/null +++ b/metadata/md5-cache/net-fs/torus-0.1.2 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install test unpack +DEPEND=>=dev-lang/go-1.6:= +DESCRIPTION=A distributed storage system coordinated through etcd +EAPI=6 +HOMEPAGE=https://github.com/coreos/torus +IUSE=doc test +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +SLOT=0 +SRC_URI=https://github.com/coreos/torus/.../releases/download/v0.1.2/torus_v0.1.2_src.tar.gz -> torus-0.1.2.tar.gz https://github.com/Masterminds/glide/archive/0.10.2.tar.gz -> glide-0.10.2.tar.gz test? ( https://github.com/gogo/protobuf/archive/v0.3.tar.gz -> gogo-protobuf-0.3.tar.gz ) +_md5_=4e63db7e0864c2b433125280adf2e322 diff --git a/metadata/md5-cache/net-libs/libkpeople-0.3.0 b/metadata/md5-cache/net-libs/libkpeople-0.3.0 index 5dc484c37bfa..da6eb5b75385 100644 --- a/metadata/md5-cache/net-libs/libkpeople-0.3.0 +++ b/metadata/md5-cache/net-libs/libkpeople-0.3.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-apps/kdepimlibs-4.4:4[aqua=] semantic-desktop? ( >=kde-base/baloo-4.4:4[aqua=] ) sys-devel/gettext >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=>=kde-apps/kdepimlibs-4.4:4[aqua=] semantic-desktop? ( kde-frameworks/baloo:4 ) sys-devel/gettext >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=KDE contact person abstraction library EAPI=6 HOMEPAGE=https://projects.kde.org/projects/playground/network/kpeople IUSE=debug examples semantic-desktop test l10n_bs l10n_cs l10n_da l10n_de l10n_el l10n_fi l10n_fr l10n_hu l10n_ja l10n_lt l10n_nl l10n_pl l10n_pt l10n_pt-BR l10n_ro l10n_ru l10n_sk l10n_sl l10n_sv l10n_uk test aqua KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1 -RDEPEND=>=kde-apps/kdepimlibs-4.4:4[aqua=] semantic-desktop? ( >=kde-base/baloo-4.4:4[aqua=] ) kde-frameworks/oxygen-icons l10n_bs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bs(+)] ) l10n_cs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_cs(+)] ) l10n_da? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_da(+)] ) l10n_de? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_de(+)] ) l10n_el? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_el(+)] ) l10n_fi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fi(+)] ) l10n_fr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fr(+)] ) l10n_hu? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hu(+)] ) l10n_ja? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ja(+)] ) l10n_lt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_lt(+)] ) l10n_nl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nl(+)] ) l10n_pl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pl(+)] ) l10n_pt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt(+)] ) l10n_pt-BR? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt-BR(+)] ) l10n_ro? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ro(+)] ) l10n_ru? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ru(+)] ) l10n_sk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sk(+)] ) l10n_sl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sl(+)] ) l10n_sv? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sv(+)] ) l10n_uk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_uk(+)] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=>=kde-apps/kdepimlibs-4.4:4[aqua=] semantic-desktop? ( kde-frameworks/baloo:4 ) kde-frameworks/oxygen-icons l10n_bs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bs(+)] ) l10n_cs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_cs(+)] ) l10n_da? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_da(+)] ) l10n_de? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_de(+)] ) l10n_el? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_el(+)] ) l10n_fi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fi(+)] ) l10n_fr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fr(+)] ) l10n_hu? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hu(+)] ) l10n_ja? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ja(+)] ) l10n_lt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_lt(+)] ) l10n_nl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nl(+)] ) l10n_pl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pl(+)] ) l10n_pt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt(+)] ) l10n_pt-BR? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt-BR(+)] ) l10n_ro? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ro(+)] ) l10n_ru? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ru(+)] ) l10n_sk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sk(+)] ) l10n_sl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sl(+)] ) l10n_sv? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sv(+)] ) l10n_uk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_uk(+)] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4/4 SRC_URI=mirror://kde/unstable/libkpeople/0.3.0/src/libkpeople-0.3.0.tar.bz2 _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=f8d0c300764a6a31dd52654bf4f8ab28 +_md5_=4f60229623933b0b436104bb438f64d7 diff --git a/metadata/md5-cache/net-mail/dovecot-2.2.25 b/metadata/md5-cache/net-mail/dovecot-2.2.25 index a9fd00e595fb..e81af233ebdb 100644 --- a/metadata/md5-cache/net-mail/dovecot-2.2.25 +++ b/metadata/md5-cache/net-mail/dovecot-2.2.25 @@ -4,10 +4,10 @@ DESCRIPTION=An IMAP and POP3 server written with security primarily in mind EAPI=6 HOMEPAGE=http://www.dovecot.org/ IUSE=kerberos ldap mysql pam postgres sqlite vpopmail cydir imapc +maildir mbox mdbox pop3c sdbox bzip2 lzma lz4 zlib caps doc ipv6 libressl lucene managesieve selinux sieve solr +ssl static-libs suid tcpd textcat ssl -KEYWORDS=alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~s390 ~x86 +KEYWORDS=alpha ~amd64 ~arm hppa ~ppc ppc64 ~s390 ~x86 LICENSE=LGPL-2.1 MIT RDEPEND=bzip2? ( app-arch/bzip2 ) caps? ( sys-libs/libcap ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) lucene? ( >=dev-cpp/clucene-2.3 ) lzma? ( app-arch/xz-utils ) lz4? ( app-arch/lz4 ) mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql:* !dev-db/postgresql[ldap,threads] ) selinux? ( sec-policy/selinux-dovecot ) solr? ( net-misc/curl dev-libs/expat ) sqlite? ( dev-db/sqlite:* ) ssl? ( !libressl? ( dev-libs/openssl:0 ) libressl? ( dev-libs/libressl ) ) tcpd? ( sys-apps/tcp-wrappers ) textcat? ( app-text/libexttextcat ) vpopmail? ( net-mail/vpopmail ) zlib? ( sys-libs/zlib ) virtual/libiconv dev-libs/icu:= net-mail/mailbase SLOT=0 SRC_URI=http://dovecot.org/releases/2.2/dovecot-2.2.25.tar.gz sieve? ( http://pigeonhole.dovecot.org/releases/2.2/dovecot-2.2-pigeonhole-0.4.15.tar.gz ) managesieve? ( http://pigeonhole.dovecot.org/releases/2.2/dovecot-2.2-pigeonhole-0.4.15.tar.gz ) _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 ssl-cert b031e94f4c7c34e1d677376b8929821a systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=8986fafdd5689a2d4d7c3d8bd6fc6ee6 +_md5_=855505632602a4a59000a40ffb5eaf61 diff --git a/metadata/md5-cache/net-misc/chrony-2.4-r1 b/metadata/md5-cache/net-misc/chrony-2.4-r1 new file mode 100644 index 000000000000..cafb1a4db619 --- /dev/null +++ b/metadata/md5-cache/net-misc/chrony-2.4-r1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare +DEPEND=caps? ( sys-libs/libcap ) libedit? ( dev-libs/libedit ) readline? ( >=sys-libs/readline-4.1-r4:= ) html? ( dev-ruby/asciidoctor ) pps? ( net-misc/pps-tools ) virtual/pkgconfig +DESCRIPTION=NTP client and server programs +EAPI=6 +HOMEPAGE=http://chrony.tuxfamily.org/ +IUSE=caps +cmdmon html ipv6 libedit +ntp +phc pps readline +refclock +rtc selinux +adns +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=caps? ( sys-libs/libcap ) libedit? ( dev-libs/libedit ) readline? ( >=sys-libs/readline-4.1-r4:= ) selinux? ( sec-policy/selinux-chronyd ) +REQUIRED_USE=?? ( libedit readline ) +RESTRICT=test +SLOT=0 +SRC_URI=http://download.tuxfamily.org/chrony/chrony-2.4.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=0ee2c437bf1b92005520d34b455d9e6e diff --git a/metadata/md5-cache/net-misc/chrony-9999 b/metadata/md5-cache/net-misc/chrony-9999 index 534169b0e846..9ac6332454e3 100644 --- a/metadata/md5-cache/net-misc/chrony-9999 +++ b/metadata/md5-cache/net-misc/chrony-9999 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install prepare unpack -DEPEND=caps? ( sys-libs/libcap ) libedit? ( dev-libs/libedit ) readline? ( >=sys-libs/readline-4.1-r4:= ) sys-apps/texinfo >=dev-vcs/git-1.8.2.1 virtual/pkgconfig +DEPEND=caps? ( sys-libs/libcap ) libedit? ( dev-libs/libedit ) readline? ( >=sys-libs/readline-4.1-r4:= ) dev-ruby/asciidoctor pps? ( net-misc/pps-tools ) >=dev-vcs/git-1.8.2.1 virtual/pkgconfig DESCRIPTION=NTP client and server programs -EAPI=5 +EAPI=6 HOMEPAGE=http://chrony.tuxfamily.org/ -IUSE=caps +cmdmon ipv6 libedit +ntp +phc +pps readline +refclock +rtc selinux +adns +IUSE=caps +cmdmon ipv6 libedit +ntp +phc pps readline +refclock +rtc selinux +adns LICENSE=GPL-2 RDEPEND=caps? ( sys-libs/libcap ) libedit? ( dev-libs/libedit ) readline? ( >=sys-libs/readline-4.1-r4:= ) selinux? ( sec-policy/selinux-chronyd ) REQUIRED_USE=?? ( libedit readline ) RESTRICT=test SLOT=0 _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 git-r3 e928b84a9f6f1d9076d1d27687876dc6 multilib 165fc17c38d1b11dac2008280dab6e80 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=d443a2f834c7be23f0169fbaf232fe37 +_md5_=4a2a200364f6bb63b711e8851caf5d96 diff --git a/metadata/md5-cache/net-misc/knemo-0.7.7 b/metadata/md5-cache/net-misc/knemo-0.7.7 index 250b3b2dc164..91f7fd2fdc60 100644 --- a/metadata/md5-cache/net-misc/knemo-0.7.7 +++ b/metadata/md5-cache/net-misc/knemo-0.7.7 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/systemsettings-4.4:4[aqua=] dev-libs/libnl:3 dev-qt/qtsql:4[sqlite] kde-plasma/ksysguard:4 sys-apps/net-tools wifi? ( net-wireless/wireless-tools ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=dev-libs/libnl:3 dev-qt/qtsql:4[sqlite] kde-plasma/ksysguard:4 kde-plasma/systemsettings:4 sys-apps/net-tools wifi? ( net-wireless/wireless-tools ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=The KDE Network Monitor EAPI=5 HOMEPAGE=http://kde-apps.org/content/show.php?content=12956 IUSE=debug wifi l10n_ar l10n_bg l10n_br l10n_bs l10n_cs l10n_cy l10n_da l10n_de l10n_el l10n_en-GB l10n_eo l10n_es l10n_et l10n_fi l10n_fr l10n_ga l10n_gl l10n_hr l10n_hu l10n_is l10n_it l10n_ja l10n_ka l10n_km l10n_lt l10n_ms l10n_nb l10n_nds l10n_nl l10n_pl l10n_pt l10n_pt-BR l10n_ro l10n_ru l10n_rw l10n_sk l10n_sl l10n_sr l10n_sv l10n_tr l10n_ug l10n_uk l10n_zh-CN l10n_zh-TW aqua KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=>=kde-base/systemsettings-4.4:4[aqua=] dev-libs/libnl:3 dev-qt/qtsql:4[sqlite] kde-plasma/ksysguard:4 sys-apps/net-tools wifi? ( net-wireless/wireless-tools ) kde-frameworks/oxygen-icons l10n_ar? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ar(+)] ) l10n_bg? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bg(+)] ) l10n_br? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_br(+)] ) l10n_bs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bs(+)] ) l10n_cs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_cs(+)] ) l10n_cy? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_cy(+)] ) l10n_da? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_da(+)] ) l10n_de? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_de(+)] ) l10n_el? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_el(+)] ) l10n_en-GB? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_en-GB(+)] ) l10n_eo? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_eo(+)] ) l10n_es? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_es(+)] ) l10n_et? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_et(+)] ) l10n_fi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fi(+)] ) l10n_fr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fr(+)] ) l10n_ga? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ga(+)] ) l10n_gl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_gl(+)] ) l10n_hr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hr(+)] ) l10n_hu? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hu(+)] ) l10n_is? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_is(+)] ) l10n_it? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_it(+)] ) l10n_ja? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ja(+)] ) l10n_ka? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ka(+)] ) l10n_km? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_km(+)] ) l10n_lt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_lt(+)] ) l10n_ms? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ms(+)] ) l10n_nb? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nb(+)] ) l10n_nds? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nds(+)] ) l10n_nl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nl(+)] ) l10n_pl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pl(+)] ) l10n_pt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt(+)] ) l10n_pt-BR? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt-BR(+)] ) l10n_ro? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ro(+)] ) l10n_ru? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ru(+)] ) l10n_rw? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_rw(+)] ) l10n_sk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sk(+)] ) l10n_sl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sl(+)] ) l10n_sr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sr(+)] ) l10n_sv? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sv(+)] ) l10n_tr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_tr(+)] ) l10n_ug? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ug(+)] ) l10n_uk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_uk(+)] ) l10n_zh-CN? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_zh-CN(+)] ) l10n_zh-TW? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_zh-TW(+)] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=dev-libs/libnl:3 dev-qt/qtsql:4[sqlite] kde-plasma/ksysguard:4 kde-plasma/systemsettings:4 sys-apps/net-tools wifi? ( net-wireless/wireless-tools ) kde-frameworks/oxygen-icons l10n_ar? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ar(+)] ) l10n_bg? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bg(+)] ) l10n_br? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_br(+)] ) l10n_bs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_bs(+)] ) l10n_cs? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_cs(+)] ) l10n_cy? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_cy(+)] ) l10n_da? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_da(+)] ) l10n_de? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_de(+)] ) l10n_el? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_el(+)] ) l10n_en-GB? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_en-GB(+)] ) l10n_eo? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_eo(+)] ) l10n_es? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_es(+)] ) l10n_et? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_et(+)] ) l10n_fi? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fi(+)] ) l10n_fr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_fr(+)] ) l10n_ga? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ga(+)] ) l10n_gl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_gl(+)] ) l10n_hr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hr(+)] ) l10n_hu? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_hu(+)] ) l10n_is? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_is(+)] ) l10n_it? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_it(+)] ) l10n_ja? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ja(+)] ) l10n_ka? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ka(+)] ) l10n_km? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_km(+)] ) l10n_lt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_lt(+)] ) l10n_ms? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ms(+)] ) l10n_nb? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nb(+)] ) l10n_nds? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nds(+)] ) l10n_nl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_nl(+)] ) l10n_pl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pl(+)] ) l10n_pt? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt(+)] ) l10n_pt-BR? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_pt-BR(+)] ) l10n_ro? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ro(+)] ) l10n_ru? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ru(+)] ) l10n_rw? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_rw(+)] ) l10n_sk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sk(+)] ) l10n_sl? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sl(+)] ) l10n_sr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sr(+)] ) l10n_sv? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_sv(+)] ) l10n_tr? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_tr(+)] ) l10n_ug? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_ug(+)] ) l10n_uk? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_uk(+)] ) l10n_zh-CN? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_zh-CN(+)] ) l10n_zh-TW? ( >=kde-apps/kde4-l10n-4.4:4[aqua=,l10n_zh-TW(+)] ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4 SRC_URI=http://www.kde-apps.org/CONTENT/content-files/12956-knemo-0.7.7.tar.xz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=548405776eb59fb149eb3b9180410e67 +_md5_=0ace53be668abdbefed34fefa69c8cfe diff --git a/metadata/md5-cache/net-misc/openvswitch-2.6.0 b/metadata/md5-cache/net-misc/openvswitch-2.6.0 index 45626cb6d571..e423265e5c22 100644 --- a/metadata/md5-cache/net-misc/openvswitch-2.6.0 +++ b/metadata/md5-cache/net-misc/openvswitch-2.6.0 @@ -4,10 +4,10 @@ DESCRIPTION=Production quality, multilayer virtual switch EAPI=6 HOMEPAGE=http://openvswitch.org IUSE=debug modules monitor +ssl kernel_linux python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 GPL-2 RDEPEND=|| ( >=sys-apps/openrc-0.10.5 sys-apps/systemd ) ssl? ( dev-libs/openssl:0= ) monitor? ( 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 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/twisted-core dev-python/twisted-conch dev-python/twisted-web dev-python/PyQt4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] dev-python/zope-interface[python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] ) debug? ( dev-lang/perl ) kernel_linux? ( virtual/modutils ) SLOT=0 SRC_URI=http://openvswitch.org/releases/openvswitch-2.6.0.tar.gz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c eutils b83a2420b796f7c6eff682679d08fe25 libtool 4890219c51da247200223277f993e054 linux-info fd1e29abbb02cbc49f1a14299846e9c4 linux-mod 4755518412586c2fd655ff6e55780bcb multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=276f5489d7bb33f2a1fe67f9876bbf1e +_md5_=9a668a5418a4980c259558cd18ca841d diff --git a/metadata/md5-cache/net-misc/pps-tools-0.0.20110710 b/metadata/md5-cache/net-misc/pps-tools-0.0.20110710 deleted file mode 100644 index f47abf6f3941..000000000000 --- a/metadata/md5-cache/net-misc/pps-tools-0.0.20110710 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile install prepare -DESCRIPTION=User-space tools for LinuxPPS -EAPI=3 -HOMEPAGE=http://wiki.enneenne.com/index.php/LinuxPPS_installation -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -SLOT=0 -SRC_URI=https://github.com/ago/pps-tools/tarball/74c32c318f63bca5b5db -> pps-tools-git-0.0.20110710.tgz -_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=b77ed43138ff2b8df86d60d7431016e9 diff --git a/metadata/md5-cache/net-misc/rabbitmq-server-3.6.5 b/metadata/md5-cache/net-misc/rabbitmq-server-3.6.5 index 4ca784990e96..6eeb6b0a4a97 100644 --- a/metadata/md5-cache/net-misc/rabbitmq-server-3.6.5 +++ b/metadata/md5-cache/net-misc/rabbitmq-server-3.6.5 @@ -3,10 +3,10 @@ DEPEND=dev-lang/erlang[ssl] app-arch/zip app-arch/unzip app-text/docbook-xml-dtd DESCRIPTION=RabbitMQ is a high-performance AMQP-compliant message broker written in Erlang EAPI=5 HOMEPAGE=http://www.rabbitmq.com/ -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=GPL-2 MPL-1.1 RDEPEND=dev-lang/erlang[ssl] SLOT=0 SRC_URI=http://www.rabbitmq.com/releases/rabbitmq-server/v3.6.5/rabbitmq-server-3.6.5.tar.xz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 systemd 5b6ca8b2fc1307ca593223f327342c96 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 -_md5_=591b69ef91d32b42a2db89a180469286 +_md5_=abf17eec20f95006f1b6aff08d97bc48 diff --git a/metadata/md5-cache/net-misc/remmina-1.2.0_rc14 b/metadata/md5-cache/net-misc/remmina-1.2.0_rc14 deleted file mode 100644 index 08e0f8e9dcf0..000000000000 --- a/metadata/md5-cache/net-misc/remmina-1.2.0_rc14 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=>=dev-libs/glib-2.31.18:2 >=net-libs/libvncserver-0.9.8.2 x11-libs/libxkbfile x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 virtual/freedesktop-icon-theme ayatana? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) freerdp? ( >=net-misc/freerdp-2 ) libsecret? ( app-crypt/libsecret ) ssh? ( net-libs/libssh[sftp] ) telepathy? ( net-libs/telepathy-glib ) vte? ( x11-libs/vte:2.91 ) webkit? ( || ( net-libs/webkit-gtk:4 net-libs/webkit-gtk:3 ) ) zeroconf? ( net-dns/avahi[gtk3] ) dev-util/intltool virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.12 >=sys-apps/sed-4 -DESCRIPTION=A GTK+ RDP, VNC, XDMCP and SSH client -EAPI=6 -HOMEPAGE=http://remmina.org/ https://github.com/FreeRDP/Remmina -IUSE=ayatana crypt debug freerdp libsecret nls ssh telepathy vte webkit zeroconf -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.31.18:2 >=net-libs/libvncserver-0.9.8.2 x11-libs/libxkbfile x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 virtual/freedesktop-icon-theme ayatana? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) freerdp? ( >=net-misc/freerdp-2 ) libsecret? ( app-crypt/libsecret ) ssh? ( net-libs/libssh[sftp] ) telepathy? ( net-libs/telepathy-glib ) vte? ( x11-libs/vte:2.91 ) webkit? ( || ( net-libs/webkit-gtk:4 net-libs/webkit-gtk:3 ) ) zeroconf? ( net-dns/avahi[gtk3] ) x11-base/xorg-server[kdrive] !net-misc/remmina-plugins -REQUIRED_USE=ssh? ( vte ) -SLOT=0 -SRC_URI=https://github.com/FreeRDP/Remmina/archive/v1.2.0-rcgit.14.tar.gz -> remmina-1.2.0_rc14.tar.gz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=b74cea3b6ca1a05a43b4c64888ab9dd1 diff --git a/metadata/md5-cache/net-misc/remmina-1.2.0_rc14-r1 b/metadata/md5-cache/net-misc/remmina-1.2.0_rc14-r1 deleted file mode 100644 index 43f0de0cec76..000000000000 --- a/metadata/md5-cache/net-misc/remmina-1.2.0_rc14-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=>=dev-libs/glib-2.31.18:2 >=net-libs/libvncserver-0.9.8.2 x11-libs/libxkbfile x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 virtual/freedesktop-icon-theme ayatana? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) freerdp? ( >=net-misc/freerdp-2 ) gnome-keyring? ( app-crypt/libsecret ) ssh? ( net-libs/libssh[sftp] ) telepathy? ( net-libs/telepathy-glib ) vte? ( x11-libs/vte:2.91 ) webkit? ( net-libs/webkit-gtk:4 ) zeroconf? ( net-dns/avahi[gtk3] ) dev-util/intltool virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.12 >=sys-apps/sed-4 -DESCRIPTION=A GTK+ RDP, VNC, XDMCP and SSH client -EAPI=6 -HOMEPAGE=http://remmina.org/ https://github.com/FreeRDP/Remmina -IUSE=ayatana crypt debug freerdp gnome-keyring nls ssh telepathy vte webkit zeroconf -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.31.18:2 >=net-libs/libvncserver-0.9.8.2 x11-libs/libxkbfile x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 virtual/freedesktop-icon-theme ayatana? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) freerdp? ( >=net-misc/freerdp-2 ) gnome-keyring? ( app-crypt/libsecret ) ssh? ( net-libs/libssh[sftp] ) telepathy? ( net-libs/telepathy-glib ) vte? ( x11-libs/vte:2.91 ) webkit? ( net-libs/webkit-gtk:4 ) zeroconf? ( net-dns/avahi[gtk3] ) x11-base/xorg-server[kdrive] !net-misc/remmina-plugins -REQUIRED_USE=ssh? ( vte ) -SLOT=0 -SRC_URI=https://github.com/FreeRDP/Remmina/archive/v1.2.0-rcgit.14.tar.gz -> remmina-1.2.0_rc14.tar.gz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=a0164cc839f4a3181ad05f5e7ad70b5f diff --git a/metadata/md5-cache/net-misc/remmina-1.2.0_rc16 b/metadata/md5-cache/net-misc/remmina-1.2.0_rc16 new file mode 100644 index 000000000000..e1cdba526e64 --- /dev/null +++ b/metadata/md5-cache/net-misc/remmina-1.2.0_rc16 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare test +DEPEND=dev-libs/glib:2 net-libs/libvncserver x11-libs/libxkbfile x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 virtual/freedesktop-icon-theme ayatana? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) freerdp? ( >=net-misc/freerdp-2 ) gnome-keyring? ( app-crypt/libsecret ) spice? ( net-misc/spice-gtk[gtk3] ) ssh? ( net-libs/libssh[sftp] x11-libs/vte:2.91 ) telepathy? ( net-libs/telepathy-glib ) webkit? ( net-libs/webkit-gtk:4 ) zeroconf? ( net-dns/avahi[gtk3] ) dev-util/intltool virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.12 >=sys-apps/sed-4 +DESCRIPTION=A GTK+ RDP, VNC, XDMCP and SSH client +EAPI=6 +HOMEPAGE=http://remmina.org/ +IUSE=ayatana crypt freerdp gnome-keyring nls spice ssh telepathy webkit zeroconf +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2+ +RDEPEND=dev-libs/glib:2 net-libs/libvncserver x11-libs/libxkbfile x11-libs/gdk-pixbuf x11-libs/gtk+:3 x11-libs/libX11 virtual/freedesktop-icon-theme ayatana? ( dev-libs/libappindicator:3 ) crypt? ( dev-libs/libgcrypt:0= ) freerdp? ( >=net-misc/freerdp-2 ) gnome-keyring? ( app-crypt/libsecret ) spice? ( net-misc/spice-gtk[gtk3] ) ssh? ( net-libs/libssh[sftp] x11-libs/vte:2.91 ) telepathy? ( net-libs/telepathy-glib ) webkit? ( net-libs/webkit-gtk:4 ) zeroconf? ( net-dns/avahi[gtk3] ) +SLOT=0 +SRC_URI=https://github.com/FreeRDP/Remmina/archive/v1.2.0-rcgit.16.tar.gz -> remmina-1.2.0_rc16.tar.gz +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=62ef1c7634dd119d40f80a192a989d1b diff --git a/metadata/md5-cache/net-misc/remmina-1.2.0_rc3 b/metadata/md5-cache/net-misc/remmina-1.2.0_rc3 deleted file mode 100644 index 4f0d7b3741fe..000000000000 --- a/metadata/md5-cache/net-misc/remmina-1.2.0_rc3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare test -DEPEND=x11-libs/gtk+:3 >=dev-libs/glib-2.31.18:2 >=net-libs/libvncserver-0.9.8.2 x11-libs/libxkbfile x11-themes/gnome-icon-theme x11-libs/gdk-pixbuf x11-libs/libX11 avahi? ( net-dns/avahi[gtk3] ) ayatana? ( dev-libs/libappindicator ) crypt? ( dev-libs/libgcrypt:0 ) freerdp? ( >=net-misc/freerdp-1.2 =sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 -DESCRIPTION=A GTK+ RDP, VNC, XDMCP and SSH client -EAPI=4 -HOMEPAGE=http://freerdp.github.io/Remmina/ -IUSE=ayatana avahi crypt debug freerdp gnome-keyring nls ssh telepathy vte -KEYWORDS=amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=x11-libs/gtk+:3 >=dev-libs/glib-2.31.18:2 >=net-libs/libvncserver-0.9.8.2 x11-libs/libxkbfile x11-themes/gnome-icon-theme x11-libs/gdk-pixbuf x11-libs/libX11 avahi? ( net-dns/avahi[gtk3] ) ayatana? ( dev-libs/libappindicator ) crypt? ( dev-libs/libgcrypt:0 ) freerdp? ( >=net-misc/freerdp-1.2 remmina-1.2.0_rc3.tar.gz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=738674f58e15c01ce34ae6c031ee4d0e diff --git a/metadata/md5-cache/net-misc/x2goclient-4.0.5.2 b/metadata/md5-cache/net-misc/x2goclient-4.0.5.2-r1 similarity index 66% rename from metadata/md5-cache/net-misc/x2goclient-4.0.5.2 rename to metadata/md5-cache/net-misc/x2goclient-4.0.5.2-r1 index 99f515b903be..55ea6772809a 100644 --- a/metadata/md5-cache/net-misc/x2goclient-4.0.5.2 +++ b/metadata/md5-cache/net-misc/x2goclient-4.0.5.2-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare -DEPEND=>=net-libs/libssh-0.6.0_rc1 net-print/cups x11-libs/libXpm ldap? ( net-nds/openldap ) qt4? ( dev-qt/qtcore:4[ssl] dev-qt/qtgui:4 dev-qt/qtsvg:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 ) app-arch/unzip +DEPEND=>=net-libs/libssh-0.6.0_rc1 net-print/cups x11-libs/libXpm ldap? ( net-nds/openldap ) !qt5? ( dev-qt/qtcore:4[ssl] dev-qt/qtgui:4 dev-qt/qtsvg:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 ) app-arch/unzip DESCRIPTION=The X2Go Qt client EAPI=6 HOMEPAGE=http://www.x2go.org -IUSE=ldap nsplugin +qt4 qt5 +IUSE=ldap nsplugin qt5 KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=>=net-libs/libssh-0.6.0_rc1 net-print/cups x11-libs/libXpm ldap? ( net-nds/openldap ) qt4? ( dev-qt/qtcore:4[ssl] dev-qt/qtgui:4 dev-qt/qtsvg:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 ) net-misc/nx -REQUIRED_USE=^^ ( qt4 qt5 ) +RDEPEND=>=net-libs/libssh-0.6.0_rc1 net-print/cups x11-libs/libXpm ldap? ( net-nds/openldap ) !qt5? ( dev-qt/qtcore:4[ssl] dev-qt/qtgui:4 dev-qt/qtsvg:4 ) qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtnetwork:5[ssl] dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 ) net-misc/nx +REQUIRED_USE=nsplugin? ( !qt5 ) SLOT=0 SRC_URI=http://code.x2go.org/releases/source/x2goclient/x2goclient-4.0.5.2.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 mozextension 3d8ee4835f89ff39d4666656aa603433 multilib 165fc17c38d1b11dac2008280dab6e80 nsplugins bf5bfcef1d2f0adad7e6230455df8e91 qmake-utils 0a242e7177789b0028b4045f336dd4db toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=3d644784bcf233565e90387ec1e6f3a0 +_md5_=b5ee13d45991045cd2a3e395f0bf322f diff --git a/metadata/md5-cache/net-wireless/lorcon-0.0_p20150109 b/metadata/md5-cache/net-wireless/lorcon-0.0_p20150109 index ed6030554192..2c338aec017e 100644 --- a/metadata/md5-cache/net-wireless/lorcon-0.0_p20150109 +++ b/metadata/md5-cache/net-wireless/lorcon-0.0_p20150109 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby? ( ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ) python? ( 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_python2_7(-)] ) dev-libs/libnl:3= net-libs/libpcap +DEPEND=ruby? ( ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ) python? ( 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_python2_7(-)] ) dev-libs/libnl:3= net-libs/libpcap DESCRIPTION=A generic library for injecting 802.11 frames EAPI=5 HOMEPAGE=http://802.11ninja.net/lorcon -IUSE=python ruby python_targets_python2_7 elibc_FreeBSD ruby_targets_ruby20 +IUSE=python ruby python_targets_python2_7 elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 KEYWORDS=amd64 arm ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=ruby? ( ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ) python? ( 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_python2_7(-)] ) dev-libs/libnl:3= net-libs/libpcap +RDEPEND=ruby? ( ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ) python? ( 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_python2_7(-)] ) dev-libs/libnl:3= net-libs/libpcap REQUIRED_USE=python? ( || ( python_targets_python2_7 ) ) SLOT=0 SRC_URI=https://dev.gentoo.org/~zerochaos/distfiles/lorcon-0.0_p20150109.tar.xz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 java-utils-2 a50950a73b5d5db46f42638e2996a087 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=946aa12d63d7e179bd51e7cfdb15032b +_md5_=714f1a2178c84dde9eec20fdb8cf90a3 diff --git a/metadata/md5-cache/net-wireless/lorcon-9999 b/metadata/md5-cache/net-wireless/lorcon-9999 index 1d25c6068c1d..e994b7137f8d 100644 --- a/metadata/md5-cache/net-wireless/lorcon-9999 +++ b/metadata/md5-cache/net-wireless/lorcon-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby? ( ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ) python? ( 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_python2_7(-)] ) dev-libs/libnl:3= net-libs/libpcap >=dev-vcs/git-1.8.2.1 +DEPEND=ruby? ( ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ) python? ( 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_python2_7(-)] ) dev-libs/libnl:3= net-libs/libpcap >=dev-vcs/git-1.8.2.1 DESCRIPTION=A generic library for injecting 802.11 frames EAPI=5 HOMEPAGE=http://802.11ninja.net/lorcon -IUSE=python ruby python_targets_python2_7 elibc_FreeBSD ruby_targets_ruby20 +IUSE=python ruby python_targets_python2_7 elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 LICENSE=GPL-2 -RDEPEND=ruby? ( ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ) python? ( 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_python2_7(-)] ) dev-libs/libnl:3= net-libs/libpcap +RDEPEND=ruby? ( ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby21? ( dev-lang/ruby:2.1 ) ) python? ( 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_python2_7(-)] ) dev-libs/libnl:3= net-libs/libpcap REQUIRED_USE=python? ( || ( python_targets_python2_7 ) ) SLOT=0 _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 git-r3 e928b84a9f6f1d9076d1d27687876dc6 java-utils-2 a50950a73b5d5db46f42638e2996a087 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=79fea06e7c5242d3924b61281e660487 +_md5_=5f9c7dfe35c093aabf657c0f0699ec13 diff --git a/metadata/md5-cache/sci-biology/abyss-1.9.0-r1 b/metadata/md5-cache/sci-biology/abyss-1.9.0-r1 index cf3bb4d32b15..74e179077155 100644 --- a/metadata/md5-cache/sci-biology/abyss-1.9.0-r1 +++ b/metadata/md5-cache/sci-biology/abyss-1.9.0-r1 @@ -10,4 +10,4 @@ RDEPEND=dev-cpp/sparsehash dev-libs/boost:= misc-haskell? ( dev-libs/gmp:0= virt SLOT=0 SRC_URI=https://github.com/bcgsc/abyss/archive/1.9.0.tar.gz -> abyss-1.9.0.tar.gz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=7c301b474921cb47df2fdbb12ccd1417 +_md5_=63d81ef3a35940ab5e21edac3c372894 diff --git a/metadata/md5-cache/sci-biology/abyss-2.0.2 b/metadata/md5-cache/sci-biology/abyss-2.0.2 new file mode 100644 index 000000000000..17c9d6d71360 --- /dev/null +++ b/metadata/md5-cache/sci-biology/abyss-2.0.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure prepare +DEPEND=dev-cpp/sparsehash dev-libs/boost:= misc-haskell? ( dev-libs/gmp:0= virtual/libffi:0= ) mpi? ( virtual/mpi ) misc-haskell? ( dev-lang/ghc dev-haskell/mmap ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Assembly By Short Sequences - a de novo, parallel, paired-end sequence assembler +EAPI=6 +HOMEPAGE=http://www.bcgsc.ca/platform/bioinfo/software/abyss/ +IUSE=+mpi openmp misc-haskell +KEYWORDS=~amd64 ~x86 +LICENSE=abyss +RDEPEND=dev-cpp/sparsehash dev-libs/boost:= misc-haskell? ( dev-libs/gmp:0= virtual/libffi:0= ) mpi? ( virtual/mpi ) +SLOT=0 +SRC_URI=https://github.com/bcgsc/abyss/archive/2.0.2.tar.gz -> abyss-2.0.2.tar.gz +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=8908da170fb3b9b0ae4f1cfbcaff3328 diff --git a/metadata/md5-cache/sci-libs/opencascade-6.7.1 b/metadata/md5-cache/sci-libs/opencascade-6.7.1 index f55433fc0a64..e36f366501fd 100644 --- a/metadata/md5-cache/sci-libs/opencascade-6.7.1 +++ b/metadata/md5-cache/sci-libs/opencascade-6.7.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=configure install postinst preinst prepare pretend setup DEPEND=app-eselect/eselect-opencascade dev-lang/tcl:0= dev-lang/tk:0= dev-tcltk/itcl dev-tcltk/itk dev-tcltk/tix media-libs/ftgl virtual/glu virtual/opengl x11-libs/libXmu freeimage? ( media-libs/freeimage ) gl2ps? ( x11-libs/gl2ps ) java? ( >=virtual/jdk-0:= ) tbb? ( dev-cpp/tbb ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=Software development platform for CAD/CAE, 3D surface/solid modeling and data exchange +DESCRIPTION=Development platform for CAD/CAE, 3D surface/solid modeling and data exchange EAPI=5 HOMEPAGE=http://www.opencascade.org/ IUSE=debug doc examples freeimage gl2ps java qt4 +tbb elibc_FreeBSD java @@ -11,4 +11,4 @@ RESTRICT=bindist mirror SLOT=6.7.1 SRC_URI=http://files.opencascade.com/OCCT/OCC_6.7.1_release/opencascade-6.7.1.tgz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=771c693bbc44c53836820ee5d774b861 +_md5_=bcf2f4aa76a13e29e553f2fe98b20cf8 diff --git a/metadata/md5-cache/sci-libs/opencascade-6.8.0 b/metadata/md5-cache/sci-libs/opencascade-6.8.0 index 53e5f6df4d2a..f532cb988aca 100644 --- a/metadata/md5-cache/sci-libs/opencascade-6.8.0 +++ b/metadata/md5-cache/sci-libs/opencascade-6.8.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=configure install postinst preinst prepare pretend setup DEPEND=app-eselect/eselect-opencascade dev-lang/tcl:0= dev-lang/tk:0= dev-tcltk/itcl dev-tcltk/itk dev-tcltk/tix media-libs/ftgl virtual/glu virtual/opengl x11-libs/libXmu freeimage? ( media-libs/freeimage ) gl2ps? ( x11-libs/gl2ps ) java? ( >=virtual/jdk-0:= ) tbb? ( dev-cpp/tbb ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=Software development platform for CAD/CAE, 3D surface/solid modeling and data exchange +DESCRIPTION=Development platform for CAD/CAE, 3D surface/solid modeling and data exchange EAPI=5 HOMEPAGE=http://www.opencascade.org/ IUSE=debug doc examples freeimage gl2ps java qt4 +tbb elibc_FreeBSD java @@ -11,4 +11,4 @@ RESTRICT=bindist mirror SLOT=6.8.0 SRC_URI=http://files.opencascade.com/OCCT/OCC_6.8.0_release/opencascade-6.8.0.tgz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=29f68a2035276c2e5d1cdac2d84231c9 +_md5_=630ca423068074bc3f3fa6170524b87a diff --git a/metadata/md5-cache/sci-libs/opencascade-6.9.0 b/metadata/md5-cache/sci-libs/opencascade-6.9.0 index 7178e6386ee1..c758aa8438b1 100644 --- a/metadata/md5-cache/sci-libs/opencascade-6.9.0 +++ b/metadata/md5-cache/sci-libs/opencascade-6.9.0 @@ -1,6 +1,6 @@ DEFINED_PHASES=configure install postinst preinst prepare pretend setup DEPEND=app-eselect/eselect-opencascade dev-lang/tcl:0= dev-lang/tk:0= dev-tcltk/itcl dev-tcltk/itk dev-tcltk/tix media-libs/ftgl virtual/glu virtual/opengl x11-libs/libXmu freeimage? ( media-libs/freeimage ) gl2ps? ( x11-libs/gl2ps ) java? ( >=virtual/jdk-0:= ) tbb? ( dev-cpp/tbb ) vtk? ( || ( =sci-libs/vtk-6.1*[imaging] =sci-libs/vtk-6.1*[qt4] =sci-libs/vtk-6.1*[rendering] =sci-libs/vtk-6.1*[views] =sci-libs/vtk-6.1*[all-modules] ) ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=Software development platform for CAD/CAE, 3D surface/solid modeling and data exchange +DESCRIPTION=Development platform for CAD/CAE, 3D surface/solid modeling and data exchange EAPI=5 HOMEPAGE=http://www.opencascade.org/ IUSE=debug doc examples freeimage gl2ps java qt4 +tbb +vtk elibc_FreeBSD java @@ -11,4 +11,4 @@ RESTRICT=bindist mirror SLOT=6.9.0 SRC_URI=http://files.opencascade.com/OCCT/OCC_6.9.0_release/opencascade-6.9.0.tgz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=be98da9f39fe8c222c651e2c66cdf546 +_md5_=82cd2d8039a8581d5b48db2e8bfc41e4 diff --git a/metadata/md5-cache/sci-libs/opencascade-6.9.1 b/metadata/md5-cache/sci-libs/opencascade-6.9.1 index c545338c8769..4205c787c644 100644 --- a/metadata/md5-cache/sci-libs/opencascade-6.9.1 +++ b/metadata/md5-cache/sci-libs/opencascade-6.9.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=configure install postinst preinst prepare pretend setup DEPEND=app-eselect/eselect-opencascade dev-lang/tcl:0= dev-lang/tk:0= dev-tcltk/itcl dev-tcltk/itk dev-tcltk/tix media-libs/ftgl virtual/glu virtual/opengl x11-libs/libXmu freeimage? ( media-libs/freeimage ) gl2ps? ( x11-libs/gl2ps ) java? ( >=virtual/jdk-0:= ) tbb? ( dev-cpp/tbb ) vtk? ( || ( =sci-libs/vtk-6.1*[imaging] =sci-libs/vtk-6.1*[qt4] =sci-libs/vtk-6.1*[rendering] =sci-libs/vtk-6.1*[views] =sci-libs/vtk-6.1*[all-modules] ) ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 java? ( >=dev-java/java-config-2.2.0-r3 ) -DESCRIPTION=Software development platform for CAD/CAE, 3D surface/solid modeling and data exchange +DESCRIPTION=Development platform for CAD/CAE, 3D surface/solid modeling and data exchange EAPI=5 HOMEPAGE=http://www.opencascade.org/ IUSE=debug doc examples freeimage gl2ps java qt4 +tbb +vtk elibc_FreeBSD java @@ -11,4 +11,4 @@ RESTRICT=bindist fetch mirror SLOT=6.9.1 SRC_URI=http://www.opencascade.com/sites/default/files/private/occt/OCC_6.9.1_release/opencascade-6.9.1.tgz _eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c check-reqs aee25bdf4e2f459af86d17f7c41dcdf6 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=f4e5f144172149454ba0530a9c21f7e2 +_md5_=8e819e3ddbf5b98ef943f183a35fa8d1 diff --git a/metadata/md5-cache/sci-libs/vtk-6.1.0-r2 b/metadata/md5-cache/sci-libs/vtk-6.1.0-r4 similarity index 61% rename from metadata/md5-cache/sci-libs/vtk-6.1.0-r2 rename to metadata/md5-cache/sci-libs/vtk-6.1.0-r4 index 8ee20179b252..a55e873bff07 100644 --- a/metadata/md5-cache/sci-libs/vtk-6.1.0-r2 +++ b/metadata/md5-cache/sci-libs/vtk-6.1.0-r4 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst preinst prepare prerm setup test -DEPEND=dev-libs/expat dev-libs/jsoncpp dev-libs/libxml2:2 >=media-libs/freetype-2.5.4 media-libs/libpng:0 media-libs/mesa media-libs/libtheora media-libs/tiff:0 sci-libs/exodusii sci-libs/hdf5:= sci-libs/netcdf-cxx:3 sys-libs/zlib virtual/jpeg:0 virtual/opengl >=x11-libs/gl2ps-1.3.8 x11-libs/libX11 x11-libs/libXmu x11-libs/libXt boost? ( >=dev-libs/boost-1.40.0[mpi?] ) cg? ( media-gfx/nvidia-cg-toolkit ) examples? ( dev-qt/qtcore:4 dev-qt/qtgui:4 sci-libs/vtkdata ) ffmpeg? ( virtual/ffmpeg ) gdal? ( sci-libs/gdal ) java? ( >=virtual/jre-1.5:* ) kaapi? ( =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_python2_7(+)] dev-python/sip[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_python2_7(+)] ) ) qt4? ( dev-qt/designer:4 dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtopengl:4 dev-qt/qtsql:4 dev-qt/qtwebkit:4 python? ( dev-python/PyQt4[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_python2_7(+)] ) ) tbb? ( dev-cpp/tbb ) tcl? ( dev-lang/tcl:0= ) tk? ( dev-lang/tk:0= ) video_cards_nvidia? ( media-video/nvidia-settings ) web? ( >=app-admin/webapp-config-1.50.15 python? ( dev-python/autobahn[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_python2_7(+)] dev-python/twisted-core[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_python2_7(+)] dev-python/zope-interface[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_python2_7(+)] ) ) xdmf2? ( sci-libs/xdmf2 ) R? ( dev-lang/R ) doc? ( app-doc/doxygen ) java? ( >=virtual/jdk-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) dev-util/ninja >=dev-util/cmake-2.8.12 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=dev-libs/expat dev-libs/jsoncpp dev-libs/libxml2:2 >=media-libs/freetype-2.5.4 media-libs/libpng:0 media-libs/mesa media-libs/libtheora media-libs/tiff:0 sci-libs/exodusii sci-libs/hdf5:= sci-libs/netcdf-cxx:3 sys-libs/zlib virtual/jpeg:0 virtual/opengl >=x11-libs/gl2ps-1.3.8 x11-libs/libX11 x11-libs/libXmu x11-libs/libXt boost? ( >=dev-libs/boost-1.40.0[mpi?] ) cg? ( media-gfx/nvidia-cg-toolkit ) examples? ( dev-qt/qtcore:5 dev-qt/qtgui:5 sci-libs/vtkdata ) ffmpeg? ( virtual/ffmpeg ) gdal? ( sci-libs/gdal ) java? ( >=virtual/jre-1.5:* ) kaapi? ( =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_python2_7(+)] dev-python/sip[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_python2_7(+)] ) ) qt5? ( dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtsql:5 dev-qt/qtwebkit:5 python? ( dev-python/PyQt5[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_python2_7(+)] ) ) tbb? ( dev-cpp/tbb ) tcl? ( dev-lang/tcl:0= ) tk? ( dev-lang/tk:0= ) video_cards_nvidia? ( || ( x11-drivers/nvidia-drivers[tools,static-libs] media-video/nvidia-settings ) ) web? ( >=app-admin/webapp-config-1.50.15 python? ( dev-python/autobahn[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_python2_7(+)] dev-python/twisted-core[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_python2_7(+)] dev-python/zope-interface[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_python2_7(+)] ) ) xdmf2? ( sci-libs/xdmf2 ) R? ( dev-lang/R ) doc? ( app-doc/doxygen ) java? ( >=virtual/jdk-1.5 ) java? ( >=dev-java/java-config-2.2.0-r3 ) dev-util/ninja >=dev-util/cmake-2.8.12 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=The Visualization Toolkit EAPI=5 HOMEPAGE=http://www.vtk.org/ -IUSE=all-modules aqua boost cg doc examples imaging ffmpeg gdal java json kaapi mpi mysql odbc offscreen postgres python qt4 rendering smp tbb test theora tk tcl video_cards_nvidia views web xdmf2 R +X elibc_FreeBSD java python_targets_python2_7 test +IUSE=all-modules aqua boost cg doc examples imaging ffmpeg gdal java json kaapi mpi mysql odbc offscreen postgres python qt5 rendering smp tbb test theora tk tcl video_cards_nvidia views web xdmf2 R +X elibc_FreeBSD java python_targets_python2_7 test KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux LICENSE=BSD LGPL-2 -RDEPEND=dev-libs/expat dev-libs/jsoncpp dev-libs/libxml2:2 >=media-libs/freetype-2.5.4 media-libs/libpng:0 media-libs/mesa media-libs/libtheora media-libs/tiff:0 sci-libs/exodusii sci-libs/hdf5:= sci-libs/netcdf-cxx:3 sys-libs/zlib virtual/jpeg:0 virtual/opengl >=x11-libs/gl2ps-1.3.8 x11-libs/libX11 x11-libs/libXmu x11-libs/libXt boost? ( >=dev-libs/boost-1.40.0[mpi?] ) cg? ( media-gfx/nvidia-cg-toolkit ) examples? ( dev-qt/qtcore:4 dev-qt/qtgui:4 sci-libs/vtkdata ) ffmpeg? ( virtual/ffmpeg ) gdal? ( sci-libs/gdal ) java? ( >=virtual/jre-1.5:* ) kaapi? ( =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_python2_7(+)] dev-python/sip[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_python2_7(+)] ) ) qt4? ( dev-qt/designer:4 dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtopengl:4 dev-qt/qtsql:4 dev-qt/qtwebkit:4 python? ( dev-python/PyQt4[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_python2_7(+)] ) ) tbb? ( dev-cpp/tbb ) tcl? ( dev-lang/tcl:0= ) tk? ( dev-lang/tk:0= ) video_cards_nvidia? ( media-video/nvidia-settings ) web? ( >=app-admin/webapp-config-1.50.15 python? ( dev-python/autobahn[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_python2_7(+)] dev-python/twisted-core[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_python2_7(+)] dev-python/zope-interface[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_python2_7(+)] ) ) xdmf2? ( sci-libs/xdmf2 ) R? ( dev-lang/R ) java? ( >=dev-java/java-config-2.2.0-r3 ) -REQUIRED_USE=all-modules? ( python xdmf2 ) java? ( qt4 ) python? ( python_targets_python2_7 ) tcl? ( rendering ) smp? ( ^^ ( kaapi tbb ) ) test? ( python ) tk? ( tcl ) web? ( python ) ^^ ( X aqua offscreen ) +RDEPEND=dev-libs/expat dev-libs/jsoncpp dev-libs/libxml2:2 >=media-libs/freetype-2.5.4 media-libs/libpng:0 media-libs/mesa media-libs/libtheora media-libs/tiff:0 sci-libs/exodusii sci-libs/hdf5:= sci-libs/netcdf-cxx:3 sys-libs/zlib virtual/jpeg:0 virtual/opengl >=x11-libs/gl2ps-1.3.8 x11-libs/libX11 x11-libs/libXmu x11-libs/libXt boost? ( >=dev-libs/boost-1.40.0[mpi?] ) cg? ( media-gfx/nvidia-cg-toolkit ) examples? ( dev-qt/qtcore:5 dev-qt/qtgui:5 sci-libs/vtkdata ) ffmpeg? ( virtual/ffmpeg ) gdal? ( sci-libs/gdal ) java? ( >=virtual/jre-1.5:* ) kaapi? ( =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_python2_7(+)] dev-python/sip[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_python2_7(+)] ) ) qt5? ( dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtopengl:5 dev-qt/qtsql:5 dev-qt/qtwebkit:5 python? ( dev-python/PyQt5[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_python2_7(+)] ) ) tbb? ( dev-cpp/tbb ) tcl? ( dev-lang/tcl:0= ) tk? ( dev-lang/tk:0= ) video_cards_nvidia? ( || ( x11-drivers/nvidia-drivers[tools,static-libs] media-video/nvidia-settings ) ) web? ( >=app-admin/webapp-config-1.50.15 python? ( dev-python/autobahn[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_python2_7(+)] dev-python/twisted-core[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_python2_7(+)] dev-python/zope-interface[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_python2_7(+)] ) ) xdmf2? ( sci-libs/xdmf2 ) R? ( dev-lang/R ) java? ( >=dev-java/java-config-2.2.0-r3 ) +REQUIRED_USE=all-modules? ( python xdmf2 ) java? ( qt5 ) python? ( python_targets_python2_7 ) tcl? ( rendering ) smp? ( ^^ ( kaapi tbb ) ) test? ( python ) tk? ( tcl ) web? ( python ) ^^ ( X aqua offscreen ) RESTRICT=test SLOT=0 SRC_URI=http://www.vtk.org/files/release/6.1/VTK-6.1.0.tar.gz doc? ( http://www.vtk.org/files/release/6.1/vtkDocHtml-6.1.0.tar.gz ) test? ( http://www.vtk.org/files/release/6.1/VTKData-6.1.0.tar.gz http://www.vtk.org/files/release/6.1/VTKLargeData-6.1.0.tar.gz ) _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-pkg-opt-2 40db73f27fc6458ec2105812a4f261c7 java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 qmake-utils 0a242e7177789b0028b4045f336dd4db toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 webapp 42c6ef7af496b228f9854b3c81e4b226 -_md5_=45fb026a8b93653a2f6936f6880bcfde +_md5_=ccb8e1063df8f4c165bf674560795806 diff --git a/metadata/md5-cache/sci-physics/rivet-2.5.2 b/metadata/md5-cache/sci-physics/rivet-2.5.2 new file mode 100644 index 000000000000..305132d47bd5 --- /dev/null +++ b/metadata/md5-cache/sci-physics/rivet-2.5.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup unpack +DEPEND=dev-libs/boost:= sci-libs/gsl:= sci-physics/fastjet[plugins] sci-physics/hepmc >=sci-physics/yoda-1.5.0[python] python? ( >=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_python2_7(+)] ) doc? ( app-doc/doxygen[latex,dot] ) python? ( dev-python/cython[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_python2_7(+)] ) !=sys-devel/automake-1.15:1.15 ) >=sys-devel/autoconf-2.69 >=sys-devel/libtool-2.4 +DESCRIPTION=Toolkit for validation of Monte Carlo HEP event generators +EAPI=6 +HOMEPAGE=http://rivet.hepforge.org/ +IUSE=doc python static-libs python_targets_python2_7 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=dev-libs/boost:= sci-libs/gsl:= sci-physics/fastjet[plugins] sci-physics/hepmc >=sci-physics/yoda-1.5.0[python] python? ( >=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_python2_7(+)] ) +REQUIRED_USE=python? ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=http://www.hepforge.org/archive/rivet/Rivet-2.5.2.tar.bz2 doc? ( https://rivet.hepforge.org/trac/browser/doc/refs.bib ) +_eclasses_=autotools 07e71b3b5690738ef7e8bc097077e00c bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 libtool 4890219c51da247200223277f993e054 multilib 165fc17c38d1b11dac2008280dab6e80 python-single-r1 19a74c6b5c191723a997dc7e0cc6bb09 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=3385d87d28582345c1168933287282c9 diff --git a/metadata/md5-cache/sci-visualization/labplot-2.0.2 b/metadata/md5-cache/sci-visualization/labplot-2.0.2 deleted file mode 100644 index 2692ce114718..000000000000 --- a/metadata/md5-cache/sci-visualization/labplot-2.0.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=sci-libs/gsl >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -DESCRIPTION=KDE data analysis and visualisation program -EAPI=5 -HOMEPAGE=https://edu.kde.org/applications/science/labplot/ -IUSE=aqua -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=sci-libs/gsl kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -SLOT=4 -SRC_URI=mirror://kde/stable/labplot/2.0.2/src/labplot-2.0.2.tar.xz -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=e88c95771ae583fe5f80a2c1dffe9bc2 diff --git a/metadata/md5-cache/sci-visualization/labplot-2.3.0 b/metadata/md5-cache/sci-visualization/labplot-2.3.0 new file mode 100644 index 000000000000..55bcffad65ec --- /dev/null +++ b/metadata/md5-cache/sci-visualization/labplot-2.3.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=>=kde-frameworks/karchive-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/knewstuff-5.23.0:5 >=kde-frameworks/ktextwidgets-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=dev-qt/qtconcurrent-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtprintsupport-5.6.1:5 >=dev-qt/qtsvg-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-apps/cantor-14.12.0:5 ) fftw? ( sci-libs/fftw:3.0= ) hdf5? ( sci-libs/hdf5:= ) netcdf? ( sci-libs/netcdf:= ) sys-devel/gettext x11-misc/shared-mime-info sys-devel/make >=dev-util/cmake-2.8.12 >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info >=kde-frameworks/extra-cmake-modules-5.23.0:5 handbook? ( >=kde-frameworks/kdoctools-5.23.0:5 ) >=dev-qt/qtcore-5.6.1:5 dev-util/desktop-file-utils app-arch/xz-utils +DESCRIPTION=Scientific data analysis and visualisation based on KDE Frameworks +EAPI=6 +HOMEPAGE=https://www.kde.org/applications/education/labplot/ +IUSE=cantor fftw hdf5 netcdf debug +handbook +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=kde-frameworks/karchive-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/knewstuff-5.23.0:5 >=kde-frameworks/ktextwidgets-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=dev-qt/qtconcurrent-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtprintsupport-5.6.1:5 >=dev-qt/qtsvg-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-apps/cantor-14.12.0:5 ) fftw? ( sci-libs/fftw:3.0= ) hdf5? ( sci-libs/hdf5:= ) netcdf? ( sci-libs/netcdf:= ) !sci-visualization/labplot:4 >=kde-frameworks/kf-env-3 >=dev-qt/qtcore-5.6.1:5 +SLOT=5 +SRC_URI=mirror://kde/stable/labplot/2.3.0/labplot-2.3.0-kf5.tar.xz +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=04e713972469c71c1b375e50772f7b9d diff --git a/metadata/md5-cache/sci-visualization/labplot-9999 b/metadata/md5-cache/sci-visualization/labplot-9999 index c120260183b1..94de37e131bd 100644 --- a/metadata/md5-cache/sci-visualization/labplot-9999 +++ b/metadata/md5-cache/sci-visualization/labplot-9999 @@ -1,11 +1,11 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=sci-libs/gsl >=sys-apps/sed-4 >=dev-vcs/git-1.8.2.1 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -DESCRIPTION=KDE data analysis and visualisation program -EAPI=5 -HOMEPAGE=https://edu.kde.org/applications/science/labplot/ -IUSE=aqua +DEFINED_PHASES=compile configure install nofetch postinst postrm preinst prepare setup test unpack +DEPEND=>=kde-frameworks/karchive-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/knewstuff-5.23.0:5 >=kde-frameworks/ktextwidgets-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=dev-qt/qtconcurrent-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtprintsupport-5.6.1:5 >=dev-qt/qtsvg-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-apps/cantor-5.9999:5 ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:= ) hdf5? ( sci-libs/hdf5:= ) netcdf? ( sci-libs/netcdf:= ) sys-devel/gettext x11-misc/shared-mime-info sys-devel/make >=dev-util/cmake-2.8.12 >=sys-apps/sed-4 dev-util/desktop-file-utils x11-misc/shared-mime-info >=dev-vcs/git-1.8.2.1 >=kde-frameworks/extra-cmake-modules-5.23.0:5 handbook? ( >=kde-frameworks/kdoctools-5.23.0:5 ) >=dev-qt/qtcore-5.6.1:5 dev-util/desktop-file-utils +DESCRIPTION=Scientific data analysis and visualisation based on KDE Frameworks +EAPI=6 +HOMEPAGE=https://www.kde.org/applications/education/labplot/ +IUSE=cantor fftw fits hdf5 netcdf debug +handbook LICENSE=GPL-2 -RDEPEND=sci-libs/gsl kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] -SLOT=4 -_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc git-r3 e928b84a9f6f1d9076d1d27687876dc6 gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=e88c95771ae583fe5f80a2c1dffe9bc2 +RDEPEND=>=kde-frameworks/karchive-5.23.0:5 >=kde-frameworks/kcompletion-5.23.0:5 >=kde-frameworks/kconfig-5.23.0:5 >=kde-frameworks/kconfigwidgets-5.23.0:5 >=kde-frameworks/kcoreaddons-5.23.0:5 >=kde-frameworks/kdelibs4support-5.23.0:5 >=kde-frameworks/ki18n-5.23.0:5 >=kde-frameworks/kiconthemes-5.23.0:5 >=kde-frameworks/kio-5.23.0:5 >=kde-frameworks/knewstuff-5.23.0:5 >=kde-frameworks/ktextwidgets-5.23.0:5 >=kde-frameworks/kwidgetsaddons-5.23.0:5 >=kde-frameworks/kxmlgui-5.23.0:5 >=dev-qt/qtconcurrent-5.6.1:5 >=dev-qt/qtgui-5.6.1:5 >=dev-qt/qtprintsupport-5.6.1:5 >=dev-qt/qtsvg-5.6.1:5 >=dev-qt/qtwidgets-5.6.1:5 >=sci-libs/gsl-1.15:= cantor? ( >=kde-apps/cantor-5.9999:5 ) fftw? ( sci-libs/fftw:3.0= ) fits? ( sci-libs/cfitsio:= ) hdf5? ( sci-libs/hdf5:= ) netcdf? ( sci-libs/netcdf:= ) !sci-visualization/labplot:4 >=kde-frameworks/kf-env-3 >=dev-qt/qtcore-5.6.1:5 +SLOT=5 +_eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc git-r3 e928b84a9f6f1d9076d1d27687876dc6 gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde5 17a9ebab73fa9429f9c6e0e8ce27ca32 kde5-functions b30ac0dbd3bfd299006c01a53e76024a multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg a5c4c5ce4f5ce9a2e777f5d9a40a8723 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=e1e24aefc22afb78d09cc6eda3613642 diff --git a/metadata/md5-cache/sys-auth/keystone-10.0.0 b/metadata/md5-cache/sys-auth/keystone-10.0.0 index bf214a3fdbd9..e9b291d0ad54 100644 --- a/metadata/md5-cache/sys-auth/keystone-10.0.0 +++ b/metadata/md5-cache/sys-auth/keystone-10.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=The Openstack authentication, authorization, and service catalog EAPI=6 HOMEPAGE=https://launchpad.net/keystone IUSE=+sqlite ldap memcached mongo mysql postgres test python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/paste[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/cryptography-1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] sqlite? ( >=dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/psycopg-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/passlib-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-cache-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oauthlib-0.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pysaml2-2.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/dogpile-cache-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/pycadf-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pycadf-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/msgpack-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/osprofiler-1.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] memcached? ( >=dev-python/python-memcached-1.56[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) mongo? ( >=dev-python/pymongo-3.0.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pymongo-3.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) ldap? ( >=dev-python/pyldap-2.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/ldappool-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ) || ( www-servers/uwsgi[python,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] www-apache/mod_wsgi[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] www-servers/gunicorn[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 python_targets_python3_4 ) SLOT=0 SRC_URI=https://tarballs.openstack.org/keystone/keystone-10.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=5e3951f6b1a359c24cc93611f53c95fa +_md5_=970a402e751e4a1a8309543e1989d909 diff --git a/metadata/md5-cache/sys-block/open-iscsi-2.0.873-r1 b/metadata/md5-cache/sys-block/open-iscsi-2.0.873-r1 index 1e78b39acdce..813c74dc743b 100644 --- a/metadata/md5-cache/sys-block/open-iscsi-2.0.873-r1 +++ b/metadata/md5-cache/sys-block/open-iscsi-2.0.873-r1 @@ -4,10 +4,10 @@ DESCRIPTION=Open-iSCSI is a high performance, transport independent, multi-platf EAPI=5 HOMEPAGE=http://www.open-iscsi.org/ IUSE=debug slp -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 LICENSE=GPL-2 RDEPEND=slp? ( net-libs/openslp ) sys-fs/lsscsi sys-apps/util-linux SLOT=0 SRC_URI=http://www.open-iscsi.org/bits/open-iscsi-2.0-873.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc linux-info fd1e29abbb02cbc49f1a14299846e9c4 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 udev 73058269b3e70e34e084fa3981282338 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=1ff0e31ff8f51154171875b162d1efa5 +_md5_=1b9de67e9b04618d230fe8580a778f39 diff --git a/metadata/md5-cache/sys-boot/refind-0.10.2-r2 b/metadata/md5-cache/sys-boot/refind-0.10.2-r2 new file mode 100644 index 000000000000..b845d89f58da --- /dev/null +++ b/metadata/md5-cache/sys-boot/refind-0.10.2-r2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install postinst prepare setup +DEPEND=gnuefi? ( >=sys-boot/gnu-efi-3.0.2 ) !gnuefi? ( >=sys-boot/udk-2015 ) +DESCRIPTION=The rEFInd UEFI Boot Manager by Rod Smith +EAPI=6 +HOMEPAGE=http://www.rodsbooks.com/refind/ +IUSE=btrfs +ext2 +ext4 hfs +iso9660 ntfs reiserfs -gnuefi doc -custom-cflags +KEYWORDS=~amd64 ~x86 +LICENSE=BSD GPL-2 GPL-3 FDL-1.3 +SLOT=0 +SRC_URI=mirror://sourceforge/project/refind/0.10.2/refind-src-0.10.2.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=d04e3b686ec9fd3b1f486bc870d6b234 diff --git a/metadata/md5-cache/sys-boot/refind-0.10.3-r1 b/metadata/md5-cache/sys-boot/refind-0.10.3-r1 new file mode 100644 index 000000000000..dcf2994814d1 --- /dev/null +++ b/metadata/md5-cache/sys-boot/refind-0.10.3-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install postinst prepare setup +DEPEND=gnuefi? ( >=sys-boot/gnu-efi-3.0.2 ) !gnuefi? ( >=sys-boot/udk-2015 ) +DESCRIPTION=The rEFInd UEFI Boot Manager by Rod Smith +EAPI=6 +HOMEPAGE=http://www.rodsbooks.com/refind/ +IUSE=btrfs +ext2 +ext4 hfs +iso9660 ntfs reiserfs -gnuefi doc -custom-cflags +KEYWORDS=~amd64 ~x86 +LICENSE=BSD GPL-2 GPL-3 FDL-1.3 +SLOT=0 +SRC_URI=mirror://sourceforge/project/refind/0.10.3/refind-src-0.10.3.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=0f7aa17aa0736b034b0b00fe391d9d30 diff --git a/metadata/md5-cache/sys-boot/refind-0.10.4-r1 b/metadata/md5-cache/sys-boot/refind-0.10.4-r1 new file mode 100644 index 000000000000..9034c941a75b --- /dev/null +++ b/metadata/md5-cache/sys-boot/refind-0.10.4-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install postinst prepare setup +DEPEND=gnuefi? ( >=sys-boot/gnu-efi-3.0.2 ) !gnuefi? ( >=sys-boot/udk-2015 ) +DESCRIPTION=The rEFInd UEFI Boot Manager by Rod Smith +EAPI=6 +HOMEPAGE=http://www.rodsbooks.com/refind/ +IUSE=btrfs +ext2 +ext4 hfs +iso9660 ntfs reiserfs -gnuefi doc -custom-cflags +KEYWORDS=~amd64 ~x86 +LICENSE=BSD GPL-2 GPL-3 FDL-1.3 +SLOT=0 +SRC_URI=mirror://sourceforge/project/refind/0.10.4/refind-src-0.10.4.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c +_md5_=15221322a2605a9173ec11317f6bed60 diff --git a/metadata/md5-cache/sys-boot/tboot-1.9.4_p20161101 b/metadata/md5-cache/sys-boot/tboot-1.9.4_p20161101 new file mode 100644 index 000000000000..5261ba16634b --- /dev/null +++ b/metadata/md5-cache/sys-boot/tboot-1.9.4_p20161101 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare prerm pretend +DEPEND=app-crypt/trousers app-crypt/tpm-tools dev-libs/openssl:0=[-bindist] +DESCRIPTION=Performs a measured and verified boot using Intel Trusted Execution Technology +EAPI=6 +HOMEPAGE=https://sourceforge.net/projects/tboot/ +IUSE=custom-cflags selinux +KEYWORDS=~amd64 ~x86 -* +LICENSE=BSD +RDEPEND=app-crypt/trousers app-crypt/tpm-tools dev-libs/openssl:0=[-bindist] sys-boot/grub:2 selinux? ( sec-policy/selinux-tboot ) +RESTRICT=test +SLOT=0 +SRC_URI=http://dev.gentoo.org/~perfinion/distfiles/tboot-1.9.4_p20161101.tar.gz +_eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc mount-boot 41ed556fa5641393d5323e421c8e5bcf multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=e3b20f83e8776ac85f02ad08905c6d11 diff --git a/metadata/md5-cache/sys-cluster/cinder-9.0.0 b/metadata/md5-cache/sys-cluster/cinder-9.0.0 index a058100201d4..d57e71d0028a 100644 --- a/metadata/md5-cache/sys-cluster/cinder-9.0.0 +++ b/metadata/md5-cache/sys-cluster/cinder-9.0.0 @@ -4,11 +4,11 @@ DESCRIPTION=Cinder is the OpenStack Block storage service, a spin out of nova-vo EAPI=6 HOMEPAGE=https://launchpad.net/cinder IUSE=+api +scheduler +volume infiniband iscsi lvm mysql +memcached postgres rdma sqlite +tcp test +tgt python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/decorator-3.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/enum34[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/httplib2-0.7.5[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] virtual/python-ipaddress[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oauth2client-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-privsep-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-reports-0.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-rootwrap-5.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-versionedobjects-1.13.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/osprofiler-1.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/paramiko-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/paste[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pycrypto-2.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pyparsing-2.0.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-barbicanclient-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-glanceclient-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-glanceclient-2.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-novaclient-2.29.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-novaclient-2.33.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-swiftclient-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pytz-2013.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/taskflow-1.26.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/rtslib-fb-2.1.41[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/simplejson-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] sqlite? ( >=dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/psycopg-2.5.0 >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] ~dev-python/suds-0.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-vmware-2.11.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-brick-1.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-win-0.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/tooz-1.28.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/google-api-python-client-1.4.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/castellan-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] iscsi? ( tgt? ( sys-block/tgt ) sys-block/open-iscsi ) lvm? ( sys-fs/lvm2 ) memcached? ( net-misc/memcached ) app-emulation/qemu sys-fs/sysfsutils python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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=|| ( mysql postgres sqlite ) iscsi? ( tgt ) infiniband? ( rdma ) || ( python_targets_python2_7 python_targets_python3_4 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/newton/cinder.conf.sample -> newton-cinder.conf.sample https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/newton/policy.json -> newton-cinder-policy.json https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/newton/volume.filters -> newton-cinder-volume.filters https://tarballs.openstack.org/cinder/cinder-9.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 linux-info fd1e29abbb02cbc49f1a14299846e9c4 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=49448163ea1909c6d8c072ba5b3e65c8 +_md5_=3ed4a9999b99fb2e4731d506ccb5ef14 diff --git a/metadata/md5-cache/sys-cluster/heat-7.0.0-r1 b/metadata/md5-cache/sys-cluster/heat-7.0.0-r1 index a8d26648a19a..cb8423f360db 100644 --- a/metadata/md5-cache/sys-cluster/heat-7.0.0-r1 +++ b/metadata/md5-cache/sys-cluster/heat-7.0.0-r1 @@ -4,11 +4,11 @@ DESCRIPTION=A CloudFormation-compatible openstack-native cloud orchistration eng EAPI=6 HOMEPAGE=https://launchpad.net/heat IUSE=+mysql +memcached postgres sqlite python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/croniter-0.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/cryptography-1.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/debtcollector-1.2.0 >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netaddr-0.7.13[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-cache-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-reports-0.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/osprofiler-1.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-versionedobjects-1.13.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pycrypto-2.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/aodhclient-0.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-barbicanclient-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-ceilometerclient-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-cinderclient-1.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-designateclient-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-glanceclient-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-glanceclient-2.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-heatclient-1.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-magnumclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-manilaclient-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-mistralclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-monascaclient-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-neutronclient-5.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-novaclient-2.29.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-novaclient-2.33.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-openstackclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-senlinclient-0.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-swiftclient-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-troveclient-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-zaqarclient-1.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pytz-2013.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] sqlite? ( >=dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/psycopg-2.5.0 >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/yaql-1.1.0[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] +RDEPEND=>=dev-python/pbr-1.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/croniter-0.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/cryptography-1.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netaddr-0.7.13[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-cache-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-reports-0.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/osprofiler-1.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-versionedobjects-1.13.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pycrypto-2.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/aodhclient-0.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-barbicanclient-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-ceilometerclient-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-cinderclient-1.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-designateclient-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-glanceclient-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-glanceclient-2.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-heatclient-1.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-keystoneclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-keystoneclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-magnumclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-manilaclient-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-mistralclient-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-monascaclient-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-neutronclient-5.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-novaclient-2.29.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-novaclient-2.33.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-openstackclient-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-senlinclient-0.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-swiftclient-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-troveclient-2.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-zaqarclient-1.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pytz-2013.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] sqlite? ( >=dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/psycopg-2.5.0 >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/yaql-1.1.0[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 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 python_targets_python3_4 ) SLOT=0 SRC_URI=https://tarballs.openstack.org/heat/heat-7.0.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=389bb1101ac299ad74e6b834518f8347 +_md5_=899b69a79d8dc679ecd7cf15a9396dc9 diff --git a/metadata/md5-cache/sys-cluster/neutron-9.1.0 b/metadata/md5-cache/sys-cluster/neutron-9.1.0 index 2ba763803855..c7ecffe6a203 100644 --- a/metadata/md5-cache/sys-cluster/neutron-9.1.0 +++ b/metadata/md5-cache/sys-cluster/neutron-9.1.0 @@ -4,11 +4,11 @@ DESCRIPTION=A virtual network service for Openstack EAPI=6 HOMEPAGE=https://launchpad.net/neutron IUSE=compute-only dhcp ipv6 l3 metadata openvswitch linuxbridge server sqlite mysql postgres python_targets_python2_7 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pastedeploy-1.5.0-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/debtcollector-1.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pecan-1.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/pecan-1.0.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/pecan-1.0.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/pecan-1.0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/httplib2-0.7.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jinja-2.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !=dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !=dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/netaddr-0.7.13[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/netifaces-0.10.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/neutron-lib-0.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-neutronclient-5.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/retrying-1.2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/retrying-1.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/ryu-3.30[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/ryu-4.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/ryu-4.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/ryu-4.2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/ryu-4.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] compute-only? ( >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/psycopg-2.5.0 >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/webob-1.2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/alembic-0.8.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-cache-1.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-reports-0.6.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-rootwrap-5.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-versionedobjects-1.13.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/osprofiler-1.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/ovs-2.6.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-novaclient-2.29.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/python-novaclient-2.33.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-designateclient-1.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-singledispatch[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyudev[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sys-apps/iproute2 net-misc/iputils[arping] net-misc/bridge-utils net-firewall/ipset net-firewall/iptables net-firewall/ebtables net-firewall/conntrack-tools openvswitch? ( <=net-misc/openvswitch-2.6.9999 ) ipv6? ( net-misc/radvd >=net-misc/dibbler-1.0.1 ) dhcp? ( net-dns/dnsmasq[dhcp-tools] ) 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_python2_7(-)] REQUIRED_USE=!compute-only? ( || ( mysql postgres sqlite ) ) compute-only? ( !mysql !postgres !sqlite !dhcp !l3 !metadata !server || ( openvswitch linuxbridge ) ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/newton/configs.tar.gz -> neutron-configs-9.1.0.tar.gz https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/newton/ml2_plugins.tar.gz -> neutron-ml2-plugins-9.1.0.tar.gz https://tarballs.openstack.org/neutron/neutron-9.1.0.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 linux-info fd1e29abbb02cbc49f1a14299846e9c4 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=ea9faaacb14bf6204a121d0a06c58350 +_md5_=72801e48eb8eba3205bb5cb72259e2cc diff --git a/metadata/md5-cache/sys-cluster/nova-14.0.1 b/metadata/md5-cache/sys-cluster/nova-14.0.1 index 0e26b2f5818e..53b954a0281a 100644 --- a/metadata/md5-cache/sys-cluster/nova-14.0.1 +++ b/metadata/md5-cache/sys-cluster/nova-14.0.1 @@ -4,11 +4,11 @@ DESCRIPTION=Cloud computing fabric controller (main part of an IaaS system) in P EAPI=6 HOMEPAGE=https://launchpad.net/nova IUSE=+compute compute-only iscsi +memcached mysql +novncproxy openvswitch postgres +rabbitmq sqlite python_targets_python2_7 python_targets_python3_4 -KEYWORDS=~amd64 ~arm64 ~x86 +KEYWORDS=amd64 ~arm64 x86 LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] compute-only? ( >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/psycopg-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/boto-2.32.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/decorator-3.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/jinja-2.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/cryptography-1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pastedeploy-1.5.0-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/paste[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netaddr-0.7.13[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netifaces-0.10.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/paramiko-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/python-cinderclient-1.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-neutronclient-5.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-glanceclient-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-glanceclient-2.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/setuptools-16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/setuptools-24.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/websockify-0.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-cache-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-reports-0.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-rootwrap-5.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/rfc3986-0.2.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/psutil-1.1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/oslo-versionedobjects-1.13.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-brick-1.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-vif-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-win-0.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/castellan-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/microversion-parse-0.1.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/wsgiintercept-0.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/libvirt-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] app-emulation/libvirt[iscsi?] novncproxy? ( www-apps/novnc ) sys-apps/iproute2 openvswitch? ( <=net-misc/openvswitch-2.5.9999 ) rabbitmq? ( net-misc/rabbitmq-server ) memcached? ( net-misc/memcached >=dev-python/python-memcached-1.58 ) sys-fs/sysfsutils sys-fs/multipath-tools net-misc/bridge-utils compute? ( app-cdr/cdrkit sys-fs/dosfstools app-emulation/qemu ) iscsi? ( sys-fs/lsscsi >=sys-block/open-iscsi-2.0.873-r2 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] +RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] compute-only? ( >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/psycopg-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/boto-2.32.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/decorator-3.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/jinja-2.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/cryptography-1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pastedeploy-1.5.0-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/paste[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netaddr-0.7.13[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netifaces-0.10.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/paramiko-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/python-cinderclient-1.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-neutronclient-5.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-glanceclient-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-glanceclient-2.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/setuptools-16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/setuptools-24.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/websockify-0.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-cache-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-reports-0.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-rootwrap-5.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/rfc3986-0.2.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/psutil-1.1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/oslo-versionedobjects-1.13.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-brick-1.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-vif-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-win-0.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/castellan-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/microversion-parse-0.1.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/wsgiintercept-0.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/libvirt-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] app-emulation/libvirt[iscsi?] novncproxy? ( www-apps/novnc ) sys-apps/iproute2 openvswitch? ( <=net-misc/openvswitch-2.5.9999 ) rabbitmq? ( net-misc/rabbitmq-server ) memcached? ( net-misc/memcached >=dev-python/python-memcached-1.58 ) sys-fs/sysfsutils sys-fs/multipath-tools net-misc/bridge-utils compute? ( app-cdr/cdrkit sys-fs/dosfstools app-emulation/qemu ) iscsi? ( sys-fs/lsscsi >=sys-block/open-iscsi-2.0.873-r1 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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=!compute-only? ( || ( mysql postgres sqlite ) ) compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite ) || ( python_targets_python2_7 python_targets_python3_4 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/newton/nova.conf.sample -> newton-nova.conf.sample https://tarballs.openstack.org/nova/nova-14.0.1.tar.gz _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 linux-info fd1e29abbb02cbc49f1a14299846e9c4 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=6c367842a0064c0445b0f79506bd2510 +_md5_=e4721f2f90861f9280d20c680f921c5d diff --git a/metadata/md5-cache/sys-cluster/nova-2016.2.9999 b/metadata/md5-cache/sys-cluster/nova-2016.2.9999 index f37734c71a1c..6e77192f1dc4 100644 --- a/metadata/md5-cache/sys-cluster/nova-2016.2.9999 +++ b/metadata/md5-cache/sys-cluster/nova-2016.2.9999 @@ -5,9 +5,9 @@ EAPI=6 HOMEPAGE=https://launchpad.net/nova IUSE=+compute compute-only iscsi +memcached mysql +novncproxy openvswitch postgres +rabbitmq sqlite python_targets_python2_7 python_targets_python3_4 LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] compute-only? ( >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/psycopg-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/boto-2.32.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/decorator-3.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/jinja-2.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/cryptography-1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pastedeploy-1.5.0-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/paste[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netaddr-0.7.13[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netifaces-0.10.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/paramiko-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/python-cinderclient-1.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-neutronclient-5.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-glanceclient-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-glanceclient-2.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/setuptools-16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/setuptools-24.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/websockify-0.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-cache-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-reports-0.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-rootwrap-5.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/rfc3986-0.2.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/psutil-1.1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/oslo-versionedobjects-1.13.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-brick-1.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-vif-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-win-0.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/castellan-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/microversion-parse-0.1.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/wsgiintercept-0.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/libvirt-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] app-emulation/libvirt[iscsi?] novncproxy? ( www-apps/novnc ) sys-apps/iproute2 openvswitch? ( <=net-misc/openvswitch-2.5.9999 ) rabbitmq? ( net-misc/rabbitmq-server ) memcached? ( net-misc/memcached >=dev-python/python-memcached-1.58 ) sys-fs/sysfsutils sys-fs/multipath-tools net-misc/bridge-utils compute? ( app-cdr/cdrkit sys-fs/dosfstools app-emulation/qemu ) iscsi? ( sys-fs/lsscsi >=sys-block/open-iscsi-2.0.873-r2 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] +RDEPEND=>=dev-python/pbr-1.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] compute-only? ( >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-1.0.10[sqlite,python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/pymysql-0.6.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/pymysql-0.7.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/psycopg-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/sqlalchemy-1.0.10[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/boto-2.32.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/decorator-3.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/eventlet-0.18.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/jinja-2.8[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystonemiddleware-4.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/keystonemiddleware-4.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/routes-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/routes-2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/cryptography-1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/cryptography-1.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/webob-1.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/greenlet-0.3.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/pastedeploy-1.5.0-r1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/paste[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/prettytable-0.7[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/sqlalchemy-migrate-0.9.6[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netaddr-0.7.13[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/netaddr-0.7.16[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/netifaces-0.10.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/paramiko-2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/Babel-2.3.4[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/iso8601-0.1.11[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/jsonschema-2.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/jsonschema-2.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/python-cinderclient-1.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-cinderclient-1.7.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/keystoneauth-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-neutronclient-5.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/python-glanceclient-2.3.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/python-glanceclient-2.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/requests-2.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/six-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/stevedore-1.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/setuptools-16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/setuptools-24.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/websockify-0.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-cache-1.5.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-concurrency-3.8.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-config-3.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-context-2.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-log-1.14.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-reports-0.6.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-serialization-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-utils-3.16.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-db-4.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] !~dev-python/oslo-db-4.13.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-rootwrap-5.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-messaging-5.2.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-policy-1.9.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-i18n-2.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-service-1.10.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/rfc3986-0.2.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/oslo-middleware-3.0.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/psutil-1.1.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] =dev-python/oslo-versionedobjects-1.13.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-brick-1.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-vif-1.1.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/os-win-0.2.3[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/castellan-0.4.0[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/microversion-parse-0.1.2[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] >=dev-python/wsgiintercept-0.6.1[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] dev-python/libvirt-python[python_targets_python2_7(-)?,python_targets_python3_4(-)?,-python_single_target_python2_7(-),-python_single_target_python3_4(-)] app-emulation/libvirt[iscsi?] novncproxy? ( www-apps/novnc ) sys-apps/iproute2 openvswitch? ( <=net-misc/openvswitch-2.5.9999 ) rabbitmq? ( net-misc/rabbitmq-server ) memcached? ( net-misc/memcached >=dev-python/python-memcached-1.58 ) sys-fs/sysfsutils sys-fs/multipath-tools net-misc/bridge-utils compute? ( app-cdr/cdrkit sys-fs/dosfstools app-emulation/qemu ) iscsi? ( sys-fs/lsscsi >=sys-block/open-iscsi-2.0.873-r1 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_4? ( dev-lang/python:3.4 ) >=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=!compute-only? ( || ( mysql postgres sqlite ) ) compute-only? ( compute !rabbitmq !memcached !mysql !postgres !sqlite ) || ( python_targets_python2_7 python_targets_python3_4 ) SLOT=0 SRC_URI=https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/newton/nova.conf.sample -> newton-nova.conf.sample _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 git-r3 e928b84a9f6f1d9076d1d27687876dc6 linux-info fd1e29abbb02cbc49f1a14299846e9c4 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 user 80aaa71614ced86f02ee1a513821dc87 versionator 99ae9d758cbe7cfed19170e7d48f5a9c xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=c8c31e4ba2eb9bb7840f04fd27724343 +_md5_=92d761fb41571cb692a60ab0157789bd diff --git a/metadata/md5-cache/sys-kernel/genkernel-next-65 b/metadata/md5-cache/sys-kernel/genkernel-next-65 new file mode 100644 index 000000000000..b1499f2cdfc2 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/genkernel-next-65 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install prepare +DEPEND=app-text/asciidoc sys-fs/e2fsprogs !sys-fs/eudev[-kmod,modutils] selinux? ( sys-libs/libselinux ) +DESCRIPTION=Gentoo automatic kernel building scripts, reloaded +EAPI=6 +HOMEPAGE=http://www.gentoo.org +IUSE=cryptsetup dmraid gpg iscsi mdadm plymouth selinux +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 +LICENSE=GPL-2 +RDEPEND=app-text/asciidoc sys-fs/e2fsprogs !sys-fs/eudev[-kmod,modutils] selinux? ( sys-libs/libselinux ) !sys-kernel/genkernel cryptsetup? ( sys-fs/cryptsetup ) dmraid? ( >=sys-fs/dmraid-1.0.0_rc16 ) gpg? ( app-crypt/gnupg ) iscsi? ( sys-block/open-iscsi ) mdadm? ( sys-fs/mdadm ) plymouth? ( sys-boot/plymouth ) app-portage/portage-utils app-arch/cpio >=app-misc/pax-utils-0.6 ! genkernel-next-65.tar.gz +_eclasses_=bash-completion-r1 acf715fa09463f043fbfdc1640f3fb85 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 +_md5_=efc5cbd817536b4963d0bf0977b611a3 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-4.7.10 b/metadata/md5-cache/sys-kernel/git-sources-4.9_rc4 similarity index 59% rename from metadata/md5-cache/sys-kernel/vanilla-sources-4.7.10 rename to metadata/md5-cache/sys-kernel/git-sources-4.9_rc4 index 50c8b2237f93..dcdd700c1436 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-4.7.10 +++ b/metadata/md5-cache/sys-kernel/git-sources-4.9_rc4 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile install postinst postrm preinst setup test unpack -DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) -DESCRIPTION=Full sources for the Linux kernel +DEPEND=>=sys-devel/patch-2.7.4 !build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) +DESCRIPTION=The very latest -git version of the Linux kernel EAPI=5 HOMEPAGE=https://www.kernel.org IUSE=symlink build -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-2 freedist RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=4.7.10 -SRC_URI=mirror://kernel/linux/kernel/v4.x/patch-4.7.10.xz mirror://kernel/linux/kernel/v4.x/linux-4.7.tar.xz +SLOT=4.9_rc4 +SRC_URI=mirror://kernel/linux/kernel/v4.x/testing/patch-4.9-rc4.xz mirror://kernel/linux/kernel/v4.x/linux-4.8.tar.xz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 kernel-2 f31f3b95b5d8f120e14f0b7aafbd8b47 multilib 165fc17c38d1b11dac2008280dab6e80 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=c8237d05e015cb2231ac8424e6ca7565 +_md5_=0675380e6faee4dfc25651554e58d99d diff --git a/metadata/md5-cache/sys-libs/libcxxabi-3.9.0 b/metadata/md5-cache/sys-libs/libcxxabi-3.9.0 index 52e2fbc66fde..fcc31e217c17 100644 --- a/metadata/md5-cache/sys-libs/libcxxabi-3.9.0 +++ b/metadata/md5-cache/sys-libs/libcxxabi-3.9.0 @@ -3,11 +3,11 @@ DEPEND=libunwind? ( || ( >=sys-libs/libunwind-1.0.1-r1[static-libs?,abi_x86_32(- DESCRIPTION=Low level support for a standard C++ library EAPI=6 HOMEPAGE=http://libcxxabi.llvm.org/ -IUSE=libunwind +static-libs 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 +IUSE=elibc_musl libunwind +static-libs 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 KEYWORDS=~amd64 ~x86 LICENSE=|| ( UoI-NCSA MIT ) RDEPEND=libunwind? ( || ( >=sys-libs/libunwind-1.0.1-r1[static-libs?,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/llvm-libunwind-3.9.0-r1[static-libs?,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=http://llvm.org/releases/3.9.0/libcxxabi-3.9.0.src.tar.xz http://llvm.org/releases/3.9.0/libcxx-3.9.0.src.tar.xz _eclasses_=cmake-multilib 273c15f5a0a06438a38bb5c3e98fa2db cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multilib-build 8fe2e81aeb36cdf8a6cc5f50443879cc multilib-minimal 0224dee31c0f98405d572e14ad6dee65 python-any-r1 1c20f9b800324335a8e3b137363362e8 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=f732dd62cb294a3cca5d2ed2598d6ca4 +_md5_=075589629a059d0b4e167c564001fd2f diff --git a/metadata/md5-cache/virtual/python-funcsigs-1 b/metadata/md5-cache/virtual/python-funcsigs-1 index 1a97e6295b13..78392757b4dc 100644 --- a/metadata/md5-cache/virtual/python-funcsigs-1 +++ b/metadata/md5-cache/virtual/python-funcsigs-1 @@ -2,9 +2,9 @@ DEFINED_PHASES=- DESCRIPTION=A Virtual for Python function signatures from PEP362 EAPI=6 IUSE=python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 -KEYWORDS=~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-linux ~x86-linux RDEPEND=python_targets_pypy? ( virtual/pypy:0= ) python_targets_pypy3? ( virtual/pypy3: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 ) >=dev-lang/python-exec-2:=[python_targets_pypy(-)?,python_targets_pypy3(-)?,python_targets_python2_7(-)?,python_targets_python3_4(-)?,python_targets_python3_5(-)?,-python_single_target_pypy(-),-python_single_target_pypy3(-),-python_single_target_python2_7(-),-python_single_target_python3_4(-),-python_single_target_python3_5(-)] python_targets_pypy? ( >=dev-python/funcsigs-1 ) python_targets_pypy3? ( >=dev-python/funcsigs-1 ) python_targets_python2_7? ( >=dev-python/funcsigs-1 ) python_targets_python3_4? ( >=dev-python/funcsigs-1 ) python_targets_python3_5? ( >=dev-python/funcsigs-1 ) REQUIRED_USE=|| ( python_targets_pypy python_targets_pypy3 python_targets_python2_7 python_targets_python3_4 python_targets_python3_5 ) SLOT=0 _eclasses_=multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 -_md5_=90ae72f5be1d69c3687cc15ad7c004ec +_md5_=b0fe447faea8857d5c54bd770a2e5806 diff --git a/metadata/md5-cache/www-apache/passenger-5.0.28 b/metadata/md5-cache/www-apache/passenger-5.0.28 deleted file mode 100644 index 564e769be1ee..000000000000 --- a/metadata/md5-cache/www-apache/passenger-5.0.28 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=ruby_targets_ruby20? ( dev-ruby/rake[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/rake[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/rake[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/rake[ruby_targets_ruby23] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby20] >=dev-ruby/rake-0.8.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby21] >=dev-ruby/rake-0.8.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rake-0.8.1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby23] >=dev-ruby/rake-0.8.1[ruby_targets_ruby23] ) ) >=dev-libs/libuv-1.8.0 net-misc/curl[ssl] www-servers/apache[apache2_modules_unixd(+)] =www-servers/apache-2* ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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=Passenger makes deployment of Ruby on Rails applications a breeze -EAPI=5 -HOMEPAGE=https://www.phusionpassenger.com/ -IUSE=debug test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby20] >=dev-ruby/rake-0.8.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby21] >=dev-ruby/rake-0.8.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rake-0.8.1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby23] >=dev-ruby/rake-0.8.1[ruby_targets_ruby23] ) >=dev-libs/libuv-1.8.0 net-misc/curl[ssl] www-servers/apache[apache2_modules_unixd(+)] =www-servers/apache-2* ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) -SLOT=0 -SRC_URI=http://s3.amazonaws.com/phusion-passenger/releases/passenger-5.0.28.tar.gz -_eclasses_=apache-module 5e66430013d92dfe0bf8672b05319b6d depend.apache d86176876ab66b0d5239c0097903a1b2 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=74c90505f29996307e2d5e1f988cb8fe diff --git a/metadata/md5-cache/www-apache/passenger-5.0.29 b/metadata/md5-cache/www-apache/passenger-5.0.29 deleted file mode 100644 index dea46b205532..000000000000 --- a/metadata/md5-cache/www-apache/passenger-5.0.29 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=ruby_targets_ruby20? ( dev-ruby/rake[ruby_targets_ruby20] ) ruby_targets_ruby21? ( dev-ruby/rake[ruby_targets_ruby21] ) ruby_targets_ruby22? ( dev-ruby/rake[ruby_targets_ruby22] ) ruby_targets_ruby23? ( dev-ruby/rake[ruby_targets_ruby23] ) test? ( ruby_targets_ruby20? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby20] >=dev-ruby/rake-0.8.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby21] >=dev-ruby/rake-0.8.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rake-0.8.1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby23] >=dev-ruby/rake-0.8.1[ruby_targets_ruby23] ) ) >=dev-libs/libuv-1.8.0 net-misc/curl[ssl] www-servers/apache[apache2_modules_unixd(+)] =www-servers/apache-2* ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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=Passenger makes deployment of Ruby on Rails applications a breeze -EAPI=5 -HOMEPAGE=https://www.phusionpassenger.com/ -IUSE=debug test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby20] >=dev-ruby/rake-0.8.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby21] >=dev-ruby/rake-0.8.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rake-0.8.1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby23] >=dev-ruby/rake-0.8.1[ruby_targets_ruby23] ) >=dev-libs/libuv-1.8.0 net-misc/curl[ssl] www-servers/apache[apache2_modules_unixd(+)] =www-servers/apache-2* ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) -SLOT=0 -SRC_URI=http://s3.amazonaws.com/phusion-passenger/releases/passenger-5.0.29.tar.gz -_eclasses_=apache-module 5e66430013d92dfe0bf8672b05319b6d depend.apache d86176876ab66b0d5239c0097903a1b2 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=74c90505f29996307e2d5e1f988cb8fe diff --git a/metadata/md5-cache/www-apache/passenger-5.0.30 b/metadata/md5-cache/www-apache/passenger-5.0.30 index 2548a5e62b92..f4114f623210 100644 --- a/metadata/md5-cache/www-apache/passenger-5.0.30 +++ b/metadata/md5-cache/www-apache/passenger-5.0.30 @@ -4,11 +4,11 @@ DESCRIPTION=Passenger makes deployment of Ruby on Rails applications a breeze EAPI=5 HOMEPAGE=https://www.phusionpassenger.com/ IUSE=debug test elibc_FreeBSD ruby_targets_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 ~x86 LICENSE=GPL-2 RDEPEND=ruby_targets_ruby20? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby20] >=dev-ruby/rake-0.8.1[ruby_targets_ruby20] ) ruby_targets_ruby21? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby21] >=dev-ruby/rake-0.8.1[ruby_targets_ruby21] ) ruby_targets_ruby22? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby22] >=dev-ruby/rake-0.8.1[ruby_targets_ruby22] ) ruby_targets_ruby23? ( >=dev-ruby/rack-1.0.0:*[ruby_targets_ruby23] >=dev-ruby/rake-0.8.1[ruby_targets_ruby23] ) >=dev-libs/libuv-1.8.0 net-misc/curl[ssl] www-servers/apache[apache2_modules_unixd(+)] =www-servers/apache-2* ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) 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_ruby20 ruby_targets_ruby21 ruby_targets_ruby22 ruby_targets_ruby23 ) SLOT=0 SRC_URI=http://s3.amazonaws.com/phusion-passenger/releases/passenger-5.0.30.tar.gz _eclasses_=apache-module 5e66430013d92dfe0bf8672b05319b6d depend.apache d86176876ab66b0d5239c0097903a1b2 eutils b83a2420b796f7c6eff682679d08fe25 flag-o-matic 8632fcd33a047954f007dee9a137bdcc java-utils-2 a50950a73b5d5db46f42638e2996a087 multilib 165fc17c38d1b11dac2008280dab6e80 ruby-ng 3b6431b487e69b5070a45ea20d1c4c6c ruby-utils 2f896785ed65442d7e84ab5f5eef3bd3 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=74c90505f29996307e2d5e1f988cb8fe +_md5_=bce08c084fbf2f0994ee1cca8ce3ab3c diff --git a/metadata/md5-cache/www-apps/blohg-0.13-r1 b/metadata/md5-cache/www-apps/blohg-0.13-r1 deleted file mode 100644 index db151c7b9536..000000000000 --- a/metadata/md5-cache/www-apps/blohg-0.13-r1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare test -DEPEND=>=dev-python/click-2.0 =dev-python/docutils-0.11* >=dev-python/flask-0.10.1 >=dev-python/flask-babel-0.7 >=dev-python/frozen-flask-0.7 >=dev-python/jinja-2.5.2 dev-python/pyyaml dev-python/setuptools dev-python/pygments git? ( =dev-python/pygit2-0.20* ) mercurial? ( >=dev-vcs/mercurial-1.6 ) doc? ( dev-python/sphinx ) test? ( dev-python/mock ) 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_python2_7(-)] -DESCRIPTION=A Mercurial (or Git) based blogging engine -EAPI=5 -HOMEPAGE=http://blohg.org/ https://pypi.python.org/pypi/blohg -IUSE=doc git +mercurial test python_targets_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-python/click-2.0 =dev-python/docutils-0.11* >=dev-python/flask-0.10.1 >=dev-python/flask-babel-0.7 >=dev-python/frozen-flask-0.7 >=dev-python/jinja-2.5.2 dev-python/pyyaml dev-python/setuptools dev-python/pygments git? ( =dev-python/pygit2-0.20* ) mercurial? ( >=dev-vcs/mercurial-1.6 ) 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_python2_7(-)] -REQUIRED_USE=|| ( git mercurial ) test? ( git mercurial ) || ( python_targets_python2_7 ) -SLOT=0 -SRC_URI=mirror://pypi/b/blohg/blohg-0.13.tar.gz -_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=833991a0053acb0fbf9f33862211a64e diff --git a/metadata/md5-cache/www-apps/blohg-0.13-r2 b/metadata/md5-cache/www-apps/blohg-0.13-r2 new file mode 100644 index 000000000000..f6cc5499ebc8 --- /dev/null +++ b/metadata/md5-cache/www-apps/blohg-0.13-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare test +DEPEND=>=dev-python/click-2.0 =dev-python/docutils-0.11* >=dev-python/flask-0.10.1 >=dev-python/flask-babel-0.7 >=dev-python/frozen-flask-0.7 >=dev-python/jinja-2.5.2 dev-python/pyyaml dev-python/setuptools dev-python/pygments git? ( >=dev-python/pygit2-0.21.3 ) mercurial? ( >=dev-vcs/mercurial-1.6 ) doc? ( dev-python/sphinx ) test? ( dev-python/mock ) 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_python2_7(-)] +DESCRIPTION=A Mercurial (or Git) based blogging engine +EAPI=6 +HOMEPAGE=http://blohg.org/ https://pypi.python.org/pypi/blohg +IUSE=doc git +mercurial test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-python/click-2.0 =dev-python/docutils-0.11* >=dev-python/flask-0.10.1 >=dev-python/flask-babel-0.7 >=dev-python/frozen-flask-0.7 >=dev-python/jinja-2.5.2 dev-python/pyyaml dev-python/setuptools dev-python/pygments git? ( >=dev-python/pygit2-0.21.3 ) mercurial? ( >=dev-vcs/mercurial-1.6 ) 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_python2_7(-)] +REQUIRED_USE=|| ( git mercurial ) test? ( git mercurial ) || ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/b/blohg/blohg-0.13.tar.gz +_eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 +_md5_=cf6a5941d592eedb02364c431a5149b5 diff --git a/metadata/md5-cache/www-apps/blohg-9999 b/metadata/md5-cache/www-apps/blohg-9999 index fe54ea261a8d..7a94af2fc73d 100644 --- a/metadata/md5-cache/www-apps/blohg-9999 +++ b/metadata/md5-cache/www-apps/blohg-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=>=dev-python/click-2.0 >=dev-python/docutils-0.11 >=dev-python/flask-0.10.1 >=dev-python/flask-babel-0.7 >=dev-python/frozen-flask-0.7 >=dev-python/jinja-2.5.2 dev-python/pyyaml dev-python/setuptools dev-python/pygments git? ( =dev-python/pygit2-0.21* ) mercurial? ( >=dev-vcs/mercurial-1.6 ) doc? ( dev-python/sphinx ) test? ( dev-python/mock ) 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_python2_7(-)] >=dev-vcs/git-1.8.2.1 +DEPEND=>=dev-python/click-2.0 >=dev-python/docutils-0.11 >=dev-python/flask-0.10.1 >=dev-python/flask-babel-0.7 >=dev-python/frozen-flask-0.7 >=dev-python/jinja-2.5.2 dev-python/pyyaml dev-python/setuptools dev-python/pygments git? ( >=dev-python/pygit2-0.21.3 ) mercurial? ( >=dev-vcs/mercurial-1.6 ) doc? ( dev-python/sphinx ) test? ( dev-python/mock ) 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_python2_7(-)] >=dev-vcs/git-1.8.2.1 DESCRIPTION=A Mercurial (or Git) based blogging engine EAPI=5 HOMEPAGE=http://blohg.org/ https://pypi.python.org/pypi/blohg IUSE=doc git +mercurial test python_targets_python2_7 LICENSE=GPL-2 -RDEPEND=>=dev-python/click-2.0 >=dev-python/docutils-0.11 >=dev-python/flask-0.10.1 >=dev-python/flask-babel-0.7 >=dev-python/frozen-flask-0.7 >=dev-python/jinja-2.5.2 dev-python/pyyaml dev-python/setuptools dev-python/pygments git? ( =dev-python/pygit2-0.21* ) mercurial? ( >=dev-vcs/mercurial-1.6 ) 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_python2_7(-)] +RDEPEND=>=dev-python/click-2.0 >=dev-python/docutils-0.11 >=dev-python/flask-0.10.1 >=dev-python/flask-babel-0.7 >=dev-python/frozen-flask-0.7 >=dev-python/jinja-2.5.2 dev-python/pyyaml dev-python/setuptools dev-python/pygments git? ( >=dev-python/pygit2-0.21.3 ) mercurial? ( >=dev-vcs/mercurial-1.6 ) 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_python2_7(-)] REQUIRED_USE=|| ( git mercurial ) test? ( git mercurial ) || ( python_targets_python2_7 ) SLOT=0 _eclasses_=distutils-r1 674dae153419b2200ae54e879cc65b57 eutils b83a2420b796f7c6eff682679d08fe25 git-r3 e928b84a9f6f1d9076d1d27687876dc6 multibuild 742139c87a9fa3766f0c2b155e5522bf multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 python-r1 dcd61d7a5c283f18cfe763552b09eb88 python-utils-r1 d142329ab093dd20c1dd0edb5f094108 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=7f6efcbfba17726863b54bfeba03e5e2 +_md5_=9d40d542fb31ee9e0d328619ac2d4176 diff --git a/metadata/md5-cache/www-apps/gitit-0.12.1.1-r2 b/metadata/md5-cache/www-apps/gitit-0.12.1.1-r2 new file mode 100644 index 000000000000..96fbfc4cb45e --- /dev/null +++ b/metadata/md5-cache/www-apps/gitit-0.12.1.1-r2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test +DEPEND=>=app-text/pandoc-1.12.4:=[profile?] =dev-haskell/aeson-0.7:=[profile?] >=dev-haskell/base64-bytestring-0.1:=[profile?] =dev-haskell/blaze-html-0.4:=[profile?] =dev-haskell/configfile-1:=[profile?] =dev-haskell/feed-0.3.6:=[profile?] =dev-haskell/filestore-0.6:=[profile?] =dev-haskell/happstack-server-7.0:=[profile?] =dev-haskell/highlighting-kate-0.5.0.1:=[profile?] =dev-haskell/hoauth2-0.4.2:=[profile?] =dev-haskell/hslogger-1:=[profile?] =dev-haskell/hstringtemplate-0.6:=[profile?] =dev-haskell/http-4000.0:=[profile?] =dev-haskell/http-client-tls-0.2.2:=[profile?] =dev-haskell/http-conduit-2.1.4:=[profile?] =dev-haskell/json-0.4:=[profile?] =dev-haskell/old-locale-1:=[profile?] dev-haskell/old-time:=[profile?] >=dev-haskell/pandoc-types-1.12.3:=[profile?] =dev-haskell/recaptcha-0.1:=[profile?] dev-haskell/safe:=[profile?] >dev-haskell/sha-1:=[profile?] =dev-haskell/tagsoup-0.13:=[profile?] dev-haskell/text:=[profile?] >=dev-haskell/uri-0.1:=[profile?] =dev-haskell/url-2.1:=[profile?] =dev-haskell/utf8-string-0.3:=[profile?] =dev-haskell/uuid-1.3:=[profile?] =dev-haskell/xml-1.3.5:=[profile?] >=dev-haskell/xss-sanitize-0.3:=[profile?] =dev-haskell/zlib-0.5:=[profile?] =dev-lang/ghc-7.4.1:= network-uri? ( >=dev-haskell/network-2.6:=[profile?] >=dev-haskell/network-uri-2.6:=[profile?] =dev-haskell/network-2:=[profile?] =dev-haskell/cabal-1.8 doc? ( || ( dev-haskell/haddock >=dev-lang/ghc-7.10.2 ) ) hscolour? ( dev-haskell/hscolour ) +DESCRIPTION=Wiki using happstack, git or darcs, and pandoc +EAPI=6 +HOMEPAGE=http://gitit.net +IUSE=+network-uri +plugins doc hscolour profile +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=app-text/pandoc-1.12.4:=[profile?] =dev-haskell/aeson-0.7:=[profile?] >=dev-haskell/base64-bytestring-0.1:=[profile?] =dev-haskell/blaze-html-0.4:=[profile?] =dev-haskell/configfile-1:=[profile?] =dev-haskell/feed-0.3.6:=[profile?] =dev-haskell/filestore-0.6:=[profile?] =dev-haskell/happstack-server-7.0:=[profile?] =dev-haskell/highlighting-kate-0.5.0.1:=[profile?] =dev-haskell/hoauth2-0.4.2:=[profile?] =dev-haskell/hslogger-1:=[profile?] =dev-haskell/hstringtemplate-0.6:=[profile?] =dev-haskell/http-4000.0:=[profile?] =dev-haskell/http-client-tls-0.2.2:=[profile?] =dev-haskell/http-conduit-2.1.4:=[profile?] =dev-haskell/json-0.4:=[profile?] =dev-haskell/old-locale-1:=[profile?] dev-haskell/old-time:=[profile?] >=dev-haskell/pandoc-types-1.12.3:=[profile?] =dev-haskell/recaptcha-0.1:=[profile?] dev-haskell/safe:=[profile?] >dev-haskell/sha-1:=[profile?] =dev-haskell/tagsoup-0.13:=[profile?] dev-haskell/text:=[profile?] >=dev-haskell/uri-0.1:=[profile?] =dev-haskell/url-2.1:=[profile?] =dev-haskell/utf8-string-0.3:=[profile?] =dev-haskell/uuid-1.3:=[profile?] =dev-haskell/xml-1.3.5:=[profile?] >=dev-haskell/xss-sanitize-0.3:=[profile?] =dev-haskell/zlib-0.5:=[profile?] =dev-lang/ghc-7.4.1:= network-uri? ( >=dev-haskell/network-2.6:=[profile?] >=dev-haskell/network-uri-2.6:=[profile?] =dev-haskell/network-2:=[profile?] =dev-haskell/http-4000.2.4:= >=dev-haskell/mtl-2.1:= =dev-haskell/parsec-3.1:= =dev-haskell/stm-2.3:= =dev-haskell/utf8-string-0.3:= =dev-haskell/x11-1.6.1:= >=dev-lang/ghc-7.8.2:= x11-libs/libXrandr x11-libs/libXrender alsa? ( >=dev-haskell/alsa-core-0.5:= dev-haskell/alsa-mixer-0.2.0.2:= ) dbus? ( >=dev-haskell/dbus-0.10:= ) inotify? ( >=dev-haskell/hinotify-0.3:= =dev-haskell/libmpd-0.9:= =dev-haskell/dbus-0.10:= ) timezone? ( >=dev-haskell/timezone-olson-0.1:= =dev-haskell/timezone-series-0.1:= =dev-haskell/x11-xft-0.2:= =dev-haskell/cabal-1.18.1.3 +DESCRIPTION=A Minimalistic Text Based Status Bar +EAPI=6 +HOMEPAGE=http://xmobar.org +IUSE=alsa dbus inotify mpd mpris timezone wifi with_conduit with_uvmeter xft xpm +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/http-4000.2.4:= >=dev-haskell/mtl-2.1:= =dev-haskell/parsec-3.1:= =dev-haskell/stm-2.3:= =dev-haskell/utf8-string-0.3:= =dev-haskell/x11-1.6.1:= >=dev-lang/ghc-7.8.2:= x11-libs/libXrandr x11-libs/libXrender alsa? ( >=dev-haskell/alsa-core-0.5:= dev-haskell/alsa-mixer-0.2.0.2:= ) dbus? ( >=dev-haskell/dbus-0.10:= ) inotify? ( >=dev-haskell/hinotify-0.3:= =dev-haskell/libmpd-0.9:= =dev-haskell/dbus-0.10:= ) timezone? ( >=dev-haskell/timezone-olson-0.1:= =dev-haskell/timezone-series-0.1:= =dev-haskell/x11-xft-0.2:= =kde-base/kwin-4.9:4[aqua=] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=kde-plasma/kwin:4 >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=Crystal decoration theme for KDE4.x EAPI=5 HOMEPAGE=http://kde-look.org/content/show.php/Crystal?content=75140 IUSE=debug aqua KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=>=kde-base/kwin-4.9:4[aqua=] kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=kde-plasma/kwin:4 kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4 SRC_URI=http://kde-look.org/CONTENT/content-files/75140-crystal-2.2.1.tar.bz2 _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=c439a3fd702c9ef4c6c8f29705079090 +_md5_=2d0801c50c5f51c39b302215175c9781 diff --git a/metadata/md5-cache/x11-themes/dekorator-0.5.1-r1 b/metadata/md5-cache/x11-themes/dekorator-0.5.1-r1 index d54c2a2a4729..11f689ae9c33 100644 --- a/metadata/md5-cache/x11-themes/dekorator-0.5.1-r1 +++ b/metadata/md5-cache/x11-themes/dekorator-0.5.1-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kwin-4.4:4[aqua=] media-libs/qimageblitz >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=kde-plasma/kwin:4 media-libs/qimageblitz >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=A window decoration engine for KDE EAPI=5 HOMEPAGE=http://www.kde-look.org/content/show.php/Nitrogen?content=87921 IUSE=debug aqua KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=>=kde-base/kwin-4.4:4[aqua=] media-libs/qimageblitz kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=kde-plasma/kwin:4 media-libs/qimageblitz kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4 SRC_URI=http://www.kde-look.org/CONTENT/content-files/87921-dekorator-0.5.1.tar.bz2 _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=cebece2508708c3f169999fc7e5d02fb +_md5_=d99dcf5aa5adc5c114cf052551fc7438 diff --git a/metadata/md5-cache/x11-themes/nitrogen-3.3.3 b/metadata/md5-cache/x11-themes/nitrogen-3.3.3 index 719b149ee756..fab4ac985ce0 100644 --- a/metadata/md5-cache/x11-themes/nitrogen-3.3.3 +++ b/metadata/md5-cache/x11-themes/nitrogen-3.3.3 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kwin-4.4:4[aqua=] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=kde-plasma/kwin:4 >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=A window decoration for KDE EAPI=5 HOMEPAGE=http://kde-look.org/content/show.php/Nitrogen?content=99551 @@ -10,4 +10,4 @@ RDEPEND=kde-frameworks/oxygen-icons l10n_de? ( >=kde-apps/kde4-l10n-4.4:4[aqua=, SLOT=4 SRC_URI=http://www.kde-look.org/CONTENT/content-files/99551-kde4-windeco-nitrogen-3.3.3-Source.tar.gz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=aa2af3564b23c64c3133342d0dba2d33 +_md5_=8e803bbc23ec1528387da771725c2b33 diff --git a/metadata/md5-cache/x11-themes/skulpture-0.2.4-r1 b/metadata/md5-cache/x11-themes/skulpture-0.2.4-r1 index 43c880f4b6ae..3e261fe6bf7d 100644 --- a/metadata/md5-cache/x11-themes/skulpture-0.2.4-r1 +++ b/metadata/md5-cache/x11-themes/skulpture-0.2.4-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kwin-4.4:4[aqua=] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +DEPEND=kde-plasma/kwin:4 >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.12 dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] DESCRIPTION=Classical style and window decorations for KDE EAPI=5 HOMEPAGE=http://skulpture.maxiom.de/ IUSE=debug aqua KEYWORDS=amd64 x86 LICENSE=GPL-3 -RDEPEND=>=kde-base/kwin-4.4:4[aqua=] kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=kde-plasma/kwin:4 kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4 SRC_URI=http://kde-look.org/CONTENT/content-files/59031-skulpture-0.2.4.tar.gz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=3dc5b8ab22c8a5095815c448fa7dbc67 +_md5_=4c16f2874f14298284e2acebc5b3e708 diff --git a/metadata/md5-cache/x11-themes/smaragd-0.0.7 b/metadata/md5-cache/x11-themes/smaragd-0.0.7 index 2931af8e8400..b1479cd21a31 100644 --- a/metadata/md5-cache/x11-themes/smaragd-0.0.7 +++ b/metadata/md5-cache/x11-themes/smaragd-0.0.7 @@ -6,8 +6,8 @@ HOMEPAGE=http://kde-look.org/content/show.php?content=125162 IUSE=debug aqua KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=>=kde-base/libkworkspace-4.4:4[aqua=] x11-libs/cairo >=kde-base/kwin-4.4:4[aqua=] kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] +RDEPEND=>=kde-base/libkworkspace-4.4:4[aqua=] x11-libs/cairo kde-plasma/kwin:4 kde-frameworks/oxygen-icons dev-lang/perl >=dev-qt/qt3support-4.8.5:4[accessibility] >=dev-qt/qtcore-4.8.5:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.5:4 >=dev-qt/designer-4.8.5:4 >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] >=dev-qt/qtscript-4.8.5:4 >=dev-qt/qtsql-4.8.5:4[qt3support] >=dev-qt/qtsvg-4.8.5:4 >=dev-qt/qttest-4.8.5:4 >=kde-base/kdelibs-4.14.22:4[aqua=] SLOT=4 SRC_URI=http://www.kde-look.org/CONTENT/content-files/125162-smaragd-0.0.7.tar.gz _eclasses_=cmake-utils f3d38665b0a86e08ba3a5473cdbfafd3 eutils b83a2420b796f7c6eff682679d08fe25 fdo-mime 92d07846ea8ea54172f8c0112a47ae3d flag-o-matic 8632fcd33a047954f007dee9a137bdcc gnome2-utils c6dcdf3a2c22b578b16adb945dc85c35 kde4-base dd93ab23a8421a2802d4c139cd30a3c0 kde4-functions 1aadb525279ddf31ca3c8e6d56ebecb5 multilib 165fc17c38d1b11dac2008280dab6e80 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c virtualx 86c9305a59b3e0459e7fbef3a5f30b96 xdg-utils e2b2bd56125ce8cf59ce30c642b59d48 -_md5_=d6a8f9fd859f6901e3df4476ee0ec9e1 +_md5_=31644add0a41ee8d4de6a5a09a8f9faa diff --git a/metadata/md5-cache/x11-wm/xmonad-0.12 b/metadata/md5-cache/x11-wm/xmonad-0.12 index 9a8dbebd914a..533b40adf72e 100644 --- a/metadata/md5-cache/x11-wm/xmonad-0.12 +++ b/metadata/md5-cache/x11-wm/xmonad-0.12 @@ -8,7 +8,8 @@ KEYWORDS=amd64 ~ppc64 ~sparc x86 LICENSE=BSD PDEPEND=default-term? ( x11-terms/xterm ) x11-apps/xmessage RDEPEND=dev-haskell/data-default:=[profile?] dev-haskell/extensible-exceptions:=[profile?] dev-haskell/mtl:=[profile?] dev-haskell/setlocale:=[profile?] >=dev-haskell/utf8-string-0.3:=[profile?] =dev-haskell/x11-1.5:=[profile?] =dev-lang/ghc-7.4.1:= +RESTRICT=test SLOT=0/0.12 SRC_URI=mirror://hackage/packages/archive/xmonad/0.12/xmonad-0.12.tar.gz _eclasses_=eutils b83a2420b796f7c6eff682679d08fe25 ghc-package e62b77bfa6dbc88a6576bb54b386edd7 haskell-cabal 97b63ddb1a3a1bd20b3ba37bd5055a39 multilib 165fc17c38d1b11dac2008280dab6e80 multiprocessing e32940a7b2a9992ad217eccddb84d548 toolchain-funcs 1b1da0c45c555989dc5d832b54880783 versionator 99ae9d758cbe7cfed19170e7d48f5a9c -_md5_=2b2b840dd5d41356103e21c67b92c8b2 +_md5_=1f1cf14250c878d292f2dde0b6b2070a diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 52a3e750a369..0f5a36ce062c 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Sun, 06 Nov 2016 08:13:14 +0000 +Mon, 07 Nov 2016 05:43:25 +0000 diff --git a/metadata/projects.xml b/metadata/projects.xml index 03b4d8bea940..37c0b8228648 100644 --- a/metadata/projects.xml +++ b/metadata/projects.xml @@ -677,6 +677,11 @@ Pavlos Ratis Member + + mrueg@gentoo.org + Manuel Rüger + Member + ultrabug@gentoo.org Ultrabug diff --git a/metadata/timestamp b/metadata/timestamp index 8d6174e43a6b..3075fa766594 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Sun Nov 6 08:09:25 UTC 2016 +Mon Nov 7 05:39:34 UTC 2016 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 23509331bc85..74f8fefeca50 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Sun, 06 Nov 2016 08:30:01 +0000 +Mon, 07 Nov 2016 06:00:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 9eb22ab7b997..63fa9eb99839 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1478419801 Sun 06 Nov 2016 08:10:01 AM UTC +1478497201 Mon 07 Nov 2016 05:40:01 AM UTC diff --git a/metadata/xml-schema/timestamp.chk b/metadata/xml-schema/timestamp.chk index 52a3e750a369..0f5a36ce062c 100644 --- a/metadata/xml-schema/timestamp.chk +++ b/metadata/xml-schema/timestamp.chk @@ -1 +1 @@ -Sun, 06 Nov 2016 08:13:14 +0000 +Mon, 07 Nov 2016 05:43:25 +0000 diff --git a/net-fs/torus/Manifest b/net-fs/torus/Manifest new file mode 100644 index 000000000000..bce1aad0dad1 --- /dev/null +++ b/net-fs/torus/Manifest @@ -0,0 +1,3 @@ +DIST glide-0.10.2.tar.gz 204775 SHA256 f0153d88f12fb36419cb616d9922ae95b274ac7c9ed9b043701f187da5834eac SHA512 5e8ecf20de7ce53236d16e52e98acf46f4611d84b742665009d4aea44efe9ba09344f9fe5a6d3f6d6b67ba168ac0f825f620ea419a24ddd826a3ecd83aeea320 WHIRLPOOL 5ea7e59e06cb88c080fcd11af090188a1df8c1dfc8503c0a7c70cc57522b8cedcddc9f1a8fba5ad0c1236f3635d4a8038121f038674f840e44e22d3fe8bbccb2 +DIST gogo-protobuf-0.3.tar.gz 2116795 SHA256 82222a5ad3bdc53fb60851df05acc16e7578932984c78e32abd05cb610127308 SHA512 57e1b1715d4811800da8cf9f2c72d202deae622d89715d7eff2ff0c406a0ea3778c187443abb17b072ae6fe57382844807f103837032759dab5420c860b99fb8 WHIRLPOOL 2c900a93d698d946949e8ef830c9940ea43c8faaf667eec7ec99ad58f46e5de9e59e43182d675f419196caacb08af2a49e63146998c5ccbef379c3920997511f +DIST torus-0.1.2.tar.gz 8319943 SHA256 1639ff6dc739daa44259bf8fe7573301702fae86d136a89e00401122d37f9018 SHA512 46d56f560d92cf0b0c357d57d5249584f9a8444dc6bb0c3e00db3a288eea496fbc19c73be87ac9d534a4707ed74769e91354c95bac4b354fc62104a006239912 WHIRLPOOL c12151246943d25304e3074baa4616d478626ff9a0a092dbbf31ba35e2ca265257f2ef6438d64c4e65535b61d32b7b9c5a65b41209c0683f2e8f95aef50b0258 diff --git a/net-fs/torus/metadata.xml b/net-fs/torus/metadata.xml new file mode 100644 index 000000000000..d39e23bd6dca --- /dev/null +++ b/net-fs/torus/metadata.xml @@ -0,0 +1,11 @@ + + + + + zmedico@gentoo.org + Zac Medico + + + coreos/torus + + diff --git a/net-fs/torus/torus-0.1.2.ebuild b/net-fs/torus/torus-0.1.2.ebuild new file mode 100644 index 000000000000..2c7e7746a5b8 --- /dev/null +++ b/net-fs/torus/torus-0.1.2.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGO_PN="github.com/coreos/${PN}/..." +SRC_URI="https://${EGO_PN}/releases/download/v${PV}/${PN}_v${PV}_src.tar.gz -> ${P}.tar.gz + https://github.com/Masterminds/glide/archive/0.10.2.tar.gz -> glide-0.10.2.tar.gz + test? ( https://github.com/gogo/protobuf/archive/v0.3.tar.gz -> gogo-protobuf-0.3.tar.gz )" + +DESCRIPTION="A distributed storage system coordinated through etcd" +HOMEPAGE="https://${EGO_PN%/*}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc test" + +DEPEND=">=dev-lang/go-1.6:=" +RDEPEND="" + +get_archive_go_package() { + local archive=${1} uri x + for x in ${SRC_URI}; do + if [[ ${x} == http* ]]; then + uri=${x} + elif [[ ${x} == ${archive} ]]; then + break + fi + done + uri=${uri#https://} + uri=${uri%/archive/*} + case ${uri} in + ${EGO_PN%/*}*) + echo "${EGO_PN%/*}|${PN}_*" + ;; + *) + echo "${uri}|${uri##*/}-*" + ;; + esac +} + +unpack_go_packages() { + local go_package x + # Unpack packages to appropriate locations for GOPATH + for x in ${A}; do + unpack ${x} + if [[ ${x} == *.tar.gz ]]; then + go_package=$(get_archive_go_package ${x}) + x=${go_package#*|} + go_package=${go_package%|*} + mkdir -p src/${go_package%/*} + mv ${x} src/${go_package} || die + fi + done +} + +src_unpack() { + mkdir "${S}" || die + cd "${S}" || die + unpack_go_packages +} + +src_compile() { + GOPATH="${S}" go install -v -work -x github.com/Masterminds/glide/... || die + mkdir -p "${S}/src/${EGO_PN%/*}/tools" || die + mv "${S}/bin/glide" "${S}/src/${EGO_PN%/*}/tools/glide" || die + GOPATH="${S}" \ + emake -C "${S}/src/${EGO_PN%/*}" VERSION=v${PV} build +} + +src_test() { + GOPATH="${S}" \ + emake -C "${S}/src/${EGO_PN%/*}" VERSION=v${PV} test +} + +src_install() { + cd "${S}/src/${EGO_PN%/*}"|| die + dobin bin/${PN}* + dodoc README.md + use doc && dodoc -r Documentation +} diff --git a/net-libs/libkpeople/libkpeople-0.3.0.ebuild b/net-libs/libkpeople/libkpeople-0.3.0.ebuild index 321a220a21af..fbd9eadd4707 100644 --- a/net-libs/libkpeople/libkpeople-0.3.0.ebuild +++ b/net-libs/libkpeople/libkpeople-0.3.0.ebuild @@ -24,7 +24,7 @@ IUSE="debug examples semantic-desktop test" RDEPEND=" $(add_kdeapps_dep kdepimlibs) - semantic-desktop? ( $(add_kdebase_dep baloo) ) + semantic-desktop? ( kde-frameworks/baloo:4 ) " DEPEND="${RDEPEND} sys-devel/gettext diff --git a/net-mail/dovecot/dovecot-2.2.25.ebuild b/net-mail/dovecot/dovecot-2.2.25.ebuild index 269d6a3bc5f1..330cdcee696b 100644 --- a/net-mail/dovecot/dovecot-2.2.25.ebuild +++ b/net-mail/dovecot/dovecot-2.2.25.ebuild @@ -25,7 +25,7 @@ HOMEPAGE="http://www.dovecot.org/" SLOT="0" LICENSE="LGPL-2.1 MIT" -KEYWORDS="alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~s390 ~x86" +KEYWORDS="alpha ~amd64 ~arm hppa ~ppc ppc64 ~s390 ~x86" IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail" IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox" diff --git a/net-misc/chrony/chrony-2.4-r1.ebuild b/net-misc/chrony/chrony-2.4-r1.ebuild new file mode 100644 index 000000000000..45904cc4c0b9 --- /dev/null +++ b/net-misc/chrony/chrony-2.4-r1.ebuild @@ -0,0 +1,120 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils systemd toolchain-funcs + +DESCRIPTION="NTP client and server programs" +HOMEPAGE="http://chrony.tuxfamily.org/" +SRC_URI="http://download.tuxfamily.org/${PN}/${P/_/-}.tar.gz" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~amd64" +IUSE="caps +cmdmon html ipv6 libedit +ntp +phc pps readline +refclock +rtc selinux +adns" +REQUIRED_USE=" + ?? ( libedit readline ) +" + +CDEPEND=" + caps? ( sys-libs/libcap ) + libedit? ( dev-libs/libedit ) + readline? ( >=sys-libs/readline-4.1-r4:= ) +" +DEPEND=" + ${CDEPEND} + html? ( dev-ruby/asciidoctor ) + pps? ( net-misc/pps-tools ) +" +RDEPEND=" + ${CDEPEND} + selinux? ( sec-policy/selinux-chronyd ) +" + +RESTRICT=test + +S="${WORKDIR}/${P/_/-}" + +src_prepare() { + sed -i \ + -e 's:/etc/chrony\.:/etc/chrony/chrony.:g' \ + -e 's:/var/run:/run:g' \ + conf.c doc/*.man.in examples/* || die + + default +} + +src_configure() { + tc-export CC + + local CHRONY_EDITLINE + # ./configure legend: + # --disable-readline : disable line editing entirely + # --without-readline : do not use sys-libs/readline (enabled by default) + # --without-editline : do not use dev-libs/libedit (enabled by default) + if ! use readline && ! use libedit; then + CHRONY_EDITLINE='--disable-readline' + else + CHRONY_EDITLINE+=" $(usex readline '' --without-readline)" + CHRONY_EDITLINE+=" $(usex libedit '' --without-editline)" + fi + + # not an autotools generated script + local CHRONY_CONFIGURE=" + ./configure \ + $(usex caps '' --disable-linuxcaps) \ + $(usex cmdmon '' --disable-cmdmon) \ + $(usex ipv6 '' --disable-ipv6) \ + $(usex ntp '' --disable-ntp) \ + $(usex phc '' --disable-phc) \ + $(usex pps '' --disable-pps) \ + $(usex rtc '' --disable-rtc) \ + $(usex refclock '' --disable-refclock) \ + $(usex adns '' --disable-asyncdns) \ + ${CHRONY_EDITLINE} \ + ${EXTRA_ECONF} \ + --docdir=/usr/share/doc/${PF} \ + --chronysockdir=/run/chrony \ + --mandir=/usr/share/man \ + --prefix=/usr \ + --sysconfdir=/etc/chrony \ + --disable-sechash \ + --without-nss \ + --without-tomcrypt + " + + # print the ./configure call to aid in future debugging + einfo ${CHRONY_CONFIGURE} + bash ${CHRONY_CONFIGURE} || die +} + +src_compile() { + emake all docs $(usex html '' 'ADOC=true') +} + +src_install() { + default + + newinitd "${FILESDIR}"/chronyd.init-r1 chronyd + newconfd "${FILESDIR}"/chronyd.conf chronyd + + insinto /etc/${PN} + newins examples/chrony.conf.example1 chrony.conf + + docinto examples + dodoc examples/*.example* + + if use html; then + docinto html + dodoc doc/*.html + fi + + keepdir /var/{lib,log}/chrony + + insinto /etc/logrotate.d + newins "${FILESDIR}"/chrony-2.4-r1.logrotate chrony + + systemd_newunit "${FILESDIR}"/chronyd.service-r2 chronyd.service + systemd_enable_ntpunit 50-chrony chronyd.service +} diff --git a/net-misc/chrony/chrony-9999.ebuild b/net-misc/chrony/chrony-9999.ebuild index 13709c01b0b1..bb75309c7f91 100644 --- a/net-misc/chrony/chrony-9999.ebuild +++ b/net-misc/chrony/chrony-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit eutils git-r3 systemd toolchain-funcs DESCRIPTION="NTP client and server programs" @@ -12,7 +12,7 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="caps +cmdmon ipv6 libedit +ntp +phc +pps readline +refclock +rtc selinux +adns" +IUSE="caps +cmdmon ipv6 libedit +ntp +phc pps readline +refclock +rtc selinux +adns" REQUIRED_USE=" ?? ( libedit readline ) " @@ -24,7 +24,8 @@ CDEPEND=" " DEPEND=" ${CDEPEND} - sys-apps/texinfo + dev-ruby/asciidoctor + pps? ( net-misc/pps-tools ) " RDEPEND=" ${CDEPEND} @@ -39,7 +40,9 @@ src_prepare() { sed -i \ -e 's:/etc/chrony\.:/etc/chrony/chrony.:g' \ -e 's:/var/run:/run:g' \ - conf.c chrony.texi.in examples/* || die + conf.c doc/*.adoc examples/* || die + + default } src_configure() { @@ -73,7 +76,6 @@ src_configure() { ${EXTRA_ECONF} \ --docdir=/usr/share/doc/${PF} \ --chronysockdir=/run/chrony \ - --infodir=/usr/share/info \ --mandir=/usr/share/man \ --prefix=/usr \ --sysconfdir=/etc/chrony \ @@ -94,20 +96,22 @@ src_compile() { src_install() { default - doinfo chrony.info* - newinitd "${FILESDIR}"/chronyd.init-r1 chronyd newconfd "${FILESDIR}"/chronyd.conf chronyd insinto /etc/${PN} newins examples/chrony.conf.example1 chrony.conf + docinto examples dodoc examples/*.example* + docinto html + dodoc doc/*.html + keepdir /var/{lib,log}/chrony insinto /etc/logrotate.d - newins "${FILESDIR}"/chrony-2.2.logrotate chrony + newins "${FILESDIR}"/chrony-2.4-r1.logrotate chrony systemd_newunit "${FILESDIR}"/chronyd.service-r2 chronyd.service systemd_enable_ntpunit 50-chrony chronyd.service diff --git a/net-misc/knemo/knemo-0.7.7.ebuild b/net-misc/knemo/knemo-0.7.7.ebuild index 815bfe2a79cb..bac22afed173 100644 --- a/net-misc/knemo/knemo-0.7.7.ebuild +++ b/net-misc/knemo/knemo-0.7.7.ebuild @@ -18,10 +18,10 @@ KEYWORDS="amd64 x86" IUSE="debug wifi" DEPEND=" - $(add_kdebase_dep systemsettings) dev-libs/libnl:3 dev-qt/qtsql:4[sqlite] kde-plasma/ksysguard:4 + kde-plasma/systemsettings:4 sys-apps/net-tools wifi? ( net-wireless/wireless-tools ) " diff --git a/net-misc/openvswitch/openvswitch-2.6.0.ebuild b/net-misc/openvswitch/openvswitch-2.6.0.ebuild index 915acb9ebffb..8b1f7fe6116c 100644 --- a/net-misc/openvswitch/openvswitch-2.6.0.ebuild +++ b/net-misc/openvswitch/openvswitch-2.6.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://openvswitch.org/releases/${P}.tar.gz" LICENSE="Apache-2.0 GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="debug modules monitor +ssl" RDEPEND=" diff --git a/net-misc/pps-tools/Manifest b/net-misc/pps-tools/Manifest index f7e0a2edda6d..6dfdd34fd733 100644 --- a/net-misc/pps-tools/Manifest +++ b/net-misc/pps-tools/Manifest @@ -1,2 +1 @@ -DIST pps-tools-git-0.0.20110710.tgz 6590 SHA256 1557da95e77684997bb46f3a30eafd665b409c507b3df1c3aa5e1200c2db7215 SHA512 37d30e6a6919a6503f95bdf6c1b8cdb52e1660d006f2862073c0e6c650cdbd80bb237bc80588c33d850e1e7013448478738b008e18c8056e4c24ad00831d2601 WHIRLPOOL 128dd4976997a078f63ea57721b9ff51e5150a97778190362416c4fb337f63d247d88ed4b56cc6b68efe0d5d392888357a59d845490cdb056531c8f12c51f48c DIST pps-tools-git-0.0.20120407.tar.gz 13619 SHA256 eb020d40a3938546620889bb6ecdeead2c188e87ffd43c3ae04a41e5998e7997 SHA512 d2014262b0594959f337c25df859591d0737994decec663389392d3c7e53376ded2485713f6364c4833d8d7c40b4b0c3b88865ab85e481bcc2e81e35931d84de WHIRLPOOL 03ff250da63ff2ca2f9111b8207608e0e989c376a5af51b919d4fb8889936e00db2b15d14309dda68e92e13c7478f81e5a2d72544eefa73eb93287dd0396fc14 diff --git a/net-misc/pps-tools/pps-tools-0.0.20110710.ebuild b/net-misc/pps-tools/pps-tools-0.0.20110710.ebuild deleted file mode 100644 index ea650bc39a27..000000000000 --- a/net-misc/pps-tools/pps-tools-0.0.20110710.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=3 - -inherit eutils - -GITHUB_USER="ago" -PV_COMMIT="74c32c318f63bca5b5db" - -DESCRIPTION="User-space tools for LinuxPPS" -HOMEPAGE="http://wiki.enneenne.com/index.php/LinuxPPS_installation" -SRC_URI="https://github.com/${GITHUB_USER}/${PN}/tarball/${PV_COMMIT} -> ${PN}-git-${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND="" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${GITHUB_USER}-${PN}-${PV_COMMIT:0:7}" - -src_prepare() { - sed -i \ - -e '/^CFLAGS.*ggdb/d' \ - -e '/^CFLAGS.*O2/s,-O2,,g' \ - -e '/^\.PHONY:/s,all,,g' \ - Makefile -} - -src_compile() { - emake depend - emake all -} - -src_install() { - dodir /usr/bin /usr/include - emake install DESTDIR="${D}" -} diff --git a/net-misc/rabbitmq-server/rabbitmq-server-3.6.5.ebuild b/net-misc/rabbitmq-server/rabbitmq-server-3.6.5.ebuild index b7c6982ec5bd..13a54433dcbb 100644 --- a/net-misc/rabbitmq-server/rabbitmq-server-3.6.5.ebuild +++ b/net-misc/rabbitmq-server/rabbitmq-server-3.6.5.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://www.rabbitmq.com/releases/rabbitmq-server/v${PV}/rabbitmq-server LICENSE="GPL-2 MPL-1.1" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="" RDEPEND="dev-lang/erlang[ssl]" diff --git a/net-misc/remmina/Manifest b/net-misc/remmina/Manifest index 76f435e5dbe7..0a72bd212dc5 100644 --- a/net-misc/remmina/Manifest +++ b/net-misc/remmina/Manifest @@ -1,3 +1,3 @@ -DIST remmina-1.2.0_rc14.tar.gz 940432 SHA256 00c854cd08438399f3788606bf5ee6e4fad48016bab25b3c853c93e85e371050 SHA512 02d5db7c061b760d2b101e2e5b906015c8192b5cc30d75ce649c522e4d7f53ade2dff65324c244139bfce491d31a413342a330dfe0b217af5847e1adbb53935f WHIRLPOOL 31ac11f07665d05e4d48712b8364670c8529a9a96a76809c28fa52327b5a75efff561b7ae4e38f70c8579e15356b7b8ab98ed8af30bc967a8a75c8b913bb7e3e DIST remmina-1.2.0_rc15.tar.gz 968892 SHA256 ba3ab12d1701cf00c09edddbd65293c1b9024195297cce3e8812238e0b5b82f7 SHA512 f899eb57688f1106c607fefc59e44be006e804259e681604747e8af1dcf8527dcae3ca8a1a3dd868a079f37870184100adfde33dc9181bab6a067491147d6aba WHIRLPOOL e79cca76c6585e8531ab4386ad3a6125dd98f917239369e88794d672661a0f188f680fe0aa5c09f09cb1d54c1b038120db4de2754e995fe58604b5638324f43d +DIST remmina-1.2.0_rc16.tar.gz 1008438 SHA256 edb347f9e4d0a2e682f7ffd22caa364b477653a1aca31d1c1922a86d81df4995 SHA512 a6d2fb95a3fc68ee7ce4c8205c775cbc7bb83fa2f90b68d04f355b4ca8b4d0956a29ecbc028260c432b55c582802e9f243ad62426212d9fd0f02f7e50a56856f WHIRLPOOL a5d136e1abaeafcc1ad070c400a0c7456e29d1406ea3542add5eb36c4cb1e32cedf0a2bac855298a5e1e703e19774d007ec70c822c49ec13a9f565123b33181d DIST remmina-1.2.0_rc3.tar.gz 791812 SHA256 bfe352cd87b031585d867d519c3a36ee117cca9cc79efb7c11cd11d0f9697208 SHA512 e740cbeda40bfca96c846c77140120ff92803f1bf5fff15c3eb3ba90e7ebe9ccbfa04825ad3fca96c09a5440f496934711141dedc665572965bf0d9c32e053da WHIRLPOOL 1686a4e029a9cd3019b2dc0b59c715cc67b66d6c75337c7032a72ee0228e1df7d7dfd8dc7fb7f51d6298a1c886b29d45b7352bf7a9e025ecb1cd184b08d385ed diff --git a/net-misc/remmina/files/remmina-1.0.0_p20121004-avahi.patch b/net-misc/remmina/files/remmina-1.0.0_p20121004-avahi.patch deleted file mode 100644 index abb058a0ab67..000000000000 --- a/net-misc/remmina/files/remmina-1.0.0_p20121004-avahi.patch +++ /dev/null @@ -1,68 +0,0 @@ -https://bugs.gentoo.org/show_bug.cgi?id=438060 -https://github.com/FreeRDP/Remmina/issues/120 - -diff --git a/cmake/FindAVAHI.cmake b/cmake/FindAVAHI.cmake -index 0a5cc21..91878dc 100644 ---- a/cmake/FindAVAHI.cmake -+++ b/cmake/FindAVAHI.cmake -@@ -17,29 +17,42 @@ - # Foundation, Inc., 59 Temple Place, Suite 330, - # Boston, MA 02111-1307, USA. - --if(GTK3_FOUND) -- set(_AVAHI_LIB_NAME avahi-ui-gtk3) -- set(_AVAHI_PKG_NAME avahi-ui-gtk3>=0.6.30 avahi-client>=0.6.30) --else() -- set(_AVAHI_LIB_NAME avahi-ui) -- set(_AVAHI_PKG_NAME avahi-ui>=0.6.30 avahi-client>=0.6.30) -+include(FindPkgConfig) -+ -+if(PKG_CONFIG_FOUND) -+ pkg_check_modules(PC_AVAHI_CLIENT avahi-client) -+ if(GTK3_FOUND) -+ set(_AVAHI_UI_LIB_NAME avahi-ui-gtk3) -+ set(_AVAHI_UI_PKG_NAME avahi-ui-gtk3>=0.6.30 avahi-client>=0.6.30) -+ else() -+ set(_AVAHI_UI_LIB_NAME avahi-ui) -+ set(_AVAHI_UI_PKG_NAME avahi-ui>=0.6.30 avahi-client>=0.6.30) -+ endif() -+ pkg_check_modules(PC_AVAHI_UI ${_AVAHI_UI_PKG_NAME}) - endif() - --find_package(PkgConfig) --pkg_check_modules(PC_AVAHI ${_AVAHI_PKG_NAME}) - --find_path(AVAHI_INCLUDE_DIR avahi-ui/avahi-ui.h -- HINTS ${PC_AVAHI_INCLUDEDIR} ${PC_AVAHI_INCLUDE_DIRS}) -- --find_library(AVAHI_LIBRARY NAMES ${_AVAHI_LIB_NAME} -- HINTS ${PC_AVAHI_LIBDIR} ${PC_AVAHI_LIBRARY_DIRS}) -+find_library(AVAHI_COMMON_LIBRARY NAMES avahi-common PATHS ${PC_AVAHI_CLIENT_LIBRARY_DIRS}) -+if(AVAHI_COMMON_LIBRARY) -+ set(AVAHI_COMMON_FOUND TRUE) -+endif() - --include(FindPackageHandleStandardArgs) -+find_library(AVAHI_CLIENT_LIBRARY NAMES avahi-client PATHS ${PC_AVAHI_CLIENT_LIBRARY_DIRS}) -+if(AVAHI_CLIENT_LIBRARY) -+ set(AVAHI_CLIENT_FOUND TRUE) -+endif() - --find_package_handle_standard_args(AVAHI DEFAULT_MSG AVAHI_LIBRARY AVAHI_INCLUDE_DIR) -+find_path(AVAHI_UI_INCLUDE_DIR avahi-ui/avahi-ui.h PATHS ${PC_AVAHI_UI_INCLUDE_DIRS}) -+find_library(AVAHI_UI_LIBRARY NAMES ${_AVAHI_UI_LIB_NAME} PATHS ${PC_AVAHI_UI_LIBRARY_DIRS}) -+if(AVAHI_UI_INCLUDE_DIR AND AVAHI_UI_LIBRARY) -+ set(AVAHI_UI_FOUND TRUE) -+endif() - --set(AVAHI_LIBRARIES ${AVAHI_LIBRARY}) --set(AVAHI_INCLUDE_DIRS ${AVAHI_INCLUDE_DIR}) -+FIND_PACKAGE_HANDLE_STANDARD_ARGS(AVAHI DEFAULT_MSG AVAHI_COMMON_FOUND AVAHI_CLIENT_FOUND AVAHI_UI_FOUND) - --mark_as_advanced(AVAHI_INCLUDE_DIR AVAHI_LIBRARY) -+if (AVAHI_FOUND) -+ set(AVAHI_INCLUDE_DIRS ${AVAHI_UI_INCLUDE_DIR}) -+ set(AVAHI_LIBRARIES ${AVAHI_COMMON_LIBRARY} ${AVAHI_CLIENT_LIBRARY} ${AVAHI_UI_LIBRARY}) -+endif() - -+mark_as_advanced(AVAHI_INCLUDE_DIRS AVAHI_LIBRARIES) diff --git a/net-misc/remmina/files/remmina-1.2.0_rc14-allow-disabling-libsecret.patch b/net-misc/remmina/files/remmina-1.2.0_rc14-allow-disabling-libsecret.patch deleted file mode 100644 index 06ce4c9cd476..000000000000 --- a/net-misc/remmina/files/remmina-1.2.0_rc14-allow-disabling-libsecret.patch +++ /dev/null @@ -1,22 +0,0 @@ -From d22cc5aa53f6c7312fb1da7a2a507155bab8fabc Mon Sep 17 00:00:00 2001 -From: Diogo Pereira -Date: Wed, 3 Aug 2016 01:15:52 +0100 -Subject: [PATCH] Allow disabling libsecret dependency - ---- - remmina-plugins-gnome/CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/remmina-plugins-gnome/CMakeLists.txt b/remmina-plugins-gnome/CMakeLists.txt -index adf2d03..b392ad6 100644 ---- a/remmina-plugins-gnome/CMakeLists.txt -+++ b/remmina-plugins-gnome/CMakeLists.txt -@@ -31,7 +31,7 @@ - # files in the program, then also delete it here. - - --find_package(Libsecret) -+find_suggested_package(Libsecret) - if(LIBSECRET_FOUND) - set(REMMINA_PLUGINS_GNOME_SRCS - src/glibsecret_plugin.c diff --git a/net-misc/remmina/metadata.xml b/net-misc/remmina/metadata.xml index 3687ff42043d..19b77f40684d 100644 --- a/net-misc/remmina/metadata.xml +++ b/net-misc/remmina/metadata.xml @@ -20,7 +20,6 @@ Add support for the net-misc/freerdp application - Enable libsecret support to store login credentials Support connecting to SPICE-enabled virtual machines Enable support for SSH/SFTP protocol; see also 'vte' Enable telepathy support diff --git a/net-misc/remmina/remmina-1.2.0_rc14.ebuild b/net-misc/remmina/remmina-1.2.0_rc14.ebuild deleted file mode 100644 index 10edf9e21854..000000000000 --- a/net-misc/remmina/remmina-1.2.0_rc14.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 -inherit cmake-utils gnome2-utils versionator - -MY_PV_MAIN=$(get_version_component_range 1-3) -MY_PV_RC=$(get_version_component_range 4) -MY_PV="${MY_PV_MAIN}-${MY_PV_RC//rc/rcgit.}" - -if [[ ${PV} != 9999 ]]; then - SRC_URI="https://github.com/FreeRDP/Remmina/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -else - inherit git-r3 - SRC_URI="" - EGIT_REPO_URI="git://github.com/FreeRDP/Remmina.git - https://github.com/FreeRDP/Remmina.git" -fi - -DESCRIPTION="A GTK+ RDP, VNC, XDMCP and SSH client" -HOMEPAGE="http://remmina.org/ https://github.com/FreeRDP/Remmina" - -LICENSE="GPL-2" -SLOT="0" -IUSE="ayatana crypt debug freerdp libsecret nls ssh telepathy vte webkit zeroconf" -REQUIRED_USE="ssh? ( vte )" #546886 - -RDEPEND=" - >=dev-libs/glib-2.31.18:2 - >=net-libs/libvncserver-0.9.8.2 - x11-libs/libxkbfile - x11-libs/gdk-pixbuf - x11-libs/gtk+:3 - x11-libs/libX11 - virtual/freedesktop-icon-theme - ayatana? ( dev-libs/libappindicator:3 ) - crypt? ( dev-libs/libgcrypt:0= ) - freerdp? ( >=net-misc/freerdp-2 ) - libsecret? ( app-crypt/libsecret ) - ssh? ( net-libs/libssh[sftp] ) - telepathy? ( net-libs/telepathy-glib ) - vte? ( x11-libs/vte:2.91 ) - webkit? ( || ( net-libs/webkit-gtk:4 net-libs/webkit-gtk:3 ) ) - zeroconf? ( net-dns/avahi[gtk3] ) -" -DEPEND="${RDEPEND} - dev-util/intltool - virtual/pkgconfig - nls? ( sys-devel/gettext ) -" -RDEPEND+=" - x11-base/xorg-server[kdrive] - !net-misc/remmina-plugins -" - -DOCS=( README.md ) - -S="${WORKDIR}/Remmina-${MY_PV}" - -src_configure() { - local mycmakeargs=( - -DWITH_APPINDICATOR=$(usex ayatana) - -DWITH_GCRYPT=$(usex crypt) - -DWITH_FREERDP=$(usex freerdp) - -DWITH_LIBSECRET=$(usex libsecret) - -DWITH_GETTEXT=$(usex nls) - -DWITH_TRANSLATIONS=$(usex nls) - -DWITH_LIBSSH=$(usex ssh) - -DWITH_TELEPATHY=$(usex telepathy) - -DWITH_VTE=$(usex vte) - -DWITH_SURVEY=$(usex webkit) - -DWITH_AVAHI=$(usex zeroconf) - -DGTK_VERSION=3 - ) - cmake-utils_src_configure -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update - - elog "XDMCP support requires x11-base/xorg-server[xephyr]." -} - -pkg_postrm() { - gnome2_icon_cache_update -} diff --git a/net-misc/remmina/remmina-1.2.0_rc14-r1.ebuild b/net-misc/remmina/remmina-1.2.0_rc16.ebuild similarity index 55% rename from net-misc/remmina/remmina-1.2.0_rc14-r1.ebuild rename to net-misc/remmina/remmina-1.2.0_rc16.ebuild index 70c7b33dcbb7..5f67a1f183ea 100644 --- a/net-misc/remmina/remmina-1.2.0_rc14-r1.ebuild +++ b/net-misc/remmina/remmina-1.2.0_rc16.ebuild @@ -3,33 +3,23 @@ # $Id$ EAPI=6 -inherit cmake-utils gnome2-utils versionator -MY_PV_MAIN=$(get_version_component_range 1-3) -MY_PV_RC=$(get_version_component_range 4) -MY_PV="${MY_PV_MAIN}-${MY_PV_RC//rc/rcgit.}" +inherit cmake-utils eutils gnome2-utils -if [[ ${PV} != 9999 ]]; then - SRC_URI="https://github.com/FreeRDP/Remmina/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -else - inherit git-r3 - SRC_URI="" - EGIT_REPO_URI="git://github.com/FreeRDP/Remmina.git - https://github.com/FreeRDP/Remmina.git" -fi +MY_PV="${PV//_rc/-rcgit.}" DESCRIPTION="A GTK+ RDP, VNC, XDMCP and SSH client" -HOMEPAGE="http://remmina.org/ https://github.com/FreeRDP/Remmina" +HOMEPAGE="http://remmina.org/" +SRC_URI="https://github.com/FreeRDP/Remmina/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" -IUSE="ayatana crypt debug freerdp gnome-keyring nls ssh telepathy vte webkit zeroconf" -REQUIRED_USE="ssh? ( vte )" #546886 +KEYWORDS="~amd64 ~x86" +IUSE="ayatana crypt freerdp gnome-keyring nls spice ssh telepathy webkit zeroconf" RDEPEND=" - >=dev-libs/glib-2.31.18:2 - >=net-libs/libvncserver-0.9.8.2 + dev-libs/glib:2 + net-libs/libvncserver x11-libs/libxkbfile x11-libs/gdk-pixbuf x11-libs/gtk+:3 @@ -39,9 +29,10 @@ RDEPEND=" crypt? ( dev-libs/libgcrypt:0= ) freerdp? ( >=net-misc/freerdp-2 ) gnome-keyring? ( app-crypt/libsecret ) - ssh? ( net-libs/libssh[sftp] ) + spice? ( net-misc/spice-gtk[gtk3] ) + ssh? ( net-libs/libssh[sftp] + x11-libs/vte:2.91 ) telepathy? ( net-libs/telepathy-glib ) - vte? ( x11-libs/vte:2.91 ) webkit? ( net-libs/webkit-gtk:4 ) zeroconf? ( net-dns/avahi[gtk3] ) " @@ -50,15 +41,9 @@ DEPEND="${RDEPEND} virtual/pkgconfig nls? ( sys-devel/gettext ) " -RDEPEND+=" - x11-base/xorg-server[kdrive] - !net-misc/remmina-plugins -" DOCS=( README.md ) -PATCHES=( "${FILESDIR}/${P}-allow-disabling-libsecret.patch" ) - S="${WORKDIR}/Remmina-${MY_PV}" src_configure() { @@ -69,9 +54,10 @@ src_configure() { -DWITH_LIBSECRET=$(usex gnome-keyring) -DWITH_GETTEXT=$(usex nls) -DWITH_TRANSLATIONS=$(usex nls) + -DWITH_SPICE=$(usex spice) -DWITH_LIBSSH=$(usex ssh) + -DWITH_VTE=$(usex ssh) -DWITH_TELEPATHY=$(usex telepathy) - -DWITH_VTE=$(usex vte) -DWITH_SURVEY=$(usex webkit) -DWITH_AVAHI=$(usex zeroconf) -DGTK_VERSION=3 @@ -86,7 +72,11 @@ pkg_preinst() { pkg_postinst() { gnome2_icon_cache_update - elog "XDMCP support requires x11-base/xorg-server[xephyr]." + elog "To get additional features, some optional runtime dependencies" + elog "may be installed:" + elog "" + optfeature "encrypted VNC connections" net-libs/libvncserver[gcrypt] + optfeature "XDMCP support" x11-base/xorg-server[xephyr] } pkg_postrm() { diff --git a/net-misc/remmina/remmina-1.2.0_rc3.ebuild b/net-misc/remmina/remmina-1.2.0_rc3.ebuild deleted file mode 100644 index 4caf945dfe6b..000000000000 --- a/net-misc/remmina/remmina-1.2.0_rc3.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -inherit versionator gnome2-utils cmake-utils - -MY_PV_MAIN=$(get_version_component_range 1-3) -MY_PV_RC=$(get_version_component_range 4) -MY_PV="${MY_PV_MAIN}-${MY_PV_RC//rc/rcgit.}" - -if [[ ${PV} != 9999 ]]; then - SRC_URI="https://github.com/FreeRDP/Remmina/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 ~x86" -else - inherit git-2 - SRC_URI="" - EGIT_REPO_URI="git://github.com/FreeRDP/Remmina.git - https://github.com/FreeRDP/Remmina.git" - KEYWORDS="" -fi - -DESCRIPTION="A GTK+ RDP, VNC, XDMCP and SSH client" -HOMEPAGE="http://freerdp.github.io/Remmina/" - -LICENSE="GPL-2" -SLOT="0" -IUSE="ayatana avahi crypt debug freerdp gnome-keyring nls ssh telepathy vte" - -RDEPEND=" - x11-libs/gtk+:3 - >=dev-libs/glib-2.31.18:2 - >=net-libs/libvncserver-0.9.8.2 - x11-libs/libxkbfile - x11-themes/gnome-icon-theme - x11-libs/gdk-pixbuf - x11-libs/libX11 - avahi? ( net-dns/avahi[gtk3] ) - ayatana? ( dev-libs/libappindicator ) - crypt? ( dev-libs/libgcrypt:0 ) - freerdp? ( - >=net-misc/freerdp-1.2 - -+ -+ txt/changelog -+ -+ -diff -Naur x2goclient-4.0.5.2.orig/res/changelog.rcc x2goclient-4.0.5.2/res/changelog.rcc ---- x2goclient-4.0.5.2.orig/res/changelog.rcc 2016-09-19 06:17:43.000000000 +0200 -+++ x2goclient-4.0.5.2/res/changelog.rcc 1970-01-01 01:00:00.000000000 +0100 -@@ -1,5 +0,0 @@ -- -- -- txt/changelog -- -- -diff -Naur x2goclient-4.0.5.2.orig/res/git.qrc x2goclient-4.0.5.2/res/git.qrc ---- x2goclient-4.0.5.2.orig/res/git.qrc 1970-01-01 01:00:00.000000000 +0100 -+++ x2goclient-4.0.5.2/res/git.qrc 2016-09-19 06:17:43.000000000 +0200 -@@ -0,0 +1,5 @@ -+ -+ -+ txt/git-info -+ -+ -diff -Naur x2goclient-4.0.5.2.orig/res/git.rcc x2goclient-4.0.5.2/res/git.rcc ---- x2goclient-4.0.5.2.orig/res/git.rcc 2016-09-19 06:17:43.000000000 +0200 -+++ x2goclient-4.0.5.2/res/git.rcc 1970-01-01 01:00:00.000000000 +0100 -@@ -1,5 +0,0 @@ -- -- -- txt/git-info -- -- -diff -Naur x2goclient-4.0.5.2.orig/res/resources.qrc x2goclient-4.0.5.2/res/resources.qrc ---- x2goclient-4.0.5.2.orig/res/resources.qrc 1970-01-01 01:00:00.000000000 +0100 -+++ x2goclient-4.0.5.2/res/resources.qrc 2016-09-19 06:17:44.000000000 +0200 -@@ -0,0 +1,113 @@ -+ -+ -+ img/svg/bg.svg -+ img/svg/bg_hildon.svg -+ img/svg/line.svg -+ img/svg/onlogo.svg -+ img/svg/x2gologo.svg -+ img/svg/passform.svg -+ img/svg/sessionbut.svg -+ img/svg/folder.svg -+ img/svg/folder_grey.svg -+ img/svg/sessionbut_grey.svg -+ img/png/ico.png -+ img/png/ico_mini.png -+ img/png/sess_ico.png -+ img/png/ico_440x180.png -+ img/png/power-button.png -+ img/icons/128x128/x2go.png -+ img/icons/128x128/folder.png -+ img/icons/128x128/x2gosession.png -+ img/icons/128x128/create_file.png -+ img/icons/128x128/lxde.png -+ img/icons/128x128/preferences.png -+ img/icons/128x128/rdp.png -+ img/icons/64x64/audio.png -+ img/icons/64x64/personal.png -+ img/icons/64x64/create_file.png -+ img/icons/64x64/lxde.png -+ img/icons/64x64/preferences.png -+ img/icons/64x64/rdp.png -+ img/icons/32x32/edit.png -+ img/icons/32x32/edit_settings.png -+ img/icons/32x32/exit.png -+ img/icons/32x32/file-open.png -+ img/icons/32x32/new_file.png -+ img/icons/32x32/create_file.png -+ img/icons/32x32/lxde.png -+ img/icons/32x32/preferences.png -+ img/icons/32x32/rdp.png -+ img/icons/32x32/reconnect.png -+ img/icons/32x32/tbhide.png -+ img/icons/32x32/tbshow.png -+ img/icons/32x32/attach.png -+ img/icons/32x32/detach.png -+ img/icons/32x32/suspend.png -+ img/icons/32x32/stop.png -+ img/icons/32x32/auth.png -+ img/icons/32x32/x2goclient.png -+ img/icons/32x32/resolution.png -+ img/icons/32x32/contest.png -+ img/icons/32x32/apps.png -+ img/icons/32x32/open_dir.png -+ img/icons/32x32/suspend_session.png -+ img/icons/32x32/stop_session.png -+ img/icons/16x16/audio.png -+ img/icons/16x16/file-open.png -+ img/icons/16x16/delete.png -+ img/icons/16x16/edit.png -+ img/icons/16x16/gnome.png -+ img/icons/16x16/unity.png -+ img/icons/16x16/xfce.png -+ img/icons/16x16/mate.png -+ img/icons/16x16/kde.png -+ img/icons/16x16/cinnamon.png -+ img/icons/16x16/trinity.png -+ img/icons/16x16/openbox.png -+ img/icons/16x16/icewm.png -+ img/icons/16x16/new_file.png -+ img/icons/16x16/resolution.png -+ img/icons/16x16/session.png -+ img/icons/16x16/x2go.png -+ img/icons/16x16/tbshow.png -+ img/icons/16x16/X.png -+ img/icons/16x16/create_file.png -+ img/icons/16x16/lxde.png -+ img/icons/16x16/preferences.png -+ img/icons/16x16/rdp.png -+ img/icons/22x22/applications-development.png -+ img/icons/22x22/applications-education.png -+ img/icons/22x22/applications-games.png -+ img/icons/22x22/applications-graphics.png -+ img/icons/22x22/applications-internet.png -+ img/icons/22x22/applications-multimedia.png -+ img/icons/22x22/applications-office.png -+ img/icons/22x22/applications-other.png -+ img/icons/22x22/applications-system.png -+ img/icons/22x22/applications-utilities.png -+ img/icons/22x22/preferences-system.png -+ txt/packs -+ txt/encodings -+ i18n/x2goclient_da.qm -+ i18n/x2goclient_de.qm -+ i18n/x2goclient_es.qm -+ i18n/x2goclient_et.qm -+ i18n/x2goclient_fi.qm -+ i18n/x2goclient_fr.qm -+ i18n/x2goclient_nb_no.qm -+ i18n/x2goclient_nl.qm -+ i18n/x2goclient_pt.qm -+ i18n/x2goclient_ru.qm -+ i18n/x2goclient_sv.qm -+ i18n/x2goclient_tr.qm -+ i18n/x2goclient_zh_tw.qm -+ i18n/qt_da.qm -+ i18n/qt_de.qm -+ i18n/qt_es.qm -+ i18n/qt_fr.qm -+ i18n/qt_pt.qm -+ i18n/qt_ru.qm -+ i18n/qt_sv.qm -+ i18n/qt_zh_tw.qm -+ -+ -diff -Naur x2goclient-4.0.5.2.orig/res/resources.rcc x2goclient-4.0.5.2/res/resources.rcc ---- x2goclient-4.0.5.2.orig/res/resources.rcc 2016-09-19 06:17:44.000000000 +0200 -+++ x2goclient-4.0.5.2/res/resources.rcc 1970-01-01 01:00:00.000000000 +0100 -@@ -1,113 +0,0 @@ -- -- -- img/svg/bg.svg -- img/svg/bg_hildon.svg -- img/svg/line.svg -- img/svg/onlogo.svg -- img/svg/x2gologo.svg -- img/svg/passform.svg -- img/svg/sessionbut.svg -- img/svg/folder.svg -- img/svg/folder_grey.svg -- img/svg/sessionbut_grey.svg -- img/png/ico.png -- img/png/ico_mini.png -- img/png/sess_ico.png -- img/png/ico_440x180.png -- img/png/power-button.png -- img/icons/128x128/x2go.png -- img/icons/128x128/folder.png -- img/icons/128x128/x2gosession.png -- img/icons/128x128/create_file.png -- img/icons/128x128/lxde.png -- img/icons/128x128/preferences.png -- img/icons/128x128/rdp.png -- img/icons/64x64/audio.png -- img/icons/64x64/personal.png -- img/icons/64x64/create_file.png -- img/icons/64x64/lxde.png -- img/icons/64x64/preferences.png -- img/icons/64x64/rdp.png -- img/icons/32x32/edit.png -- img/icons/32x32/edit_settings.png -- img/icons/32x32/exit.png -- img/icons/32x32/file-open.png -- img/icons/32x32/new_file.png -- img/icons/32x32/create_file.png -- img/icons/32x32/lxde.png -- img/icons/32x32/preferences.png -- img/icons/32x32/rdp.png -- img/icons/32x32/reconnect.png -- img/icons/32x32/tbhide.png -- img/icons/32x32/tbshow.png -- img/icons/32x32/attach.png -- img/icons/32x32/detach.png -- img/icons/32x32/suspend.png -- img/icons/32x32/stop.png -- img/icons/32x32/auth.png -- img/icons/32x32/x2goclient.png -- img/icons/32x32/resolution.png -- img/icons/32x32/contest.png -- img/icons/32x32/apps.png -- img/icons/32x32/open_dir.png -- img/icons/32x32/suspend_session.png -- img/icons/32x32/stop_session.png -- img/icons/16x16/audio.png -- img/icons/16x16/file-open.png -- img/icons/16x16/delete.png -- img/icons/16x16/edit.png -- img/icons/16x16/gnome.png -- img/icons/16x16/unity.png -- img/icons/16x16/xfce.png -- img/icons/16x16/mate.png -- img/icons/16x16/kde.png -- img/icons/16x16/cinnamon.png -- img/icons/16x16/trinity.png -- img/icons/16x16/openbox.png -- img/icons/16x16/icewm.png -- img/icons/16x16/new_file.png -- img/icons/16x16/resolution.png -- img/icons/16x16/session.png -- img/icons/16x16/x2go.png -- img/icons/16x16/tbshow.png -- img/icons/16x16/X.png -- img/icons/16x16/create_file.png -- img/icons/16x16/lxde.png -- img/icons/16x16/preferences.png -- img/icons/16x16/rdp.png -- img/icons/22x22/applications-development.png -- img/icons/22x22/applications-education.png -- img/icons/22x22/applications-games.png -- img/icons/22x22/applications-graphics.png -- img/icons/22x22/applications-internet.png -- img/icons/22x22/applications-multimedia.png -- img/icons/22x22/applications-office.png -- img/icons/22x22/applications-other.png -- img/icons/22x22/applications-system.png -- img/icons/22x22/applications-utilities.png -- img/icons/22x22/preferences-system.png -- txt/packs -- txt/encodings -- i18n/x2goclient_da.qm -- i18n/x2goclient_de.qm -- i18n/x2goclient_es.qm -- i18n/x2goclient_et.qm -- i18n/x2goclient_fi.qm -- i18n/x2goclient_fr.qm -- i18n/x2goclient_nb_no.qm -- i18n/x2goclient_nl.qm -- i18n/x2goclient_pt.qm -- i18n/x2goclient_ru.qm -- i18n/x2goclient_sv.qm -- i18n/x2goclient_tr.qm -- i18n/x2goclient_zh_tw.qm -- i18n/qt_da.qm -- i18n/qt_de.qm -- i18n/qt_es.qm -- i18n/qt_fr.qm -- i18n/qt_pt.qm -- i18n/qt_ru.qm -- i18n/qt_sv.qm -- i18n/qt_zh_tw.qm -- -- -diff -Naur x2goclient-4.0.5.2.orig/x2goclient.pro x2goclient-4.0.5.2/x2goclient.pro ---- x2goclient-4.0.5.2.orig/x2goclient.pro 2016-09-19 06:17:44.000000000 +0200 -+++ x2goclient-4.0.5.2/x2goclient.pro 2016-09-28 22:03:41.830790244 +0200 -@@ -167,16 +167,16 @@ - TEMPLATE = app - DEPENDPATH += . - INCLUDEPATH += src --RESOURCES += res/resources.rcc -+RESOURCES += res/resources.qrc - - exists(res/txt/git-info) { - message("Configuring with --git-info") -- RESOURCES += res/git.rcc -+ RESOURCES += res/git.qrc - } - - exists(res/txt/changelog) { - message("Configuring with --changelog") -- RESOURCES += res/changelog.rcc -+ RESOURCES += res/changelog.qrc - } - - linux-g++ { diff --git a/net-misc/x2goclient/x2goclient-4.0.5.2.ebuild b/net-misc/x2goclient/x2goclient-4.0.5.2-r1.ebuild similarity index 63% rename from net-misc/x2goclient/x2goclient-4.0.5.2.ebuild rename to net-misc/x2goclient/x2goclient-4.0.5.2-r1.ebuild index 52527c819baa..e948f9b9548b 100644 --- a/net-misc/x2goclient/x2goclient-4.0.5.2.ebuild +++ b/net-misc/x2goclient/x2goclient-4.0.5.2-r1.ebuild @@ -3,6 +3,7 @@ # $Id$ EAPI=6 + inherit nsplugins qmake-utils DESCRIPTION="The X2Go Qt client" @@ -12,15 +13,15 @@ SRC_URI="http://code.x2go.org/releases/source/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="ldap nsplugin +qt4 qt5" +IUSE="ldap nsplugin qt5" -REQUIRED_USE="^^ ( qt4 qt5 )" +REQUIRED_USE="nsplugin? ( !qt5 )" DEPEND=">=net-libs/libssh-0.6.0_rc1 net-print/cups x11-libs/libXpm ldap? ( net-nds/openldap ) - qt4? ( + !qt5? ( dev-qt/qtcore:4[ssl] dev-qt/qtgui:4 dev-qt/qtsvg:4 @@ -32,50 +33,56 @@ DEPEND=">=net-libs/libssh-0.6.0_rc1 dev-qt/qtsvg:5 dev-qt/qtwidgets:5 dev-qt/qtx11extras:5 - )" - + ) +" RDEPEND="${DEPEND} net-misc/nx" -CLIENT_BUILD=${WORKDIR}/${P}.client_build -PLUGIN_BUILD=${WORKDIR}/${P}.plugin_build +CLIENT_BUILD="${WORKDIR}"/${P}.client_build +PLUGIN_BUILD="${WORKDIR}"/${P}.plugin_build -PATCHES=( "${FILESDIR}"/${P}-rcc_to_qrc.patch ) +PATCHES=( "${FILESDIR}"/${P}-r1-rcc_to_qrc.patch ) src_prepare() { + default + + local f + for f in res/*rcc; do + mv ${f} ${f/rcc/qrc} || die + done + if ! use ldap; then sed -e "s/-lldap//" -i x2goclient.pro || die sed -e "s/#define USELDAP//" -i src/x2goclientconfig.h || die fi - mkdir -p "${CLIENT_BUILD}" - use nsplugin && mkdir -p "${PLUGIN_BUILD}" - - default + mkdir -p "${CLIENT_BUILD}" || die + if use nsplugin; then + mkdir -p "${PLUGIN_BUILD}" || die + fi } src_configure() { - local EQMAKE - use qt4 && EQMAKE=eqmake4 - use qt5 && EQMAKE=eqmake5 + cd "${CLIENT_BUILD}" || die - cd "${CLIENT_BUILD}" - ${EQMAKE} "${S}"/x2goclient.pro + if use qt5; then + eqmake5 "${S}"/x2goclient.pro + else + eqmake4 "${S}"/x2goclient.pro + fi - if use nsplugin; - then - cd "${PLUGIN_BUILD}" - X2GO_CLIENT_TARGET=plugin ${EQMAKE} "${S}"/x2goclient.pro + if use nsplugin; then + cd "${PLUGIN_BUILD}" || die + X2GO_CLIENT_TARGET=plugin eqmake4 "${S}"/x2goclient.pro fi } src_compile() { - cd "${CLIENT_BUILD}" + cd "${CLIENT_BUILD}" || die emake - if use nsplugin; - then - cd "${PLUGIN_BUILD}" + if use nsplugin; then + cd "${PLUGIN_BUILD}" || die emake fi } @@ -89,8 +96,7 @@ src_install() { domenu desktop/${PN}.desktop doman man/man?/* - if use nsplugin; - then + if use nsplugin; then # PLUGINS_DIR comes from nsplugins.eclass exeinto /usr/$(get_libdir)/${PLUGINS_DIR} doexe "${PLUGIN_BUILD}"/libx2goplugin.so diff --git a/net-wireless/lorcon/lorcon-0.0_p20150109.ebuild b/net-wireless/lorcon/lorcon-0.0_p20150109.ebuild index 1a9622c59bb3..b507490492c1 100644 --- a/net-wireless/lorcon/lorcon-0.0_p20150109.ebuild +++ b/net-wireless/lorcon/lorcon-0.0_p20150109.ebuild @@ -7,7 +7,7 @@ EAPI=5 PYTHON_COMPAT=( python2_7 ) DISTUTILS_OPTIONAL=1 -USE_RUBY="ruby20" +USE_RUBY="ruby20 ruby21" RUBY_OPTIONAL=yes inherit distutils-r1 ruby-ng @@ -91,8 +91,9 @@ each_ruby_compile() { sed -i "s#-I/usr/include/lorcon2#-I${WORKDIR}/${P}/ruby-lorcon -L${WORKDIR}/${P}/.libs#" ruby-lorcon/extconf.rb "${RUBY}" -C ruby-lorcon extconf.rb || die sed -i 's##"../lorcon.h"#' ruby-lorcon/Lorcon2.h - sed -i "s#-L\.#-L. -L${WORKDIR}/${P}/.libs -lorcon2 #g" ruby-lorcon/Makefile || die - emake -C ruby-lorcon + sed -i -e "s#-L\.#-L. -L${WORKDIR}/${P}/.libs -lorcon2 #g" \ + -e "s#-Wl,--no-undefined##" ruby-lorcon/Makefile || die + emake V=1 -C ruby-lorcon } each_ruby_install() { diff --git a/net-wireless/lorcon/lorcon-9999.ebuild b/net-wireless/lorcon/lorcon-9999.ebuild index f91f561b6a11..356a06757605 100644 --- a/net-wireless/lorcon/lorcon-9999.ebuild +++ b/net-wireless/lorcon/lorcon-9999.ebuild @@ -7,7 +7,7 @@ EAPI=5 PYTHON_COMPAT=( python2_7 ) DISTUTILS_OPTIONAL=1 -USE_RUBY="ruby20" +USE_RUBY="ruby20 ruby21" RUBY_OPTIONAL=yes inherit distutils-r1 ruby-ng @@ -91,8 +91,9 @@ each_ruby_compile() { sed -i "s#-I/usr/include/lorcon2#-I${WORKDIR}/${P}/ruby-lorcon -L${WORKDIR}/${P}/.libs#" ruby-lorcon/extconf.rb "${RUBY}" -C ruby-lorcon extconf.rb || die sed -i 's##"../lorcon.h"#' ruby-lorcon/Lorcon2.h - sed -i "s#-L\.#-L. -L${WORKDIR}/${P}/.libs -lorcon2 #g" ruby-lorcon/Makefile || die - emake -C ruby-lorcon + sed -i -e "s#-L\.#-L. -L${WORKDIR}/${P}/.libs -lorcon2 #g" \ + -e "s#-Wl,--no-undefined##" ruby-lorcon/Makefile || die + emake V=1 -C ruby-lorcon } each_ruby_install() { diff --git a/profiles/arch/powerpc/package.use.stable.mask b/profiles/arch/powerpc/package.use.stable.mask index ce5ee306822d..1f0ebfb008b4 100644 --- a/profiles/arch/powerpc/package.use.stable.mask +++ b/profiles/arch/powerpc/package.use.stable.mask @@ -60,4 +60,4 @@ net-libs/aqbanking ofx # Michael Palimaka (11 Dec 2014) # Dependencies not yet stable -kde-base/systemsettings kscreen +kde-plasma/systemsettings kscreen diff --git a/profiles/package.mask b/profiles/package.mask index c50ddbdabee6..39c211566ce3 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -30,10 +30,6 @@ #--- END OF EXAMPLES --- -# Andreas K. Hüttel (05 Nov 2016) -# Masked for initial testing -=dev-libs/icu-58.1 - # Manuel Rüger (05 Nov 2016) # Masked for removal in 30 days, bug #568980 # Unmaintained and deprecated. @@ -139,12 +135,6 @@ dev-python/pylons # versions of kaffeine. Masked for removal in 30 days. www-plugins/kaffeine-mozilla-plugin -# Patrice Clement (09 Oct 2016) -# Although still available for download, the JMF API is a dead project which -# hasn't been updated in years and hence very old. -# Masked for removal in 30 days. -dev-java/jmf-bin - # Sebastian Pipping (08 Oct 2016) # Dead upstream for years, ebuild needs work, 5 open bugs # Masked for removal in 30 days. diff --git a/profiles/targets/desktop/kde/package.use b/profiles/targets/desktop/kde/package.use index 4f6486118a8a..9dda4a56b89b 100644 --- a/profiles/targets/desktop/kde/package.use +++ b/profiles/targets/desktop/kde/package.use @@ -3,7 +3,7 @@ # $Id$ # Resolve conflicts with slot 5 ebuilds -kde-base/baloo minimal +kde-frameworks/baloo minimal kde-apps/kde4-l10n minimal # Required by kde-frameworks/kauth diff --git a/profiles/targets/desktop/plasma/package.use b/profiles/targets/desktop/plasma/package.use index 696544b082cd..74d504a0e3fa 100644 --- a/profiles/targets/desktop/plasma/package.use +++ b/profiles/targets/desktop/plasma/package.use @@ -60,7 +60,7 @@ media-libs/phonon designer # Allow certain KDE 4 components to be coinstalled with Plasma 5 =dev-libs/boost-1.40.0[mpi?] ) cg? ( media-gfx/nvidia-cg-toolkit ) examples? ( - dev-qt/qtcore:4 - dev-qt/qtgui:4 + dev-qt/qtcore:5 + dev-qt/qtgui:5 sci-libs/vtkdata ) ffmpeg? ( virtual/ffmpeg ) @@ -87,19 +87,19 @@ RDEPEND=" dev-python/sip[${PYTHON_USEDEP}] ) ) - qt4? ( - dev-qt/designer:4 - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/qtopengl:4 - dev-qt/qtsql:4 - dev-qt/qtwebkit:4 - python? ( dev-python/PyQt4[${PYTHON_USEDEP}] ) + qt5? ( + dev-qt/designer:5 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtopengl:5 + dev-qt/qtsql:5 + dev-qt/qtwebkit:5 + python? ( dev-python/PyQt5[${PYTHON_USEDEP}] ) ) tbb? ( dev-cpp/tbb ) tcl? ( dev-lang/tcl:0= ) tk? ( dev-lang/tk:0= ) - video_cards_nvidia? ( media-video/nvidia-settings ) + video_cards_nvidia? ( || ( x11-drivers/nvidia-drivers[tools,static-libs] media-video/nvidia-settings ) ) web? ( ${WEBAPP_DEPEND} python? ( @@ -219,7 +219,6 @@ src_configure() { $(cmake-utils_use doc DOCUMENTATION_HTML_HELP) $(cmake-utils_use imaging VTK_Group_Imaging) $(cmake-utils_use mpi VTK_Group_MPI) - $(cmake-utils_use qt4 VTK_Group_Qt) $(cmake-utils_use rendering VTK_Group_Rendering) $(cmake-utils_use tk VTK_Group_Tk) $(cmake-utils_use views VTK_Group_Views) @@ -296,20 +295,21 @@ src_configure() { ) fi - if use qt4; then + if use qt5; then mycmakeargs+=( -DVTK_USE_QVTK=ON -DVTK_USE_QVTK_OPENGL=ON -DVTK_USE_QVTK_QTOPENGL=ON -DQT_WRAP_CPP=ON -DQT_WRAP_UI=ON - -DVTK_INSTALL_QT_DIR=/$(get_libdir)/qt4/plugins/designer - -DDESIRED_QT_VERSION=4 - -DVTK_QT_VERSION=4 - -DQT_MOC_EXECUTABLE="$(qt4_get_bindir)/moc" - -DQT_UIC_EXECUTABLE="$(qt4_get_bindir)/uic" - -DQT_INCLUDE_DIR="${EPREFIX}/usr/include/qt4" - -DQT_QMAKE_EXECUTABLE="$(qt4_get_bindir)/qmake" + -DVTK_INSTALL_QT_DIR=/$(get_libdir)/qt5/plugins/designer + -DDESIRED_QT_VERSION=5 + -DVTK_QT_VERSION=5 + -DQT_MOC_EXECUTABLE="$(qt5_get_bindir)/moc" + -DQT_UIC_EXECUTABLE="$(qt5_get_bindir)/uic" + -DQT_INCLUDE_DIR="${EPREFIX}/usr/include/qt5" + -DQT_QMAKE_EXECUTABLE="$(qt5_get_bindir)/qmake" + -DVTK_Group_Qt:BOOL=ON ) fi diff --git a/sci-physics/rivet/Manifest b/sci-physics/rivet/Manifest index 6057c85a3211..d184eee58c3d 100644 --- a/sci-physics/rivet/Manifest +++ b/sci-physics/rivet/Manifest @@ -1 +1,3 @@ DIST Rivet-2.3.0.tar.bz2 2742948 SHA256 dd07702981d586e4b97b0fa56ae08cd08a631a952322a9b52e7622a46a7741ab SHA512 b51b77f80d69156dead899312cad838bc03479a072e163df50262e86790503515f8ab8af93723c3cbd33007d9812aa10581b2c960d92bc1fcf5031d27018d239 WHIRLPOOL ce9e5dd34ba9b53de192aee39bcd94565a62a328bd35dcb1ef810cc7b129e9ae6529fc8f970889f7a6970567bdd0f040d15fc5bbb83ec22e38daccb34cbb4fdf +DIST Rivet-2.5.2.tar.bz2 3005023 SHA256 70aa27764a14159c94c0b753a0c3d3600ac669def398cb2d8a6c63ae17704f05 SHA512 dd84143eb5d4b24ae2e5ace175e349fe48b4b5e6a47b3aa031a4144c635f016e8bbd731ed3f96b5c2f52c7df8ff0f1db70750fc45381bdfcdd469fd4c058beef WHIRLPOOL cd17c53ba337cc5f6e9d747f37640b86958844cfbf328a99350a3e7850e1ae158aab6cbedd8791da3f5f56084ed219a8ff7d9b2bc3d9c73848531f0d868c475a +DIST refs.bib 65375 SHA256 c4c0a1d1d46c504baff9f44fdb9ecec5adc7773c89746e9b573abd2349c61431 SHA512 ab6c0942235f4f88de0c3801c0be4b0e51643a684c6cf55ae58db57a5ffa0e59c9a616547f8a7549b696888983ac3980f1f0d1bfd21adbfbfa732e12ee2e5ce2 WHIRLPOOL c2e31e4a4159f101ecc094d33e65321ce5aa7aa2e1e30f56c8fd34d5f7a22f581f2a269478e30066c8ad03a50279c1b7cf7db8b357f446646fcab8a54e8d8d99 diff --git a/sci-physics/rivet/rivet-2.5.2.ebuild b/sci-physics/rivet/rivet-2.5.2.ebuild new file mode 100644 index 000000000000..7e55cc4285e2 --- /dev/null +++ b/sci-physics/rivet/rivet-2.5.2.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) + +inherit autotools bash-completion-r1 python-single-r1 + +DESCRIPTION="Toolkit for validation of Monte Carlo HEP event generators" +HOMEPAGE="http://rivet.hepforge.org/" + +SRC_URI="http://www.hepforge.org/archive/${PN}/${P^}.tar.bz2 + doc? ( https://rivet.hepforge.org/trac/browser/doc/refs.bib )" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc python static-libs" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND=" + dev-libs/boost:= + sci-libs/gsl:= + sci-physics/fastjet[plugins] + sci-physics/hepmc + >=sci-physics/yoda-1.5.0[python] + python? ( ${PYTHON_DEPS} )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen[latex,dot] ) + python? ( dev-python/cython[${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${P^}" + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_unpack() { + unpack "${P^}.tar.bz2" + + if use doc; then + # refs.bib is missing in tarball (reported upstream) + cp "${DISTDIR}"/refs.bib "${S}"/doc || die + fi +} + +src_prepare() { + default + + # Install rivet-manual.pdf to docdir intead of pkgdatadir + sed -i '/pkgdata_DATA = $(DOCS)/s/pkgdata/doc/' doc/Makefile.am || die + eautoreconf +} + +src_configure() { + econf \ + $(use_enable python pyext) \ + $(use_enable static-libs static) \ + $(use_enable doc doxygen) \ + $(use_enable doc pdfmanual) +} + +src_compile() { + use doc && export VARTEXFONTS="${T}/fonts" + default + + if use doc; then + doxygen Doxyfile || die + HTML_DOCS+=( doxy/html/. ) + fi +} + +src_install() { + default + + newbashcomp "${ED%/}"/usr/share/Rivet/rivet-completion rivet + rm -f "${ED%/}"/usr/share/Rivet/rivet-completion || die +} diff --git a/sci-visualization/labplot/Manifest b/sci-visualization/labplot/Manifest index 7399f7078aa2..689f27edbda8 100644 --- a/sci-visualization/labplot/Manifest +++ b/sci-visualization/labplot/Manifest @@ -1 +1 @@ -DIST labplot-2.0.2.tar.xz 2696384 SHA256 f52e00006e2ce87aeda5bf15b950155e5db71cde4b0e1fb0819b6e71aaf6dee0 SHA512 6fb78f7f36dfd961690e4062646401fde86054323ffbf1d90986ae686201ad9f1bd5f2e6a914545f10d085355c490d63399ce92197770d7fb0cfccc91e24421b WHIRLPOOL 677f40ffb5cf151a160148da25cc364a6de62cfa5829bf70d4486e072ed05b6831d3975d31fa2ad6ef7c698b4abb44bdfd86efd9d29d1670e0bd5e57f9c4314e +DIST labplot-2.3.0-kf5.tar.xz 4531156 SHA256 a5a7d706de5f978430b359ada42f9227a2619f5fa9608d56af16c760b7626f33 SHA512 0f8053bfccbfb6756db14c2d35f69b18bc83395c15cc01cbe61e5877065ad587e1563e7f161dfbac7c75b8b30aa04ee112e0c1962b52544e33ca936bd17b1444 WHIRLPOOL febd50c0a36612a1f93d8190eb9907ede4c29513652cc1a99cfc196c464eb7a7d6bc8692e13a98a9ce31e963a15396385dd9d7b015fe65bd995e2b85e9a09f94 diff --git a/sci-visualization/labplot/files/labplot-2.3.0-deps.patch b/sci-visualization/labplot/files/labplot-2.3.0-deps.patch new file mode 100644 index 000000000000..dbedac7f5bef --- /dev/null +++ b/sci-visualization/labplot/files/labplot-2.3.0-deps.patch @@ -0,0 +1,49 @@ +From 41c3e23837adb8df641024901d3aee9dea2ded9d Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Sun, 6 Nov 2016 00:37:36 +0100 +Subject: [PATCH 1/2] Add missing dependencies + +REVIEW: 129344 +--- + CMakeLists.txt | 25 +++++++++++++++++++++++-- + 1 file changed, 23 insertions(+), 2 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 9dc90f7..4db135f 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -4,8 +4,29 @@ cmake_minimum_required(VERSION 2.8.12) + find_package(ECM 1.3.0 REQUIRED NO_MODULE) + set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR}) + +-find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Svg Concurrent) +-find_package(KF5 REQUIRED COMPONENTS I18n KDELibs4Support) ++find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS ++ Concurrent ++ Gui ++ PrintSupport ++ Svg ++ Widgets ++) ++find_package(KF5 REQUIRED COMPONENTS ++ Archive ++ Completion ++ Config ++ ConfigWidgets ++ CoreAddons ++ DocTools ++ I18n ++ IconThemes ++ KDELibs4Support ++ KIO ++ NewStuff ++ TextWidgets ++ WidgetsAddons ++ XmlGui ++) + + include(FeatureSummary) + include(ECMInstallIcons) +-- +2.7.3 + diff --git a/sci-visualization/labplot/files/labplot-2.3.0-desktop.patch b/sci-visualization/labplot/files/labplot-2.3.0-desktop.patch new file mode 100644 index 000000000000..8722b171446f --- /dev/null +++ b/sci-visualization/labplot/files/labplot-2.3.0-desktop.patch @@ -0,0 +1,24 @@ +commit a66226a538ae23f61eaf4b3c00efa8321504fe00 +Author: Wolfgang Bauer +Date: Thu Jul 28 15:20:05 2016 +0200 + + Fix .desktop file's Exec line + + The KF5 port uses QCommandLineParser which doesn't know the '-caption' + parameter. + The desktop file needs to use '-qwindowtitle' instead. + + REVIEW: 128532 + +diff --git a/src/labplot2.desktop b/src/labplot2.desktop +index 38fe9bb..8ce836c 100755 +--- a/src/labplot2.desktop ++++ b/src/labplot2.desktop +@@ -1,6 +1,6 @@ + [Desktop Entry] + Type=Application +-Exec=labplot2 -caption %c %i %f ++Exec=labplot2 -qwindowtitle %c %i %f + Icon=labplot2 + Name=LabPlot2 + Name[ast]=LabPlot2 diff --git a/sci-visualization/labplot/files/labplot-2.3.0-options.patch b/sci-visualization/labplot/files/labplot-2.3.0-options.patch new file mode 100644 index 000000000000..f4f9a4c9d2dd --- /dev/null +++ b/sci-visualization/labplot/files/labplot-2.3.0-options.patch @@ -0,0 +1,77 @@ +From 2756fff72169df6cd4eec3d9bf96e9673574c2d0 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Sun, 6 Nov 2016 01:00:13 +0100 +Subject: [PATCH 2/2] Make options optional + +REVIEW: 129344 +--- + CMakeLists.txt | 30 ++++++++++++++++++------------ + 1 file changed, 18 insertions(+), 12 deletions(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 4db135f..8055bee 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -48,6 +48,11 @@ add_definitions(-fvisibility=default) + cmake_policy(SET CMP0002 OLD) + #cmake_policy(SET CMP0063 NEW) + ++### Options ###################################### ++option(ENABLE_CANTOR "Build with Cantor support" ON) ++option(ENABLE_FFTW "Build with FFTW support" ON) ++option(ENABLE_NETCDF "Build with NetCDF support" ON) ++ + ### FFTW ###################################### + FIND_LIBRARY(FFTW_LIBRARIES fftw3 + PATHS +@@ -58,12 +63,12 @@ FIND_PATH (FFTW_INCLUDE_DIR fftw3.h + /usr/include + /usr/local/include + ) +-IF (FFTW_LIBRARIES AND FFTW_INCLUDE_DIR) ++IF(ENABLE_FFTW AND FFTW_LIBRARIES AND FFTW_INCLUDE_DIR) + SET (FFTW_FOUND TRUE) +-ELSE (FFTW_LIBRARIES AND FFTW_INCLUDE_DIR) ++ELSE() + SET (FFTW_FOUND FALSE) + SET (FFTW_LIBRARIES "") +-ENDIF (FFTW_LIBRARIES AND FFTW_INCLUDE_DIR) ++ENDIF() + + IF (FFTW_FOUND) + MESSAGE (STATUS "Found FFTW 3 Library: ${FFTW_INCLUDE_DIR} ${FFTW_LIBRARIES}") +@@ -120,12 +125,12 @@ FIND_PATH (CANTOR_INCLUDE_DIR worksheetaccess.h + /usr/include/cantor + /usr/local/include/cantor + ) +-IF (CANTOR_LIBS AND CANTOR_INCLUDE_DIR) ++IF(ENABLE_CANTOR AND CANTOR_LIBS AND CANTOR_INCLUDE_DIR) + SET (CANTOR_LIBS_FOUND TRUE) +-ELSE (CANTOR_LIBS AND CANTOR_INCLUDE_DIR) ++ELSE() + SET (CANTOR_LIBS_FOUND FALSE) + SET (CANTOR_LIBS "") +-ENDIF (CANTOR_LIBS AND CANTOR_INCLUDE_DIR) ++ENDIF() + IF (CANTOR_LIBS_FOUND) + MESSAGE (STATUS "Found CantorLibs ${CANTOR_INCLUDE_DIR} ${CANTOR_LIBS}") + add_definitions (-DHAVE_CANTOR_LIBS) +@@ -150,12 +155,12 @@ FIND_PATH (NETCDF_INCLUDE_DIR netcdf.h + /usr/include/ + /usr/local/include/ + ) +-IF (NETCDF_LIBRARY AND NETCDF_INCLUDE_DIR) ++IF(ENABLE_NETCDF AND NETCDF_LIBRARY AND NETCDF_INCLUDE_DIR) + SET (NETCDF_FOUND TRUE) +-ELSE (NETCDF_LIBRARY AND NETCDF_INCLUDE_DIR) ++ELSE() + SET (NETCDF_FOUND FALSE) + SET (NETCDF_LIBRARY "") +-ENDIF (NETCDF_LIBRARY AND NETCDF_INCLUDE_DIR) ++ENDIF() + IF (NETCDF_FOUND) + MESSAGE (STATUS "Found Network Common Data Format (NetCDF) Library: ${NETCDF_INCLUDE_DIR} ${NETCDF_LIBRARY}") + add_definitions (-DHAVE_NETCDF) +-- +2.7.3 + diff --git a/sci-visualization/labplot/labplot-2.0.2.ebuild b/sci-visualization/labplot/labplot-2.0.2.ebuild deleted file mode 100644 index 93da819c6377..000000000000 --- a/sci-visualization/labplot/labplot-2.0.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -if [[ "${PV}" != "9999" ]]; then - KEYWORDS="~amd64 ~x86" - SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" - inherit kde4-base -else - EGIT_REPO_URI="git://anongit.kde.org/labplot" - inherit kde4-base git-r3 -fi - -MY_PN=LabPlot -MY_P=${MY_PN}-${PV} - -DESCRIPTION="KDE data analysis and visualisation program" -HOMEPAGE="https://edu.kde.org/applications/science/labplot/" - -LICENSE="GPL-2" -SLOT="4" -IUSE="" - -DEPEND=" - sci-libs/gsl -" -RDEPEND="$DEPEND" diff --git a/sci-visualization/labplot/labplot-2.3.0.ebuild b/sci-visualization/labplot/labplot-2.3.0.ebuild new file mode 100644 index 000000000000..883541301241 --- /dev/null +++ b/sci-visualization/labplot/labplot-2.3.0.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +EGIT_BRANCH="frameworks" +KDE_HANDBOOK="forceoptional" +inherit kde5 + +DESCRIPTION="Scientific data analysis and visualisation based on KDE Frameworks" +HOMEPAGE="https://www.kde.org/applications/education/labplot/" +[[ ${KDE_BUILD_TYPE} != live ]] && SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}-kf5.tar.xz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="cantor fftw hdf5 netcdf" + +[[ ${KDE_BUILD_TYPE} != live ]] && S="${WORKDIR}/${P}-kf5" + +COMMON_DEPEND=" + $(add_frameworks_dep karchive) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtconcurrent) + $(add_qt_dep qtgui) + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtsvg) + $(add_qt_dep qtwidgets) + >=sci-libs/gsl-1.15:= + cantor? ( $(add_kdeapps_dep cantor) ) + fftw? ( sci-libs/fftw:3.0= ) + hdf5? ( sci-libs/hdf5:= ) + netcdf? ( sci-libs/netcdf:= ) +" +DEPEND="${COMMON_DEPEND} + sys-devel/gettext + x11-misc/shared-mime-info +" +RDEPEND="${COMMON_DEPEND} + !sci-visualization/labplot:4 +" + +PATCHES=( + "${FILESDIR}/${P}-deps.patch" + "${FILESDIR}/${P}-options.patch" + "${FILESDIR}/${P}-desktop.patch" +) + +src_prepare() { + if ! use handbook && [[ ${KDE_BUILD_TYPE} != live ]]; then + cmake_comment_add_subdirectory doc-translations + fi + + kde5_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DENABLE_CANTOR=$(usex cantor) + -DENABLE_FFTW=$(usex fftw) + $(cmake-utils_use_find_package hdf5 HDF5) + -DENABLE_NETCDF=$(usex netcdf) + ) + + kde5_src_configure +} diff --git a/sci-visualization/labplot/labplot-9999.ebuild b/sci-visualization/labplot/labplot-9999.ebuild index 93da819c6377..ac5f37388f56 100644 --- a/sci-visualization/labplot/labplot-9999.ebuild +++ b/sci-visualization/labplot/labplot-9999.ebuild @@ -1,29 +1,73 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -if [[ "${PV}" != "9999" ]]; then - KEYWORDS="~amd64 ~x86" - SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" - inherit kde4-base -else - EGIT_REPO_URI="git://anongit.kde.org/labplot" - inherit kde4-base git-r3 -fi +EGIT_BRANCH="frameworks" +KDE_HANDBOOK="forceoptional" +inherit kde5 -MY_PN=LabPlot -MY_P=${MY_PN}-${PV} - -DESCRIPTION="KDE data analysis and visualisation program" -HOMEPAGE="https://edu.kde.org/applications/science/labplot/" +DESCRIPTION="Scientific data analysis and visualisation based on KDE Frameworks" +HOMEPAGE="https://www.kde.org/applications/education/labplot/" +[[ ${KDE_BUILD_TYPE} != live ]] && SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}-kf5.tar.xz" LICENSE="GPL-2" -SLOT="4" -IUSE="" +KEYWORDS="" +IUSE="cantor fftw fits hdf5 netcdf" + +[[ ${KDE_BUILD_TYPE} != live ]] && S="${WORKDIR}/${P}-kf5" -DEPEND=" - sci-libs/gsl +COMMON_DEPEND=" + $(add_frameworks_dep karchive) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep knewstuff) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_qt_dep qtconcurrent) + $(add_qt_dep qtgui) + $(add_qt_dep qtprintsupport) + $(add_qt_dep qtsvg) + $(add_qt_dep qtwidgets) + >=sci-libs/gsl-1.15:= + cantor? ( $(add_kdeapps_dep cantor) ) + fftw? ( sci-libs/fftw:3.0= ) + fits? ( sci-libs/cfitsio:= ) + hdf5? ( sci-libs/hdf5:= ) + netcdf? ( sci-libs/netcdf:= ) +" +DEPEND="${COMMON_DEPEND} + sys-devel/gettext + x11-misc/shared-mime-info +" +RDEPEND="${COMMON_DEPEND} + !sci-visualization/labplot:4 " -RDEPEND="$DEPEND" + +src_prepare() { + if ! use handbook && [[ ${KDE_BUILD_TYPE} != live ]]; then + cmake_comment_add_subdirectory doc-translations + fi + + kde5_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DENABLE_CANTOR=$(usex cantor) + -DENABLE_FFTW=$(usex fftw) + -DENABLE_FITS=$(usex fits) + $(cmake-utils_use_find_package hdf5 HDF5) + -DENABLE_NETCDF=$(usex netcdf) + ) + + kde5_src_configure +} diff --git a/sci-visualization/labplot/metadata.xml b/sci-visualization/labplot/metadata.xml index fb2bfd8d1d91..9e450bf9332f 100644 --- a/sci-visualization/labplot/metadata.xml +++ b/sci-visualization/labplot/metadata.xml @@ -1,16 +1,20 @@ - - dilfridge@gentoo.org - Andreas K. Huettel - - - sci@gentoo.org - Gentoo Science Project - - - kde@gentoo.org - Gentoo KDE Project - + + dilfridge@gentoo.org + Andreas K. Huettel + + + sci@gentoo.org + Gentoo Science Project + + + kde@gentoo.org + Gentoo KDE Project + + + Enable support for different open-source computer algebra systems via kde-apps/cantor + Enable support for NASA's sci-libs/cfitsio library + diff --git a/sys-auth/keystone/keystone-10.0.0.ebuild b/sys-auth/keystone/keystone-10.0.0.ebuild index be2780eaac17..4ea276889a97 100644 --- a/sys-auth/keystone/keystone-10.0.0.ebuild +++ b/sys-auth/keystone/keystone-10.0.0.ebuild @@ -14,7 +14,7 @@ SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="+sqlite ldap memcached mongo mysql postgres test" REQUIRED_USE="|| ( mysql postgres sqlite )" diff --git a/sys-block/open-iscsi/open-iscsi-2.0.873-r1.ebuild b/sys-block/open-iscsi/open-iscsi-2.0.873-r1.ebuild index 76111ca1ec77..03ee59bed12e 100644 --- a/sys-block/open-iscsi/open-iscsi-2.0.873-r1.ebuild +++ b/sys-block/open-iscsi/open-iscsi-2.0.873-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -14,7 +14,7 @@ SRC_URI="http://www.open-iscsi.org/bits/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc x86" IUSE="debug slp" DEPEND="slp? ( net-libs/openslp )" diff --git a/sys-boot/refind/metadata.xml b/sys-boot/refind/metadata.xml index 99f8fd67b0f9..3bcc4473f8e2 100644 --- a/sys-boot/refind/metadata.xml +++ b/sys-boot/refind/metadata.xml @@ -13,6 +13,22 @@ proxy-maint@gentoo.org Proxy Maintainers + +Un gestionnaire d'amorçage pour ordinateur EFI ou UEFI tel que tous les Macs +contenant un processeur Intel et les PC récents (2011 et après). rEFInd affiche +un menu d'amorçage montrant tous les gestionnaires d'amorçage sur les +partitions EFI accessibles et optionnellement les partitions amorçable en BIOS +sur Macs et les entrées BIOS sur les PC UEFI avec CSM. Les systèmes +d'exploitation compatibles EFI, incluant Linux, fournissent des gestionnaires +d'amorçage que rEFInd détecte et démarre. rEFInd peut démarrer les +gestionnaires d'amorçage EFI Linux tel que ELILO, GRUB Legacy, GRUB 2 ainsi que +les noyaux 3.3.0 et suivants avec le support EFI stub. Les pilotes EFI pour les +sytèmes de fichiers ext2/3/4fs, ReiserFS, Btrfs, NTFS, HFS+ et ISO-9660 +permettent à rEFInd de lire les gestionnaires d'amorçage également depuis ces +systèmes de fichiers. La capacité de rEFInd à détecter les gestionnaires +d'amorçage au moment de l'exécution le rend très facile à utiliser, en +particulier associé à des noyau Linux qui fournissent un support EFI stub. + A graphical boot manager for EFI- and UEFI-based computers, such as all Intel-based Macs and recent (most 2011 and later) PCs. rEFInd presents a @@ -27,33 +43,6 @@ loaders from these filesystems, too. rEFInd's ability to detect boot loaders at runtime makes it very easy to use, particularly when paired with Linux kernels that provide EFI stub support. - -Un gestionnaire d'amorçage pour ordinateur EFI ou UEFI tel que tous les Macs -contenant un processeur Intel et les PC récents (2011 et après). rEFInd affiche -un menu d'amorçage montrant tous les gestionnaires d'amorçage sur les -partitions EFI accessibles et optionnellement les partitions démarrable en BIOS -sur Macs et les entrées BIOS sur les PC UEFI avec CSM. Les systèmes -d'exploitation compatibles EFI, incluant Linux, fournissent des gestionnaires -d'amorçage que rEFInd détect et démarre. rEFInd peut démarrer les gestionnaires -d'amorçage EFI Linux tel que ELILO, GRUB Legacy, GRUB 2 ainsi que les noyaux -3.3.0 et suivants avec le support EFI stub. Les pilotes EFI pour les sytèmes de -fichiers ext2/3/4fs, ReiserFS, Btrfs, NTFS, HFS+ et ISO-9660 permettent à -rEFInd de lire les gestionnaires d'amorçage également depuis ces systèmes de -fichiers. La capacité de rEFInd à détecter les gestionnaires d'amorçage au -moment de l'exécution le rend très facile à utiliser, en particulier associé à -des noyau Linux qui fournissent un support EFI stub. - - - Builds the EFI binary ext2 filesystem driver - Builds the EFI binary ext4 filesystem driver - Builds the EFI binary reiserfs filesystem driver - Builds the EFI binary iso9660 filesystem driver - Builds the EFI binary hfs filesystem driver - Builds the EFI binary btrfs filesystem driver - Builds the EFI binary ntfs filesystem driver - Compile using GNU-EFI instead of Tianocore - Install document files - Construire le gestionnaire EFI pour le système de fichier ext2 Construire le gestionnaire EFI pour le système de fichier ext4 @@ -63,7 +52,16 @@ des noyau Linux qui fournissent un support EFI stub. Construire le gestionnaire EFI pour le système de fichier btrfs Construire le gestionnaire EFI pour le système de fichier ntfs Compiler en utilisant GNU-EFI au lieu de Tianocore - Installer les fichiers de documentation + + + Builds the EFI binary ext2 filesystem driver + Builds the EFI binary ext4 filesystem driver + Builds the EFI binary reiserfs filesystem driver + Builds the EFI binary iso9660 filesystem driver + Builds the EFI binary hfs filesystem driver + Builds the EFI binary btrfs filesystem driver + Builds the EFI binary ntfs filesystem driver + Compile using GNU-EFI instead of Tianocore refind diff --git a/sys-boot/refind/refind-0.10.2-r2.ebuild b/sys-boot/refind/refind-0.10.2-r2.ebuild new file mode 100644 index 000000000000..8f0fe224aa88 --- /dev/null +++ b/sys-boot/refind/refind-0.10.2-r2.ebuild @@ -0,0 +1,166 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs flag-o-matic + +DESCRIPTION="The rEFInd UEFI Boot Manager by Rod Smith" +HOMEPAGE="http://www.rodsbooks.com/refind/" + +SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${PN}-src-${PV}.tar.gz" + +LICENSE="BSD GPL-2 GPL-3 FDL-1.3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +FS_USE="btrfs +ext2 +ext4 hfs +iso9660 ntfs reiserfs" +IUSE="${FS_USE} -gnuefi doc -custom-cflags" + +DEPEND="gnuefi? ( >=sys-boot/gnu-efi-3.0.2 ) + !gnuefi? ( >=sys-boot/udk-2015 )" + +DOCS="NEWS.txt README.txt docs/refind docs/Styles" + +pkg_setup() { + if use x86 ; then + export EFIARCH=ia32 + export BUILDARCH=ia32 + elif use amd64; then + export EFIARCH=x64 + export BUILDARCH=x86_64 + else + # Try to support anyway + export BUILDARCH=$( uname -m | sed s,i[3456789]86,ia32, ) + if [[ ${BUILDARCH} == "x86_64" ]] ; then + export EFIARCH=x64 + else + export EFIARCH=${ARCH} + fi + fi +} + +src_prepare() { + default + local f + for f in "${S}"/*/Make.tiano "${S}"/Make.common; do + sed -i -e 's/^\(include .*target.txt.*\)$/#\1/' \ + -e 's@^\(TIANO_INCLUDE_DIRS\s*=\s*-I\s*\).*$@\1/usr/include/udk \\@' \ + -e '/^\s*-I \$(EDK2BASE).*$/d' \ + "${f}" || die "Failed to patch Tianocore make file in" \ + $(basename $(dirname ${f})) + done + for f in "${S}"/*/Make.tiano; do + sed -i -e 's@^\(EFILIB\s*=\s*\).*$@\1/usr/lib@' \ + -e 's@\$(EFILIB).*/\([^/]*\).lib@-l\1@' \ + -e 's/\(--start-group\s*\$(ALL_EFILIBS)\)/-L \$(EFILIB) \1/' \ + "${f}" || die "Failed to patch Tianocore make file in" \ + $(basename $(dirname ${f})) + done + sed -i -e '/Guids/i#include "AutoGen.h"\n' "${S}/filesystems/AutoGen.c" \ + || die "Failed to patch AutoGen.c" + for f in "${S}"/*/AutoGen.c; do + cat >>"${f}" <<-EOF || die "Failed to patch AutoGen.c" + + #define _PCD_TOKEN_PcdFixedDebugPrintErrorLevel 11U + #define _PCD_SIZE_PcdFixedDebugPrintErrorLevel 4 + #define _PCD_GET_MODE_SIZE_PcdFixedDebugPrintErrorLevel _PCD_SIZE_PcdFixedDebugPrintErrorLevel + #define _PCD_VALUE_PcdFixedDebugPrintErrorLevel 0xFFFFFFFFU + GLOBAL_REMOVE_IF_UNREFERENCED const UINT32 _gPcd_FixedAtBuild_PcdFixedDebugPrintErrorLevel = _PCD_VALUE_PcdFixedDebugPrintErrorLevel; + extern const UINT32 _gPcd_FixedAtBuild_PcdFixedDebugPrintErrorLevel; + #define _PCD_GET_MODE_32_PcdFixedDebugPrintErrorLevel _gPcd_FixedAtBuild_PcdFixedDebugPrintErrorLevel + //#define _PCD_SET_MODE_32_PcdFixedDebugPrintErrorLevel ASSERT(FALSE) // It is not allowed to set value for a FIXED_AT_BUILD PCD + EOF + done +} + +src_compile() { + # Prepare flags + local pecoff_header_size + [[ $EFIARCH == x64 ]] && pecoff_header_size='0x228' \ + || pecoff_header_size='0x220' + local make_flags=( + ARCH="${BUILDARCH}" + GENFW="/usr/bin/GenFw" + CC="$(tc-getCC)" + AS="$(tc-getAS)" + LD="$(tc-getLD)" + AR="$(tc-getAR)" + RANLIB="$(tc-getRANLIB)" + OBJCOPY="$(tc-getOBJCOPY)" + GNUEFI_LDFLAGS="-T \$(GNUEFI_LDSCRIPT) -shared -nostdlib -Bsymbolic \ + -L\$(EFILIB) -L\$(GNUEFILIB) \$(CRTOBJS) -znocombreloc -zdefs" + TIANO_LDSCRIPT="/usr/lib/GccBase.lds" + TIANO_LDFLAGS="-n -q --gc-sections -nostdlib \ + --script=\$(TIANO_LDSCRIPT) \ + --defsym=PECOFF_HEADER_SIZE=${pecoff_header_size} \ + --entry \$(ENTRYPOINT) -u \$(ENTRYPOINT) -m \$(LD_CODE)" + ) + use custom-cflags && make_flags[CFLAGS]="${CFLAGS}" + + # Make main EFI + local all_target + use gnuefi && all_target="gnuefi" || all_target="tiano" + emake "${make_flags[@]}" ${all_target} + + # Make filesystem drivers + local gnuefi_target + use gnuefi && gnuefi_target="_gnuefi" + local fs + for fs in ${FS_USE}; do + fs=${fs#+} + if use "${fs}"; then + einfo "Building ${fs} filesystem driver" + emake "${make_flags[@]}" -C "${S}/filesystems" ${fs}${gnuefi_target} + fi + done +} + +src_install() { + exeinto "/usr/share/${P}" + doexe refind-install + dosym "/usr/share/${P}/refind-install" "/usr/sbin/refind-install" + + dodoc "${S}"/{COPYING.txt,LICENSE.txt,CREDITS.txt} + if use doc; then + doman "${S}/docs/man/"* + dodoc -r ${DOCS} + fi + + insinto "/usr/share/${P}/refind" + doins "${S}/refind/refind_${EFIARCH}.efi" + doins "${S}/refind.conf-sample" + doins -r images icons fonts banners + + if [[ -d "${S}/drivers_${EFIARCH}" ]]; then + doins -r "${S}/drivers_${EFIARCH}" + fi + + insinto "/usr/share/${P}/refind/tools_${EFIARCH}" + doins "${S}/gptsync/gptsync_${EFIARCH}.efi" + + insinto "/etc/refind.d" + doins -r "${S}/keys" + + dosbin "${S}/mkrlconf" + dosbin "${S}/mvrefind" +} + +pkg_postinst() { + elog "rEFInd has been built and installed into ${EROOT%/}/usr/share/${P}" + elog "You will need to use the command 'refind-install' to install" + elog "the binaries into your EFI System Partition" + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "" + elog "refind-install requires additional packages to be fully functional:" + elog " app-crypt/sbsigntool for binary signing for use with SecureBoot" + elog " sys-boot/efibootmgr for writing to NVRAM" + elog " sys-block/parted for automatic ESP location and mount" + elog "" + elog "A sample configuration can be found at" + elog "${EROOT%/}/usr/share/${P}/refind/refind.conf-sample" + else + ewarn "Note that this will not update any EFI binaries on your EFI" + ewarn "System Partition - this needs to be done manually." + fi +} diff --git a/sys-boot/refind/refind-0.10.3-r1.ebuild b/sys-boot/refind/refind-0.10.3-r1.ebuild new file mode 100644 index 000000000000..a5556a3b2abb --- /dev/null +++ b/sys-boot/refind/refind-0.10.3-r1.ebuild @@ -0,0 +1,174 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs flag-o-matic versionator + +DESCRIPTION="The rEFInd UEFI Boot Manager by Rod Smith" +HOMEPAGE="http://www.rodsbooks.com/refind/" + +SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${PN}-src-${PV}.tar.gz" + +LICENSE="BSD GPL-2 GPL-3 FDL-1.3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +FS_USE="btrfs +ext2 +ext4 hfs +iso9660 ntfs reiserfs" +IUSE="${FS_USE} -gnuefi doc -custom-cflags" + +DEPEND="gnuefi? ( >=sys-boot/gnu-efi-3.0.2 ) + !gnuefi? ( >=sys-boot/udk-2015 )" + +DOCS="NEWS.txt README.txt docs/refind docs/Styles" + +pkg_setup() { + if use x86 ; then + export EFIARCH=ia32 + export BUILDARCH=ia32 + elif use amd64; then + export EFIARCH=x64 + export BUILDARCH=x86_64 + else + # Try to support anyway + export BUILDARCH=$( uname -m | sed s,i[3456789]86,ia32, ) + if [[ ${BUILDARCH} == "x86_64" ]] ; then + export EFIARCH=x64 + else + export EFIARCH=${ARCH} + fi + fi +} + +src_prepare() { + default + local f + for f in "${S}"/*/Make.tiano "${S}"/Make.common; do + sed -i -e 's/^\(include .*target.txt.*\)$/#\1/' \ + -e 's@^\(TIANO_INCLUDE_DIRS\s*=\s*-I\s*\).*$@\1/usr/include/udk \\@' \ + -e '/^\s*-I \$(EDK2BASE).*$/d' \ + "${f}" || die "Failed to patch Tianocore make file in" \ + $(basename $(dirname ${f})) + done + for f in "${S}"/*/Make.tiano; do + sed -i -e 's@^\(EFILIB\s*=\s*\).*$@\1/usr/lib@' \ + -e 's@\$(EFILIB).*/\([^/]*\).lib@-l\1@' \ + -e 's/\(--start-group\s*\$(ALL_EFILIBS)\)/-L \$(EFILIB) \1/' \ + "${f}" || die "Failed to patch Tianocore make file in" \ + $(basename $(dirname ${f})) + done + sed -i -e '/Guids/i#include "AutoGen.h"\n' "${S}/filesystems/AutoGen.c" \ + || die "Failed to patch AutoGen.c" + for f in "${S}"/*/AutoGen.c; do + cat >>"${f}" <<-EOF || die "Failed to patch AutoGen.c" + + #define _PCD_TOKEN_PcdFixedDebugPrintErrorLevel 11U + #define _PCD_SIZE_PcdFixedDebugPrintErrorLevel 4 + #define _PCD_GET_MODE_SIZE_PcdFixedDebugPrintErrorLevel _PCD_SIZE_PcdFixedDebugPrintErrorLevel + #define _PCD_VALUE_PcdFixedDebugPrintErrorLevel 0xFFFFFFFFU + GLOBAL_REMOVE_IF_UNREFERENCED const UINT32 _gPcd_FixedAtBuild_PcdFixedDebugPrintErrorLevel = _PCD_VALUE_PcdFixedDebugPrintErrorLevel; + extern const UINT32 _gPcd_FixedAtBuild_PcdFixedDebugPrintErrorLevel; + #define _PCD_GET_MODE_32_PcdFixedDebugPrintErrorLevel _gPcd_FixedAtBuild_PcdFixedDebugPrintErrorLevel + //#define _PCD_SET_MODE_32_PcdFixedDebugPrintErrorLevel ASSERT(FALSE) // It is not allowed to set value for a FIXED_AT_BUILD PCD + EOF + done +} + +src_compile() { + # Prepare flags + local pecoff_header_size + [[ $EFIARCH == x64 ]] && pecoff_header_size='0x228' \ + || pecoff_header_size='0x220' + local make_flags=( + ARCH="${BUILDARCH}" + GENFW="/usr/bin/GenFw" + CC="$(tc-getCC)" + AS="$(tc-getAS)" + LD="$(tc-getLD)" + AR="$(tc-getAR)" + RANLIB="$(tc-getRANLIB)" + OBJCOPY="$(tc-getOBJCOPY)" + GNUEFI_LDFLAGS="-T \$(GNUEFI_LDSCRIPT) -shared -nostdlib -Bsymbolic \ + -L\$(EFILIB) -L\$(GNUEFILIB) \$(CRTOBJS) -znocombreloc -zdefs" + TIANO_LDSCRIPT="/usr/lib/GccBase.lds" + TIANO_LDFLAGS="-n -q --gc-sections -nostdlib \ + --script=\$(TIANO_LDSCRIPT) \ + --defsym=PECOFF_HEADER_SIZE=${pecoff_header_size} \ + --entry \$(ENTRYPOINT) -u \$(ENTRYPOINT) -m \$(LD_CODE)" + ) + use custom-cflags && make_flags[CFLAGS]="${CFLAGS}" + + # Make main EFI + local all_target + use gnuefi && all_target="gnuefi" || all_target="tiano" + emake "${make_flags[@]}" ${all_target} + + # Make filesystem drivers + local gnuefi_target + use gnuefi && gnuefi_target="_gnuefi" + local fs + for fs in ${FS_USE}; do + fs=${fs#+} + if use "${fs}"; then + einfo "Building ${fs} filesystem driver" + emake "${make_flags[@]}" -C "${S}/filesystems" ${fs}${gnuefi_target} + fi + done +} + +src_install() { + exeinto "/usr/share/${P}" + doexe refind-install + dosym "/usr/share/${P}/refind-install" "/usr/sbin/refind-install" + + dodoc "${S}"/{COPYING.txt,LICENSE.txt,CREDITS.txt} + if use doc; then + doman "${S}/docs/man/"* + dodoc -r ${DOCS} + fi + + insinto "/usr/share/${P}/refind" + doins "${S}/refind/refind_${EFIARCH}.efi" + doins "${S}/refind.conf-sample" + doins -r images icons fonts banners + + if [[ -d "${S}/drivers_${EFIARCH}" ]]; then + doins -r "${S}/drivers_${EFIARCH}" + fi + + insinto "/usr/share/${P}/refind/tools_${EFIARCH}" + doins "${S}/gptsync/gptsync_${EFIARCH}.efi" + + insinto "/etc/refind.d" + doins -r "${S}/keys" + + dosbin "${S}/mkrlconf" + dosbin "${S}/mvrefind" + dosbin "${S}/refind-mkdefault" +} + +pkg_postinst() { + elog "rEFInd has been built and installed into ${EROOT%/}/usr/share/${P}" + elog "You will need to use the command 'refind-install' to install" + elog "the binaries into your EFI System Partition" + elog "" + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "refind-install requires additional packages to be fully functional:" + elog " app-crypt/sbsigntool for binary signing for use with SecureBoot" + elog " sys-boot/efibootmgr for writing to NVRAM" + elog " sys-block/parted for automatic ESP location and mount" + elog "" + elog "refind-mkdefault requires >=dev-lang/python-3" + elog "" + elog "A sample configuration can be found at" + elog "${EROOT%/}/usr/share/${P}/refind/refind.conf-sample" + else + if ! version_is_at_least "0.10.3" "${REPLACING_VERSIONS}"; then + elog "The new refind-mkdefault script requires >=dev-lang/python-3" + elog "to be installed" + elog "" + fi + ewarn "Note that this installation will not update any EFI binaries" + ewarn "on your EFI System Partition - this needs to be done manually" + fi +} diff --git a/sys-boot/refind/refind-0.10.4-r1.ebuild b/sys-boot/refind/refind-0.10.4-r1.ebuild new file mode 100644 index 000000000000..2bc85ce09261 --- /dev/null +++ b/sys-boot/refind/refind-0.10.4-r1.ebuild @@ -0,0 +1,174 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit toolchain-funcs flag-o-matic versionator + +DESCRIPTION="The rEFInd UEFI Boot Manager by Rod Smith" +HOMEPAGE="http://www.rodsbooks.com/refind/" + +SRC_URI="mirror://sourceforge/project/${PN}/${PV}/${PN}-src-${PV}.tar.gz" + +LICENSE="BSD GPL-2 GPL-3 FDL-1.3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +FS_USE="btrfs +ext2 +ext4 hfs +iso9660 ntfs reiserfs" +IUSE="${FS_USE} -gnuefi doc -custom-cflags" + +DEPEND="gnuefi? ( >=sys-boot/gnu-efi-3.0.2 ) + !gnuefi? ( >=sys-boot/udk-2015 )" + +DOCS="NEWS.txt README.txt docs/refind docs/Styles" + +pkg_setup() { + if use x86 ; then + export EFIARCH=ia32 + export BUILDARCH=ia32 + elif use amd64; then + export EFIARCH=x64 + export BUILDARCH=x86_64 + else + # Try to support anyway + export BUILDARCH=$( uname -m | sed s,i[3456789]86,ia32, ) + if [[ ${BUILDARCH} == "x86_64" ]] ; then + export EFIARCH=x64 + else + export EFIARCH=${ARCH} + fi + fi +} + +src_prepare() { + default + local f + for f in "${S}"/*/Make.tiano "${S}"/Make.common; do + sed -i -e 's/^\(include .*target.txt.*\)$/#\1/' \ + -e 's@^\(TIANO_INCLUDE_DIRS\s*=\s*-I\s*\).*$@\1/usr/include/udk \\@' \ + -e '/^\s*-I \$(EDK2BASE).*$/d' \ + "${f}" || die "Failed to patch Tianocore make file in" \ + $(basename $(dirname ${f})) + done + for f in "${S}"/*/Make.tiano; do + sed -i -e 's@^\(EFILIB\s*=\s*\).*$@\1/usr/lib@' \ + -e 's@\$(EFILIB).*/\([^/]*\).lib@-l\1@' \ + -e 's/\(--start-group\s*\$(ALL_EFILIBS)\)/-L \$(EFILIB) \1/' \ + "${f}" || die "Failed to patch Tianocore make file in" \ + $(basename $(dirname ${f})) + done + sed -i -e '/Guids/i#include "AutoGen.h"\n' "${S}/filesystems/AutoGen.c" \ + || die "Failed to patch AutoGen.c" + for f in "${S}"/*/AutoGen.c; do + cat >>"${f}" <<-EOF || die "Failed to patch AutoGen.c" + + #define _PCD_TOKEN_PcdFixedDebugPrintErrorLevel 11U + #define _PCD_SIZE_PcdFixedDebugPrintErrorLevel 4 + #define _PCD_GET_MODE_SIZE_PcdFixedDebugPrintErrorLevel _PCD_SIZE_PcdFixedDebugPrintErrorLevel + #define _PCD_VALUE_PcdFixedDebugPrintErrorLevel 0xFFFFFFFFU + GLOBAL_REMOVE_IF_UNREFERENCED const UINT32 _gPcd_FixedAtBuild_PcdFixedDebugPrintErrorLevel = _PCD_VALUE_PcdFixedDebugPrintErrorLevel; + extern const UINT32 _gPcd_FixedAtBuild_PcdFixedDebugPrintErrorLevel; + #define _PCD_GET_MODE_32_PcdFixedDebugPrintErrorLevel _gPcd_FixedAtBuild_PcdFixedDebugPrintErrorLevel + //#define _PCD_SET_MODE_32_PcdFixedDebugPrintErrorLevel ASSERT(FALSE) // It is not allowed to set value for a FIXED_AT_BUILD PCD + EOF + done +} + +src_compile() { + # Prepare flags + local pecoff_header_size + [[ $EFIARCH == x64 ]] && pecoff_header_size='0x228' \ + || pecoff_header_size='0x220' + local make_flags=( + ARCH="${BUILDARCH}" + GENFW="/usr/bin/GenFw" + CC="$(tc-getCC)" + AS="$(tc-getAS)" + LD="$(tc-getLD)" + AR="$(tc-getAR)" + RANLIB="$(tc-getRANLIB)" + OBJCOPY="$(tc-getOBJCOPY)" + GNUEFI_LDFLAGS="-T \$(GNUEFI_LDSCRIPT) -shared -nostdlib -Bsymbolic \ + -L\$(EFILIB) -L\$(GNUEFILIB) \$(CRTOBJS) -znocombreloc -zdefs" + TIANO_LDSCRIPT="/usr/lib/GccBase.lds" + TIANO_LDFLAGS="-n -q --gc-sections -nostdlib \ + --script=\$(TIANO_LDSCRIPT) \ + --defsym=PECOFF_HEADER_SIZE=${pecoff_header_size} \ + --entry \$(ENTRYPOINT) -u \$(ENTRYPOINT) -m \$(LD_CODE)" + ) + use custom-cflags && make_flags[CFLAGS]="${CFLAGS}" + + # Make main EFI + local all_target + use gnuefi && all_target="gnuefi" || all_target="tiano" + emake "${make_flags[@]}" ${all_target} + + # Make filesystem drivers + local gnuefi_target + use gnuefi && gnuefi_target="_gnuefi" + local fs + for fs in ${FS_USE}; do + fs=${fs#+} + if use "${fs}"; then + einfo "Building ${fs} filesystem driver" + emake "${make_flags[@]}" -C "${S}/filesystems" ${fs}${gnuefi_target} + fi + done +} + +src_install() { + exeinto "/usr/share/${P}" + doexe refind-install + dosym "/usr/share/${P}/refind-install" "/usr/sbin/refind-install" + + dodoc "${S}"/{COPYING.txt,LICENSE.txt,CREDITS.txt} + if use doc; then + doman "${S}/docs/man/"* + dodoc -r ${DOCS} + fi + + insinto "/usr/share/${P}/refind" + doins "${S}/refind/refind_${EFIARCH}.efi" + doins "${S}/refind.conf-sample" + doins -r images icons fonts banners + + if [[ -d "${S}/drivers_${EFIARCH}" ]]; then + doins -r "${S}/drivers_${EFIARCH}" + fi + + insinto "/usr/share/${P}/refind/tools_${EFIARCH}" + doins "${S}/gptsync/gptsync_${EFIARCH}.efi" + + insinto "/etc/refind.d" + doins -r "${S}/keys" + + dosbin "${S}/mkrlconf" + dosbin "${S}/mvrefind" + dosbin "${S}/refind-mkdefault" +} + +pkg_postinst() { + elog "rEFInd has been built and installed into ${EROOT%/}/usr/share/${P}" + elog "You will need to use the command 'refind-install' to install" + elog "the binaries into your EFI System Partition" + elog "" + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "refind-install requires additional packages to be fully functional:" + elog " app-crypt/sbsigntool for binary signing for use with SecureBoot" + elog " sys-boot/efibootmgr for writing to NVRAM" + elog " sys-block/parted for automatic ESP location and mount" + elog "" + elog "refind-mkdefault requires >=dev-lang/python-3" + elog "" + elog "A sample configuration can be found at" + elog "${EROOT%}/usr/share/${P}/refind/refind.conf-sample" + else + if ! version_is_at_least "0.10.3" "${REPLACING_VERSIONS}"; then + elog "The new refind-mkdefault script requires >=dev-lang/python-3" + elog "to be installed" + elog "" + fi + ewarn "Note that this installation will not update any EFI binaries" + ewarn "on your EFI System Partition - this needs to be done manually" + fi +} diff --git a/sys-boot/tboot/Manifest b/sys-boot/tboot/Manifest index 2d382a524f70..a627cacda386 100644 --- a/sys-boot/tboot/Manifest +++ b/sys-boot/tboot/Manifest @@ -1 +1,2 @@ DIST tboot-1.9.4.tar.gz 2107175 SHA256 7167e5615def4ac0f25b2f9139b3d361a0a20d91386d80b1d865107b3f552f39 SHA512 93db95be54a1286dffe87cf6f5d1e31ac0c4a452b11a11789fec66255c847a9e14251579de0f6ba4c5c122423b45e83751a8287d37e27ea3acba608774d7ac0b WHIRLPOOL 2bf9220317dc5bbc927fb10d07a1d7f5cef2d5351fbf81e45f276b5f317785c1cfc1f1e4b78ac426bceb66641339d7179bff8fbbb867b67aa215544193a5baa1 +DIST tboot-1.9.4_p20161101.tar.gz 578097 SHA256 d6a399488fde1d0993a65bcb283cec218c7c8572972d2fdda8422fc2a1b5513f SHA512 6a38148d7be4faf8ec86f2f8e3c342321b7d8d4920a631b0e1b74bd27578039f4ae20faffae877ed8db5dd14500c059a3efd3eed24f22099820e87a67d3ecc17 WHIRLPOOL 316e3ac4965108a63ebf6075b50fb24b5c0a0c1527cb43309b95c64e60a0b6e5b3287e4b19faa8405ab10cf268b975cfd93d6348253a2d3fa07e78f38ef1eac8 diff --git a/sys-boot/tboot/tboot-1.9.4_p20161101.ebuild b/sys-boot/tboot/tboot-1.9.4_p20161101.ebuild new file mode 100644 index 000000000000..3a509f038b8f --- /dev/null +++ b/sys-boot/tboot/tboot-1.9.4_p20161101.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit flag-o-matic mount-boot + +DESCRIPTION="Performs a measured and verified boot using Intel Trusted Execution Technology" +HOMEPAGE="https://sourceforge.net/projects/tboot/" +SRC_URI="http://dev.gentoo.org/~perfinion/distfiles/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 -*" +IUSE="custom-cflags selinux" + +# requires patching the kernel src +RESTRICT="test" + +DEPEND="app-crypt/trousers +app-crypt/tpm-tools +dev-libs/openssl:0=[-bindist]" + +RDEPEND="${DEPEND} +sys-boot/grub:2 +selinux? ( sec-policy/selinux-tboot )" + +DOCS=(README COPYING CHANGELOG) + +src_prepare() { + sed -i 's/ -Werror//g' Config.mk || die + sed -i 's/^INSTALL_STRIP = -s$//' Config.mk || die # QA Errors + + default +} + +src_compile() { + use custom-cflags && export TBOOT_CFLAGS=${CFLAGS} || unset CCASFLAGS CFLAGS CPPFLAGS LDFLAGS + + if use amd64; then + MAKEARGS="TARGET_ARCH=x86_64" + else + MAKEARGS="TARGET_ARCH=i686" + fi + + default +} + +src_install() { + emake DISTDIR="${D}" install + + dodoc "${DOCS[@]}" + dodoc docs/*.txt lcptools/*.{txt,pdf} || die "docs failed" + + cd "${D}" + mkdir -p usr/lib/tboot/ || die + mv boot usr/lib/tboot/ || die +} + +pkg_postinst() { + mount-boot_mount_boot_partition + + cp ${ROOT%/}/usr/lib/tboot/boot/* ${ROOT%/}/boot/ + + mount-boot_pkg_postinst + + ewarn "Please remember to download the SINIT AC Module relevant" + ewarn "for your platform from:" + ewarn "http://software.intel.com/en-us/articles/intel-trusted-execution-technology/" +} diff --git a/sys-boot/udk/metadata.xml b/sys-boot/udk/metadata.xml index c07291aca463..f414fe522319 100644 --- a/sys-boot/udk/metadata.xml +++ b/sys-boot/udk/metadata.xml @@ -9,20 +9,12 @@ proxy-maint@gentoo.org Proxy Maintainers - - Tianocore UEFI Development Kit, a stable release of portions of the - EDK II project. - Kit de développement UEFI Tianocore, une version stable de portions du projet EDK II. - - Install EDK II documentation. - Install usage examples. - - - Installer la documentation EDK II. - Installer les exemples d'utilisation. - + + Tianocore UEFI Development Kit, a stable release of portions of the + EDK II project. + diff --git a/sys-cluster/cinder/cinder-9.0.0.ebuild b/sys-cluster/cinder/cinder-9.0.0.ebuild index 1bfce45272da..1aba2a6be01e 100644 --- a/sys-cluster/cinder/cinder-9.0.0.ebuild +++ b/sys-cluster/cinder/cinder-9.0.0.ebuild @@ -16,7 +16,7 @@ https://tarballs.openstack.org/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="+api +scheduler +volume infiniband iscsi lvm mysql +memcached postgres rdma sqlite +tcp test +tgt" REQUIRED_USE="|| ( mysql postgres sqlite ) iscsi? ( tgt ) infiniband? ( rdma )" diff --git a/sys-cluster/heat/heat-7.0.0-r1.ebuild b/sys-cluster/heat/heat-7.0.0-r1.ebuild index 37461d9a1c74..df4661027203 100644 --- a/sys-cluster/heat/heat-7.0.0-r1.ebuild +++ b/sys-cluster/heat/heat-7.0.0-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="+mysql +memcached postgres sqlite" REQUIRED_USE="|| ( mysql postgres sqlite )" @@ -28,7 +28,7 @@ RDEPEND=" >=dev-python/croniter-0.3.4[${PYTHON_USEDEP}] >=dev-python/cryptography-1.0.0[${PYTHON_USEDEP}] !~dev-python/cryptography-1.3.0[${PYTHON_USEDEP}] - >=dev-python/debtcollector-1.2.0 + >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}] >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}] >=dev-python/greenlet-0.3.2[${PYTHON_USEDEP}] >=dev-python/keystoneauth-2.10.0[${PYTHON_USEDEP}] diff --git a/sys-cluster/neutron/neutron-9.1.0.ebuild b/sys-cluster/neutron/neutron-9.1.0.ebuild index 7d893199c858..46223a97f70f 100644 --- a/sys-cluster/neutron/neutron-9.1.0.ebuild +++ b/sys-cluster/neutron/neutron-9.1.0.ebuild @@ -16,7 +16,7 @@ SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/newton/co LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="compute-only dhcp ipv6 l3 metadata openvswitch linuxbridge server sqlite mysql postgres" REQUIRED_USE="!compute-only? ( || ( mysql postgres sqlite ) ) compute-only? ( !mysql !postgres !sqlite !dhcp !l3 !metadata !server diff --git a/sys-cluster/nova/nova-14.0.1.ebuild b/sys-cluster/nova/nova-14.0.1.ebuild index b6d3a1fd8ca2..53fc2790cfd2 100644 --- a/sys-cluster/nova/nova-14.0.1.ebuild +++ b/sys-cluster/nova/nova-14.0.1.ebuild @@ -14,7 +14,7 @@ https://tarballs.openstack.org/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" +KEYWORDS="amd64 ~arm64 x86" IUSE="+compute compute-only iscsi +memcached mysql +novncproxy openvswitch postgres +rabbitmq sqlite" REQUIRED_USE=" !compute-only? ( || ( mysql postgres sqlite ) ) @@ -137,7 +137,7 @@ RDEPEND=" ) iscsi? ( sys-fs/lsscsi - >=sys-block/open-iscsi-2.0.873-r2 + >=sys-block/open-iscsi-2.0.873-r1 )" #PATCHES=( diff --git a/sys-cluster/nova/nova-2016.2.9999.ebuild b/sys-cluster/nova/nova-2016.2.9999.ebuild index 911dd686409b..27e0b1fcea84 100644 --- a/sys-cluster/nova/nova-2016.2.9999.ebuild +++ b/sys-cluster/nova/nova-2016.2.9999.ebuild @@ -138,7 +138,7 @@ RDEPEND=" ) iscsi? ( sys-fs/lsscsi - >=sys-block/open-iscsi-2.0.873-r2 + >=sys-block/open-iscsi-2.0.873-r1 )" #PATCHES=( diff --git a/sys-kernel/genkernel-next/Manifest b/sys-kernel/genkernel-next/Manifest index b7504e61b730..1a4d1cf25b07 100644 --- a/sys-kernel/genkernel-next/Manifest +++ b/sys-kernel/genkernel-next/Manifest @@ -1,2 +1,3 @@ DIST genkernel-next-63.tar.xz 2287136 SHA256 5a4f410ee3b7bb89d2d494190588c1ff572a027826502cbae312d548d07a126e SHA512 39dcfd0c4f5bd880cac2360f4792e7913ff20ed740a27358d14ba6653b4e4b4fc5a3b0983a62ebafec6882d0a5d0f7707b273ef60bfa153d9a26ea11f4f0f068 WHIRLPOOL 26d57d1d55aa9c49960d1d2b0d90341ff32078d40d5e77db804a24f24f3afbf8b3e476eb3e022752f5fbbf56371d30bd2e6dad160822496bc10c105b7072bba0 DIST genkernel-next-64.tar.gz 2400935 SHA256 db8d7761947a2c538893677795a96e22a8318da2c4335bad79b4bdcbc9f27e8b SHA512 2a01f080ef2cecedd5b0857a4b9cb0f2d7dfdcff5a988155691dea90f34ce6f1440b6767afc4a1febd170d8b883c4ea216c7a54d60f8abbe56ac7fa7448189fa WHIRLPOOL 8f70b6cbddb850d2fe745a1d43cfeb9aacbd128432a75e2450ac96f12e66cbaa6d7612e64752aaa8d291c3217935f143c549c1f9e28196eaf48e8c2a9cdde1ab +DIST genkernel-next-65.tar.gz 2402179 SHA256 f12f4291f75b9078d1d81cfa047efb3d60ea42dc5e956a20c701c6a9e0f271d3 SHA512 a65770f122617a5e15bd1eefee7b72fee1ad6468d3d51195b1798e48d507b27088b6fa2bb719f579847c73a639be066170b497c3d8d86d2738236a6981188bbc WHIRLPOOL 42a754b1d21dc651955d6533e66555824a2a431c5ddd1c19983a8993841fc7e73b1955e83e0cc2321a91b354f69aff2bb4e6785e56302c96f99cf2f2153c4d5d diff --git a/sys-kernel/genkernel-next/genkernel-next-65.ebuild b/sys-kernel/genkernel-next/genkernel-next-65.ebuild new file mode 100644 index 000000000000..091ddaeddbd1 --- /dev/null +++ b/sys-kernel/genkernel-next/genkernel-next-65.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +if [[ "${PV}" != "9999" ]]; then + SRC_URI="https://github.com/Sabayon/genkernel-next/archive/v${PV}.tar.gz -> ${P}.tar.gz" + RESTRICT="mirror" + KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86" +else + EGIT_REPO_URI="git://github.com/Sabayon/genkernel-next.git" + inherit git-2 + KEYWORDS="~amd64 ~ppc ~x86" + RESTRICT="" +fi +inherit bash-completion-r1 + +DESCRIPTION="Gentoo automatic kernel building scripts, reloaded" +HOMEPAGE="http://www.gentoo.org" + +LICENSE="GPL-2" +SLOT="0" + +IUSE="cryptsetup dmraid gpg iscsi mdadm plymouth selinux" +DOCS=( AUTHORS ) + +DEPEND="app-text/asciidoc + sys-fs/e2fsprogs + !sys-fs/eudev[-kmod,modutils] + selinux? ( sys-libs/libselinux )" +RDEPEND="${DEPEND} + !sys-kernel/genkernel + cryptsetup? ( sys-fs/cryptsetup ) + dmraid? ( >=sys-fs/dmraid-1.0.0_rc16 ) + gpg? ( app-crypt/gnupg ) + iscsi? ( sys-block/open-iscsi ) + mdadm? ( sys-fs/mdadm ) + plymouth? ( sys-boot/plymouth ) + app-portage/portage-utils + app-arch/cpio + >=app-misc/pax-utils-0.6 + !=dev-ruby/rack-1.0.0:* - >=dev-ruby/rake-0.8.1" - -# libev is bundled but with adapations that do not seem to be accepted -# upstream, so we must use the bundled version :-( -CDEPEND=" - >=dev-libs/libuv-1.8.0 - net-misc/curl[ssl] - www-servers/apache[apache2_modules_unixd(+)]" - -RDEPEND="${RDEPEND} ${CDEPEND}" -DEPEND="${DEPEND} ${CDEPEND}" - -APACHE2_MOD_CONF="30_mod_${PN}-5.0.0 30_mod_${PN}" -APACHE2_MOD_DEFINE="PASSENGER" - -need_apache2 - -pkg_setup() { - use debug && append-flags -DPASSENGER_DEBUG -} - -all_ruby_prepare() { - epatch "${FILESDIR}"/${PN}-5.0.20-gentoo.patch - - # Change these with sed instead of a patch so that we can easily use - # the toolchain-funcs methods. - sed -i -e "/^CC/ s/=.*$/= '$(tc-getCC)'/" \ - -e "/^CXX\s/ s/=.*$/= '$(tc-getCXX)'/" \ - -e 's/PlatformInfo.debugging_cflags//' build/basics.rb || die - - # Avoid fixed debugging CFLAGs. - sed -e '/debugging_cflags/areturn ""' -i src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb || die - - # Use sed here so that we can dynamically set the documentation directory. - sed -i -e "s:/usr/share/doc/passenger:/usr/share/doc/${P}:" \ - -e "s:/usr/lib/apache2/modules/mod_passenger.so:${APACHE_MODULESDIR}/mod_passenger.so:" \ - -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" \ - src/ruby_supportlib/phusion_passenger.rb || die - sed -i -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" src/cxx_supportlib/ResourceLocator.h || die - - # Don't install a tool that won't work in our setup. - sed -i -e '/passenger-install-apache2-module/d' src/ruby_supportlib/phusion_passenger/packaging.rb || die - rm -f bin/passenger-install-apache2-module || die "Unable to remove unneeded install script." - - # Make sure we use the system-provided version where possible - rm -rf src/cxx_supportlib/vendor-copy/libuv || die "Unable to remove vendored code." - - # Avoid building documentation to avoid a dependency on mizuho. - #sed -i -e 's/, :doc//' build/packaging.rb || die - touch doc/*.html || die - - # Fix hard-coded use of AR - sed -i -e "s/ar cru/"$(tc-getAR)" cru/" build/support/cplusplus.rb || die -} - -all_ruby_compile() { - V=1 EXTRA_LDFLAGS="${LDFLAGS}" \ - APXS2="${APXS}" \ - HTTPD="${APACHE_BIN}" \ - FS_LIBDIR='/usr/'$(get_libdir) \ - USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ - ruby -S rake apache2 || die "rake failed" -} - -each_ruby_compile() { - append-flags -fno-strict-aliasing - - V=1 EXTRA_LDFLAGS="${LDFLAGS}" \ - APXS2="${APXS}" \ - HTTPD="${APACHE_BIN}" \ - FS_LIBDIR='/usr/'$(get_libdir) \ - USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ - ${RUBY} -S rake native_support || die "rake failed" -} - -all_ruby_install() { - APACHE2_MOD_FILE="${S}/buildout/apache2/mod_${PN}.so" - apache-module_src_install - - # Patch in the correct libdir - sed -i -e 's:/usr/lib/:/usr/'$(get_libdir)'/:' "${D}${APACHE_MODULES_CONFDIR}/30_mod_${PN}.conf" || die - - dodoc CHANGELOG README.md -} - -each_ruby_install() { - DISTDIR="${D}" \ - RUBYLIBDIR="$(ruby_rbconfig_value vendordir)" \ - RUBYARCHDIR="$(ruby_rbconfig_value archdir)" \ - APXS2="${APXS}" \ - HTTPD="${APACHE_BIN}" \ - FS_LIBDIR='/usr/'$(get_libdir) \ - EXTRA_LDFLAGS="${LDFLAGS}" \ - USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ - ${RUBY} -S rake fakeroot || die "rake failed" -} diff --git a/www-apache/passenger/passenger-5.0.29.ebuild b/www-apache/passenger/passenger-5.0.29.ebuild deleted file mode 100644 index 8ca994df1d9f..000000000000 --- a/www-apache/passenger/passenger-5.0.29.ebuild +++ /dev/null @@ -1,118 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22 ruby23" - -inherit apache-module flag-o-matic multilib ruby-ng toolchain-funcs - -DESCRIPTION="Passenger makes deployment of Ruby on Rails applications a breeze" -HOMEPAGE="https://www.phusionpassenger.com/" -SRC_URI="http://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -ruby_add_bdepend "dev-ruby/rake" - -ruby_add_rdepend " - >=dev-ruby/rack-1.0.0:* - >=dev-ruby/rake-0.8.1" - -# libev is bundled but with adapations that do not seem to be accepted -# upstream, so we must use the bundled version :-( -CDEPEND=" - >=dev-libs/libuv-1.8.0 - net-misc/curl[ssl] - www-servers/apache[apache2_modules_unixd(+)]" - -RDEPEND="${RDEPEND} ${CDEPEND}" -DEPEND="${DEPEND} ${CDEPEND}" - -APACHE2_MOD_CONF="30_mod_${PN}-5.0.0 30_mod_${PN}" -APACHE2_MOD_DEFINE="PASSENGER" - -need_apache2 - -pkg_setup() { - use debug && append-flags -DPASSENGER_DEBUG -} - -all_ruby_prepare() { - epatch "${FILESDIR}"/${PN}-5.0.20-gentoo.patch - - # Change these with sed instead of a patch so that we can easily use - # the toolchain-funcs methods. - sed -i -e "/^CC/ s/=.*$/= '$(tc-getCC)'/" \ - -e "/^CXX\s/ s/=.*$/= '$(tc-getCXX)'/" \ - -e 's/PlatformInfo.debugging_cflags//' build/basics.rb || die - - # Avoid fixed debugging CFLAGs. - sed -e '/debugging_cflags/areturn ""' -i src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb || die - - # Use sed here so that we can dynamically set the documentation directory. - sed -i -e "s:/usr/share/doc/passenger:/usr/share/doc/${P}:" \ - -e "s:/usr/lib/apache2/modules/mod_passenger.so:${APACHE_MODULESDIR}/mod_passenger.so:" \ - -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" \ - src/ruby_supportlib/phusion_passenger.rb || die - sed -i -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" src/cxx_supportlib/ResourceLocator.h || die - - # Don't install a tool that won't work in our setup. - sed -i -e '/passenger-install-apache2-module/d' src/ruby_supportlib/phusion_passenger/packaging.rb || die - rm -f bin/passenger-install-apache2-module || die "Unable to remove unneeded install script." - - # Make sure we use the system-provided version where possible - rm -rf src/cxx_supportlib/vendor-copy/libuv || die "Unable to remove vendored code." - - # Avoid building documentation to avoid a dependency on mizuho. - #sed -i -e 's/, :doc//' build/packaging.rb || die - touch doc/*.html || die - - # Fix hard-coded use of AR - sed -i -e "s/ar cru/"$(tc-getAR)" cru/" build/support/cplusplus.rb || die -} - -all_ruby_compile() { - V=1 EXTRA_LDFLAGS="${LDFLAGS}" \ - APXS2="${APXS}" \ - HTTPD="${APACHE_BIN}" \ - FS_LIBDIR='/usr/'$(get_libdir) \ - USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ - ruby -S rake apache2 || die "rake failed" -} - -each_ruby_compile() { - append-flags -fno-strict-aliasing - - V=1 EXTRA_LDFLAGS="${LDFLAGS}" \ - APXS2="${APXS}" \ - HTTPD="${APACHE_BIN}" \ - FS_LIBDIR='/usr/'$(get_libdir) \ - USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ - ${RUBY} -S rake native_support || die "rake failed" -} - -all_ruby_install() { - APACHE2_MOD_FILE="${S}/buildout/apache2/mod_${PN}.so" - apache-module_src_install - - # Patch in the correct libdir - sed -i -e 's:/usr/lib/:/usr/'$(get_libdir)'/:' "${D}${APACHE_MODULES_CONFDIR}/30_mod_${PN}.conf" || die - - dodoc CHANGELOG README.md -} - -each_ruby_install() { - DISTDIR="${D}" \ - RUBYLIBDIR="$(ruby_rbconfig_value vendordir)" \ - RUBYARCHDIR="$(ruby_rbconfig_value archdir)" \ - APXS2="${APXS}" \ - HTTPD="${APACHE_BIN}" \ - FS_LIBDIR='/usr/'$(get_libdir) \ - EXTRA_LDFLAGS="${LDFLAGS}" \ - USE_VENDORED_LIBUV="no" LIBUV_LIBS="-luv" \ - ${RUBY} -S rake fakeroot || die "rake failed" -} diff --git a/www-apache/passenger/passenger-5.0.30.ebuild b/www-apache/passenger/passenger-5.0.30.ebuild index 8ca994df1d9f..7d019c96c26d 100644 --- a/www-apache/passenger/passenger-5.0.30.ebuild +++ b/www-apache/passenger/passenger-5.0.30.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 ~x86" IUSE="debug" ruby_add_bdepend "dev-ruby/rake" diff --git a/www-apps/blohg/blohg-0.13-r1.ebuild b/www-apps/blohg/blohg-0.13-r2.ebuild similarity index 93% rename from www-apps/blohg/blohg-0.13-r1.ebuild rename to www-apps/blohg/blohg-0.13-r2.ebuild index 40f58f708525..f4245e6dafd2 100644 --- a/www-apps/blohg/blohg-0.13-r1.ebuild +++ b/www-apps/blohg/blohg-0.13-r2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python2_7 ) @@ -42,7 +42,7 @@ RDEPEND=" dev-python/pyyaml dev-python/setuptools dev-python/pygments - git? ( =dev-python/pygit2-0.20* ) + git? ( >=dev-python/pygit2-0.21.3 ) mercurial? ( >=dev-vcs/mercurial-1.6 )" DEPEND="${RDEPEND} @@ -52,6 +52,8 @@ DEPEND="${RDEPEND} python_prepare_all() { if ! use git; then rm -rf blohg/vcs_backends/git || die 'rm failed' + else + local PATCHES=( "${FILESDIR}/use-recent-libgit2.patch" ) fi if ! use mercurial; then diff --git a/www-apps/blohg/blohg-9999.ebuild b/www-apps/blohg/blohg-9999.ebuild index b47db97ce08c..a535a650a895 100644 --- a/www-apps/blohg/blohg-9999.ebuild +++ b/www-apps/blohg/blohg-9999.ebuild @@ -42,7 +42,7 @@ RDEPEND=" dev-python/pyyaml dev-python/setuptools dev-python/pygments - git? ( =dev-python/pygit2-0.21* ) + git? ( >=dev-python/pygit2-0.21.3 ) mercurial? ( >=dev-vcs/mercurial-1.6 )" DEPEND="${RDEPEND} diff --git a/www-apps/blohg/files/use-recent-libgit2.patch b/www-apps/blohg/files/use-recent-libgit2.patch new file mode 100644 index 000000000000..decd01b78fb5 --- /dev/null +++ b/www-apps/blohg/files/use-recent-libgit2.patch @@ -0,0 +1,17 @@ +diff --git a/blohg/vcs_backends/git/filectx.py b/blohg/vcs_backends/git/filectx.py +index 84f7aa3..5e20762 100644 +--- a/blohg/vcs_backends/git/filectx.py ++++ b/blohg/vcs_backends/git/filectx.py +@@ -73,7 +73,11 @@ def _last_changeset(self): + GIT_SORT_TIME): + diff = self._repo.diff(head, commit) + for patch in diff: +- if patch.new_file_path == self._path: ++ try: ++ new_file_path = patch.delta.new_file.path ++ except AttributeError: ++ new_file_path = patch.new_file_path ++ if new_file_path == self._path: + return head + head = commit + diff --git a/www-apps/gitit/gitit-0.12.1.1-r2.ebuild b/www-apps/gitit/gitit-0.12.1.1-r2.ebuild new file mode 100644 index 000000000000..bb99bd06f8c4 --- /dev/null +++ b/www-apps/gitit/gitit-0.12.1.1-r2.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.4.7.9999 + +CABAL_FEATURES="bin lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Wiki using happstack, git or darcs, and pandoc" +HOMEPAGE="http://gitit.net" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+network-uri +plugins" + +RDEPEND=">=app-text/pandoc-1.12.4:=[profile?] =dev-haskell/aeson-0.7:=[profile?] + >=dev-haskell/base64-bytestring-0.1:=[profile?] =dev-haskell/blaze-html-0.4:=[profile?] =dev-haskell/configfile-1:=[profile?] =dev-haskell/feed-0.3.6:=[profile?] =dev-haskell/filestore-0.6:=[profile?] =dev-haskell/happstack-server-7.0:=[profile?] =dev-haskell/highlighting-kate-0.5.0.1:=[profile?] =dev-haskell/hoauth2-0.4.2:=[profile?] =dev-haskell/hslogger-1:=[profile?] =dev-haskell/hstringtemplate-0.6:=[profile?] =dev-haskell/http-4000.0:=[profile?] =dev-haskell/http-client-tls-0.2.2:=[profile?] =dev-haskell/http-conduit-2.1.4:=[profile?] =dev-haskell/json-0.4:=[profile?] =dev-haskell/old-locale-1:=[profile?] + dev-haskell/old-time:=[profile?] + >=dev-haskell/pandoc-types-1.12.3:=[profile?] =dev-haskell/recaptcha-0.1:=[profile?] + dev-haskell/safe:=[profile?] + >dev-haskell/sha-1:=[profile?] =dev-haskell/tagsoup-0.13:=[profile?] + dev-haskell/text:=[profile?] + >=dev-haskell/uri-0.1:=[profile?] =dev-haskell/url-2.1:=[profile?] =dev-haskell/utf8-string-0.3:=[profile?] =dev-haskell/uuid-1.3:=[profile?] =dev-haskell/xml-1.3.5:=[profile?] + >=dev-haskell/xss-sanitize-0.3:=[profile?] =dev-haskell/zlib-0.5:=[profile?] =dev-lang/ghc-7.4.1:= + network-uri? ( >=dev-haskell/network-2.6:=[profile?] + >=dev-haskell/network-uri-2.6:=[profile?] =dev-haskell/network-2:=[profile?] = 0.13 && < 0.14' 'tagsoup >= 0.13' \ + 'aeson >= 0.7 && < 0.12' 'aeson >= 0.7' +} + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag network-uri network-uri) \ + $(cabal_flag plugins plugins) +} diff --git a/x11-misc/xmobar/Manifest b/x11-misc/xmobar/Manifest index 2fb7d25a7059..671638377c5c 100644 --- a/x11-misc/xmobar/Manifest +++ b/x11-misc/xmobar/Manifest @@ -1,2 +1,3 @@ DIST xmobar-0.23.1.tar.gz 96169 SHA256 3b31558373bdb8561f06440da902dd0db8398e5c774fa027931785c263f5567a SHA512 0215c02d32d90efff4d041d48b663755ccfb1944281f8a2cabb3e88cc9fd77221da03dd709b9c96f5ca8d7204561fe33fdabf37a2d919a83374df71909cc5978 WHIRLPOOL 9357a6bb809c7fe65ac8fd2c52eba9807d41b358bac10417416fa8b9aa1bb17c8cd62495b102d56c8ff1cd8ed2550a33fad3bfce0b56510968308418b4a7e352 DIST xmobar-0.24.2.tar.gz 100179 SHA256 a8aa243ec8d86b88da2c072eeef4d09be00091254ad05eaf517756e20483cd64 SHA512 c271e50d615d509c2c15ffa716b45df3211cfa143b128126c55a78a056475c9fbb6d7abc60a6a058e20a12aced5f33b94cecc35c73a76505e33e62ea1f1561f8 WHIRLPOOL 515dfff222b604b7fcfcd510cdb085b1a02969aafe6376b16d0108a37e71fc5b90402673c31961047b5b2dc0e18a98826f49508b12dca8610d0f5bd31c0294c6 +DIST xmobar-0.24.3.tar.gz 100317 SHA256 d330079dd60e22004a4cfa271eb9e00a1bb36b8dafcbbf1b1a5980d401dcf510 SHA512 aa16d55b16cf108005ee8ec6c3d1b348b3e70a5182cbb97eed2aeb67bed83bee4b23acff6d29d5bda5a30ce35dc87463a6ade6e0814b588f53b173a1c3b5a5b3 WHIRLPOOL 7a1e445d38b67d7e4931956b0ddd1a0f107f54dab8ad5a45f941beab2ef7aeb4dbe57526ee2f652a1c18c83ea5626040a9cb861a9c72fac8b3c2044a51021018 diff --git a/x11-misc/xmobar/xmobar-0.24.3.ebuild b/x11-misc/xmobar/xmobar-0.24.3.ebuild new file mode 100644 index 000000000000..2440311da365 --- /dev/null +++ b/x11-misc/xmobar/xmobar-0.24.3.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +# ebuild generated by hackport 0.5.9999 +#hackport: flags: -all_extensions,+with_threaded,+with_utf8,with_iwlib:wifi,with_alsa:alsa,with_xft:xft,with_datezone:timezone,with_dbus:dbus,with_mpd:mpd,with_inotify:inotify,with_mpris:mpris,with_xpm:xpm + +CABAL_FEATURES="bin" +inherit haskell-cabal + +DESCRIPTION="A Minimalistic Text Based Status Bar" +HOMEPAGE="http://xmobar.org" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="alsa dbus inotify mpd mpris timezone wifi with_conduit with_uvmeter xft xpm" + +RDEPEND=">=dev-haskell/http-4000.2.4:= + >=dev-haskell/mtl-2.1:= =dev-haskell/parsec-3.1:= =dev-haskell/stm-2.3:= =dev-haskell/utf8-string-0.3:= =dev-haskell/x11-1.6.1:= + >=dev-lang/ghc-7.8.2:= + x11-libs/libXrandr + x11-libs/libXrender + alsa? ( >=dev-haskell/alsa-core-0.5:= dev-haskell/alsa-mixer-0.2.0.2:= ) + dbus? ( >=dev-haskell/dbus-0.10:= ) + inotify? ( >=dev-haskell/hinotify-0.3:= =dev-haskell/libmpd-0.9:= =dev-haskell/dbus-0.10:= ) + timezone? ( >=dev-haskell/timezone-olson-0.1:= =dev-haskell/timezone-series-0.1:= =dev-haskell/x11-xft-0.2:=